Re: [dabo-users] Problem with custom sql-statement and getDataSet() with version0.9.3

2013-04-30 Thread Max Voß
pk = self.Form.getBizobj(rechnung).getPK() sql = SELECT rechnung_position.name, preis, anzahl FROM rechnung INNER JOIN rechnung_position ON rechnung.id=rechnung_id WHERE rechnung.id=%s ORDER BY position

Re: [dabo-users] Problem with custom sql-statement and getDataSet() with version0.9.3

2013-04-30 Thread Max Voß
Am Dienstag, den 30.04.2013, 17:51 +0200 schrieb Max Voß: Could there be a problem with my table-layout or its interpretation of dabo? Here the SQL-Snippet of the table: CREATE TABLE IF NOT EXISTS `rechnung_position` ( `id` int(11) NOT NULL AUTO_INCREMENT, `rechnung_id` int(11

Re: [dabo-users] Problem with custom sql-statement and getDataSet() with version0.9.3

2013-05-03 Thread Max Voß
Am Dienstag, den 30.04.2013, 21:10 -0700 schrieb Paul McNett: On 4/30/13 12:22 PM, Ed Leafe wrote: On Apr 30, 2013, at 1:50 PM, Max Voß max.v...@optik-stahr.de wrote: That is strange, it is in fact a problem with the conversion of my float-fields when I change the db-fields from float

[dabo-users] Problem with custom sql-statement and getDataSet() with version0.9.3

2013-05-03 Thread Max Voß
Hello, I am trying to update dabo from version 0.9.3 to a newer one, currently 0.9.9 but 0.9.5 doesn't work neither. The code that worked fine in version 0.9.3 and now creates the error is the following: tmpCursor = self.Form.PrimaryBizobj.getTempCursor() tmpCursor.execute(SELECT

Re: [dabo-users] Problem with custom sql-statement and getDataSet() with version0.9.3

2013-05-03 Thread Max Voß
Am Freitag, den 03.05.2013, 06:19 -0700 schrieb Paul McNett: This is indeed baffling. Either Please put in some sanity checks: 272print 1, self, field_val, field_val: %s %(_field_val) 273print 2, self, self._field_val.split(.), len(_field_val.split(.)[1]) 274if scale is None:

[dabo-users] Tab-Index of UI-Objects?

2017-01-18 Thread Max Voß
Hello, is it possible to set a kind of tab-index in a dabo-Form? I have got a dPage-Object with a lot of dTextBoxes, dDropDownLists and so on but they appear in a different order on the Page than I want to step through them with the tabulator-key. The "tab-index" seems to depend only on the

[dabo-users] Tab-Index of UI-Objects?

2017-01-11 Thread Max Voß
Hello, is it possible to set a kind of tab-index in a dabo-Form? I have got a dPage-Object with a lot of dTextBoxes, dDropDownLists and so on but they appear in a different order on the Page than I want to step through them with the tabulator-key. The "tab-index" seems to depend only on the

Re: [dabo-users] Tab-Index of UI-Objects?

2017-01-13 Thread Max Voß
gt; The above is used for the class->_addControls. > > Johnf > On 01/11/2017 08:26 AM, Max Voß wrote: > > Hello, > > > > is it possible to set a kind of tab-index in a dabo-Form? > > > > I have got a dPage-Object with a lot of dTextBoxes, dDropDownLi

Re: [dabo-users] Tab-Index of UI-Objects?

2017-01-13 Thread Max Voß
ialog.py around line 365: > for pos, btn in enumerate(buttons[1:]): > btn.MoveAfterInTabOrder(buttons[pos-1]) > > The above is used for the class->_addControls. > > Johnf > On 01/11/2017 08:26 AM, Max Voß wrote: > > Hello, > > > > is it possi