In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
TDBComboBox
-
- Mensajes: 339
- Registrado: Lun Jul 02, 2007 7:17 pm
TDBComboBox
Ignacio,
TDBComboBox with dropdown-style.
Typing a char into the control's editcontrol sets TDBComboBox:oDataField:lModified
to .T.
Selecting a item from the dropdownlist doesn't affect oDataField:lModified.
Isn't it so that the 'buffer' will be modified in both cases?
Why lModified isn't set to .T. in the second case?
Regards
Ingo
TDBComboBox with dropdown-style.
Typing a char into the control's editcontrol sets TDBComboBox:oDataField:lModified
to .T.
Selecting a item from the dropdownlist doesn't affect oDataField:lModified.
Isn't it so that the 'buffer' will be modified in both cases?
Why lModified isn't set to .T. in the second case?
Regards
Ingo
- ignacio
- Site Admin
- Mensajes: 9447
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
TDBComboBox
Ingo,
Here is working correctly. Please send a small sample.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> TDBComboBox with dropdown-style.
> Typing a char into the control's editcontrol sets
> TDBComboBox:oDataField:lModified
> to .T.
> Selecting a item from the dropdownlist doesn't affect
> oDataField:lModified.
>
> Isn't it so that the 'buffer' will be modified in both cases?
> Why lModified isn't set to .T. in the second case?
>
> Regards
>
> Ingo
>
Here is working correctly. Please send a small sample.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> TDBComboBox with dropdown-style.
> Typing a char into the control's editcontrol sets
> TDBComboBox:oDataField:lModified
> to .T.
> Selecting a item from the dropdownlist doesn't affect
> oDataField:lModified.
>
> Isn't it so that the 'buffer' will be modified in both cases?
> Why lModified isn't set to .T. in the second case?
>
> Regards
>
> Ingo
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
TDBComboBox
Ingo,
Here is working correctly. Please send a small sample.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> TDBComboBox with dropdown-style.
> Typing a char into the control's editcontrol sets
> TDBComboBox:oDataField:lModified
> to .T.
> Selecting a item from the dropdownlist doesn't affect
> oDataField:lModified.
>
> Isn't it so that the 'buffer' will be modified in both cases?
> Why lModified isn't set to .T. in the second case?
>
> Regards
>
> Ingo
>
Here is working correctly. Please send a small sample.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> TDBComboBox with dropdown-style.
> Typing a char into the control's editcontrol sets
> TDBComboBox:oDataField:lModified
> to .T.
> Selecting a item from the dropdownlist doesn't affect
> oDataField:lModified.
>
> Isn't it so that the 'buffer' will be modified in both cases?
> Why lModified isn't set to .T. in the second case?
>
> Regards
>
> Ingo
>
-
- Mensajes: 339
- Registrado: Lun Jul 02, 2007 7:17 pm
TDBComboBox
Ignacio,
on the second form please
1. select an other item from the list and leave the control with Tab-key
- the onExit-event is not triggered (is this correct?)
2. type a letter in the second control and leave the control with Tab - onExit-Event
is triggered and lModified-property of this linked DataField is .T. (this
is the correct behaviour)
3. change the value of the DateEdit by the calendar or direct - the lModified-property
of this DataField is .T. (this is correct too)
4. go back to the first control and leave it without any changing - and now
the lModified-property is .T.
I must correct my previous post, the same behaviour of the TDBComboBox is
shown if you change the value by typing into the combobox's editcontrol.
Regards and sorry for the molestation
Ingo
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>Ingo,
>
>Here is working correctly. Please send a small sample.
>
>Regards,
>
>--
>Ignacio Ortiz de Zúñiga
>http://www.xailer.com
>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>
>> Ignacio,
>>
>> TDBComboBox with dropdown-style.
>> Typing a char into the control's editcontrol sets
>> TDBComboBox:oDataField:lModified
>> to .T.
>> Selecting a item from the dropdownlist doesn't affect
>> oDataField:lModified.
>>
>> Isn't it so that the 'buffer' will be modified in both cases?
>> Why lModified isn't set to .T. in the second case?
>>
>> Regards
>>
>> Ingo
>>
>
>
--
Attached files TestEvent.zip (3.5 KB)Â
-
- Mensajes: 339
- Registrado: Lun Jul 02, 2007 7:17 pm
TDBComboBox
Ignacio,
on the second form please
1. select an other item from the list and leave the control with Tab-key
- the onExit-event is not triggered (is this correct?)
2. type a letter in the second control and leave the control with Tab - onExit-Event
is triggered and lModified-property of this linked DataField is .T. (this
is the correct behaviour)
3. change the value of the DateEdit by the calendar or direct - the lModified-property
of this DataField is .T. (this is correct too)
4. go back to the first control and leave it without any changing - and now
the lModified-property is .T.
I must correct my previous post, the same behaviour of the TDBComboBox is
shown if you change the value by typing into the combobox's editcontrol.
Regards and sorry for the molestation
Ingo
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>Ingo,
>
>Here is working correctly. Please send a small sample.
>
>Regards,
>
>--
>Ignacio Ortiz de Zúñiga
>http://www.xailer.com
>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>
>> Ignacio,
>>
>> TDBComboBox with dropdown-style.
>> Typing a char into the control's editcontrol sets
>> TDBComboBox:oDataField:lModified
>> to .T.
>> Selecting a item from the dropdownlist doesn't affect
>> oDataField:lModified.
>>
>> Isn't it so that the 'buffer' will be modified in both cases?
>> Why lModified isn't set to .T. in the second case?
>>
>> Regards
>>
>> Ingo
>>
>
>
--
Attached files TestEvent.zip (3.5 KB)Â
- ignacio
- Site Admin
- Mensajes: 9447
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
TDBComboBox
Ingo,
Indeed point 1 is a bug. We will try to fix it ASAP.
The rest of the points, even number 4 should be OK since you did modify the
value on point 1.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:453c885e$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> on the second form please
> 1. select an other item from the list and leave the control with Tab-key
> - the onExit-event is not triggered (is this correct?)
> 2. type a letter in the second control and leave the control with Tab -
> onExit-Event
> is triggered and lModified-property of this linked DataField is .T. (this
> is the correct behaviour)
> 3. change the value of the DateEdit by the calendar or direct - the
> lModified-property
> of this DataField is .T. (this is correct too)
> 4. go back to the first control and leave it without any changing - and
> now
> the lModified-property is .T.
>
> I must correct my previous post, the same behaviour of the TDBComboBox is
> shown if you change the value by typing into the combobox's editcontrol.
>
> Regards and sorry for the molestation
>
> Ingo
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>>Ingo,
>>
>>Here is working correctly. Please send a small sample.
>>
>>Regards,
>>
>>--
>>Ignacio Ortiz de Zúñiga
>>http://www.xailer.com
>>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>
>>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>>
>>> Ignacio,
>>>
>>> TDBComboBox with dropdown-style.
>>> Typing a char into the control's editcontrol sets
>>> TDBComboBox:oDataField:lModified
>>> to .T.
>>> Selecting a item from the dropdownlist doesn't affect
>>> oDataField:lModified.
>>>
>>> Isn't it so that the 'buffer' will be modified in both cases?
>>> Why lModified isn't set to .T. in the second case?
>>>
>>> Regards
>>>
>>> Ingo
>>>
>>
>>
>
Indeed point 1 is a bug. We will try to fix it ASAP.
The rest of the points, even number 4 should be OK since you did modify the
value on point 1.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:453c885e$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> on the second form please
> 1. select an other item from the list and leave the control with Tab-key
> - the onExit-event is not triggered (is this correct?)
> 2. type a letter in the second control and leave the control with Tab -
> onExit-Event
> is triggered and lModified-property of this linked DataField is .T. (this
> is the correct behaviour)
> 3. change the value of the DateEdit by the calendar or direct - the
> lModified-property
> of this DataField is .T. (this is correct too)
> 4. go back to the first control and leave it without any changing - and
> now
> the lModified-property is .T.
>
> I must correct my previous post, the same behaviour of the TDBComboBox is
> shown if you change the value by typing into the combobox's editcontrol.
>
> Regards and sorry for the molestation
>
> Ingo
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>>Ingo,
>>
>>Here is working correctly. Please send a small sample.
>>
>>Regards,
>>
>>--
>>Ignacio Ortiz de Zúñiga
>>http://www.xailer.com
>>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>
>>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>>
>>> Ignacio,
>>>
>>> TDBComboBox with dropdown-style.
>>> Typing a char into the control's editcontrol sets
>>> TDBComboBox:oDataField:lModified
>>> to .T.
>>> Selecting a item from the dropdownlist doesn't affect
>>> oDataField:lModified.
>>>
>>> Isn't it so that the 'buffer' will be modified in both cases?
>>> Why lModified isn't set to .T. in the second case?
>>>
>>> Regards
>>>
>>> Ingo
>>>
>>
>>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
TDBComboBox
Ingo,
Indeed point 1 is a bug. We will try to fix it ASAP.
The rest of the points, even number 4 should be OK since you did modify the
value on point 1.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:453c885e$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> on the second form please
> 1. select an other item from the list and leave the control with Tab-key
> - the onExit-event is not triggered (is this correct?)
> 2. type a letter in the second control and leave the control with Tab -
> onExit-Event
> is triggered and lModified-property of this linked DataField is .T. (this
> is the correct behaviour)
> 3. change the value of the DateEdit by the calendar or direct - the
> lModified-property
> of this DataField is .T. (this is correct too)
> 4. go back to the first control and leave it without any changing - and
> now
> the lModified-property is .T.
>
> I must correct my previous post, the same behaviour of the TDBComboBox is
> shown if you change the value by typing into the combobox's editcontrol.
>
> Regards and sorry for the molestation
>
> Ingo
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>>Ingo,
>>
>>Here is working correctly. Please send a small sample.
>>
>>Regards,
>>
>>--
>>Ignacio Ortiz de Zúñiga
>>http://www.xailer.com
>>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>
>>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>>
>>> Ignacio,
>>>
>>> TDBComboBox with dropdown-style.
>>> Typing a char into the control's editcontrol sets
>>> TDBComboBox:oDataField:lModified
>>> to .T.
>>> Selecting a item from the dropdownlist doesn't affect
>>> oDataField:lModified.
>>>
>>> Isn't it so that the 'buffer' will be modified in both cases?
>>> Why lModified isn't set to .T. in the second case?
>>>
>>> Regards
>>>
>>> Ingo
>>>
>>
>>
>
Indeed point 1 is a bug. We will try to fix it ASAP.
The rest of the points, even number 4 should be OK since you did modify the
value on point 1.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
news:453c885e$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Ignacio,
>
> on the second form please
> 1. select an other item from the list and leave the control with Tab-key
> - the onExit-event is not triggered (is this correct?)
> 2. type a letter in the second control and leave the control with Tab -
> onExit-Event
> is triggered and lModified-property of this linked DataField is .T. (this
> is the correct behaviour)
> 3. change the value of the DateEdit by the calendar or direct - the
> lModified-property
> of this DataField is .T. (this is correct too)
> 4. go back to the first control and leave it without any changing - and
> now
> the lModified-property is .T.
>
> I must correct my previous post, the same behaviour of the TDBComboBox is
> shown if you change the value by typing into the combobox's editcontrol.
>
> Regards and sorry for the molestation
>
> Ingo
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote:
>>Ingo,
>>
>>Here is working correctly. Please send a small sample.
>>
>>Regards,
>>
>>--
>>Ignacio Ortiz de Zúñiga
>>http://www.xailer.com
>>"Ingo Junge-Herrmann" <[email=XPRO-0031BA74-01@10.0.0.11]XPRO-0031BA74-01@10.0.0.11[/email]> escribió en el mensaje
>
>>news:4538ef83$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>>
>>> Ignacio,
>>>
>>> TDBComboBox with dropdown-style.
>>> Typing a char into the control's editcontrol sets
>>> TDBComboBox:oDataField:lModified
>>> to .T.
>>> Selecting a item from the dropdownlist doesn't affect
>>> oDataField:lModified.
>>>
>>> Isn't it so that the 'buffer' will be modified in both cases?
>>> Why lModified isn't set to .T. in the second case?
>>>
>>> Regards
>>>
>>> Ingo
>>>
>>
>>
>