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.

Multicolumn Listbox

Xailer English public forum
Responder
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

Multicolumn Listbox

Mensaje por Gejza Horvath »

How to create, fill and manage the multicolumn listbox? I found the lMultiColumn properity
and SetColumnsWidth() method in the source file, but nothing else.
1. How to set the number of column?
2. How to fill the multicolumn aItems array?
Thanks for advise
Gejza Horvath
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Gejza,
> 1. How to set the number of column?
Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
> 2. How to fill the multicolumn aItems array?
As usual TListbox:aItems := {"one", "two", ....., "n"}
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
> How to create, fill and manage the multicolumn listbox? I found the
> lMultiColumn properity and SetColumnsWidth() method in the source file,
> but nothing else.
>
> 1. How to set the number of column?
> 2. How to fill the multicolumn aItems array?
>
> Thanks for advise
>
>
> Gejza Horvath
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

Multicolumn Listbox

Mensaje por Gejza Horvath »

Ignacio,
my code is:
WITH OBJECT ::oListbox2 := TListbox():New( Self )
:SetBounds( 220, 284, 162, 134 )
:cText := "One"
:aItems := { "One", "Two", "Three", "Four", "Five" }
:lMultiColumn := .T.
:Create()
END
..
..
METHOD SetListBox() CLASS TForm1
::oListbox2:SetColumnsWidth( ::oEdit1:Value)
::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
RETURN Nil
I have tested different values in oEdit1 from 1 to 50 combined with oCheckbox1:lChecked
state, I always see one column. When I fill the aItems like above, how does the Listbox
know, how many columns I want to display? Using a 2-dimensional array only the last
element is displayed.
Any advise?
Gejza
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Gejza,
>
>> 1. How to set the number of column?
>
> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>
>> 2. How to fill the multicolumn aItems array?
>
> As usual TListbox:aItems := {"one", "two", ....., "n"}
>
> Regards,
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>> How to create, fill and manage the multicolumn listbox? I found the lMultiColumn
>> properity and SetColumnsWidth() method in the source file, but nothing else.
>>
>> 1. How to set the number of column?
>> 2. How to fill the multicolumn aItems array?
>>
>> Thanks for advise
>>
>>
>> Gejza Horvath
>>
>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Gejza,
Download Xailer 1.5 (check on the About dialog that the month is JUNE) a new
property nColsWidth is present on the TListbox control and it works
perfectly at design time.
Regards,
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
> Ignacio,
> my code is:
>
> WITH OBJECT ::oListbox2 := TListbox():New( Self )
> :SetBounds( 220, 284, 162, 134 )
> :cText := "One"
> :aItems := { "One", "Two", "Three", "Four", "Five" }
> :lMultiColumn := .T.
> :Create()
> END
> .
> .
> METHOD SetListBox() CLASS TForm1
> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
> RETURN Nil
>
> I have tested different values in oEdit1 from 1 to 50 combined with
> oCheckbox1:lChecked state, I always see one column. When I fill the aItems
> like above, how does the Listbox know, how many columns I want to display?
> Using a 2-dimensional array only the last element is displayed.
>
>
> Any advise?
>
> Gejza
>
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
> news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Gejza,
>>
>>> 1. How to set the number of column?
>>
>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>
>>> 2. How to fill the multicolumn aItems array?
>>
>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>
>> Regards,
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>> How to create, fill and manage the multicolumn listbox? I found the
>>> lMultiColumn properity and SetColumnsWidth() method in the source file,
>>> but nothing else.
>>>
>>> 1. How to set the number of column?
>>> 2. How to fill the multicolumn aItems array?
>>>
>>> Thanks for advise
>>>
>>>
>>> Gejza Horvath
>>>
>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Gejza Horvath
Mensajes: 281
Registrado: Mar Ago 15, 2006 1:50 pm

Multicolumn Listbox

Mensaje por Gejza Horvath »

Where can I find it? On the web the last news are about version 1.4.
Gejza
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Gejza,
>
> Download Xailer 1.5 (check on the About dialog that the month is JUNE) a new property
> nColsWidth is present on the TListbox control and it works perfectly at design time.
>
> Regards,
>
> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>> Ignacio,
>> my code is:
>>
>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>> :SetBounds( 220, 284, 162, 134 )
>> :cText := "One"
>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>> :lMultiColumn := .T.
>> :Create()
>> END
>> .
>> .
>> METHOD SetListBox() CLASS TForm1
>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>> RETURN Nil
>>
>> I have tested different values in oEdit1 from 1 to 50 combined with oCheckbox1:lChecked
>> state, I always see one column. When I fill the aItems like above, how does the Listbox
>> know, how many columns I want to display? Using a 2-dimensional array only the last
>> element is displayed.
>>
>>
>> Any advise?
>>
>> Gejza
>>
>>
>>
>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
>> news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Gejza,
>>>
>>>> 1. How to set the number of column?
>>>
>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>
>>>> 2. How to fill the multicolumn aItems array?
>>>
>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>
>>> Regards,
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> http://www.xailer.com
>>>
>>>
>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>> How to create, fill and manage the multicolumn listbox? I found the lMultiColumn
>>>> properity and SetColumnsWidth() method in the source file, but nothing else.
>>>>
>>>> 1. How to set the number of column?
>>>> 2. How to fill the multicolumn aItems array?
>>>>
>>>> Thanks for advise
>>>>
>>>>
>>>> Gejza Horvath
>>>>
>>>
>>>
>>>
>>
>>
>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Gejza,
All the information is available on the private forums. Consult our welcome
message after you bought Xailer for instructions.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
> Where can I find it? On the web the last news are about version 1.4.
>
> Gejza
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
> news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Gejza,
>>
>> Download Xailer 1.5 (check on the About dialog that the month is JUNE) a
>> new property nColsWidth is present on the TListbox control and it works
>> perfectly at design time.
>>
>> Regards,
>>
>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>> Ignacio,
>>> my code is:
>>>
>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>> :SetBounds( 220, 284, 162, 134 )
>>> :cText := "One"
>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>> :lMultiColumn := .T.
>>> :Create()
>>> END
>>> .
>>> .
>>> METHOD SetListBox() CLASS TForm1
>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>> RETURN Nil
>>>
>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>> aItems like above, how does the Listbox know, how many columns I want to
>>> display? Using a 2-dimensional array only the last element is displayed.
>>>
>>>
>>> Any advise?
>>>
>>> Gejza
>>>
>>>
>>>
>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
>>> news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Gejza,
>>>>
>>>>> 1. How to set the number of column?
>>>>
>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>
>>>>> 2. How to fill the multicolumn aItems array?
>>>>
>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>
>>>> Regards,
>>>> --
>>>> Ignacio Ortiz de Zúñiga
>>>> http://www.xailer.com
>>>>
>>>>
>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>> How to create, fill and manage the multicolumn listbox? I found the
>>>>> lMultiColumn properity and SetColumnsWidth() method in the source
>>>>> file, but nothing else.
>>>>>
>>>>> 1. How to set the number of column?
>>>>> 2. How to fill the multicolumn aItems array?
>>>>>
>>>>> Thanks for advise
>>>>>
>>>>>
>>>>> Gejza Horvath
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

Multicolumn Listbox

Mensaje por Stephan Hennekens »

Ignacio,
I am confuced now. I thought I was logged into the private forum here, but
apparently there is another forum where there is news on 1.5 version. Is it
also not the automatic update procedure that should do the job?
Regards,
Stephan
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Gejza,
>
> All the information is available on the private forums. Consult our
> welcome message after you bought Xailer for instructions.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>> Where can I find it? On the web the last news are about version 1.4.
>>
>> Gejza
>>
>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
>> news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Gejza,
>>>
>>> Download Xailer 1.5 (check on the About dialog that the month is JUNE) a
>>> new property nColsWidth is present on the TListbox control and it works
>>> perfectly at design time.
>>>
>>> Regards,
>>>
>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>> Ignacio,
>>>> my code is:
>>>>
>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>> :SetBounds( 220, 284, 162, 134 )
>>>> :cText := "One"
>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>> :lMultiColumn := .T.
>>>> :Create()
>>>> END
>>>> .
>>>> .
>>>> METHOD SetListBox() CLASS TForm1
>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>> RETURN Nil
>>>>
>>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>>> aItems like above, how does the Listbox know, how many columns I want
>>>> to display? Using a 2-dimensional array only the last element is
>>>> displayed.
>>>>
>>>>
>>>> Any advise?
>>>>
>>>> Gejza
>>>>
>>>>
>>>>
>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>> Gejza,
>>>>>
>>>>>> 1. How to set the number of column?
>>>>>
>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>
>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>
>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>
>>>>> Regards,
>>>>> --
>>>>> Ignacio Ortiz de Zúñiga
>>>>> http://www.xailer.com
>>>>>
>>>>>
>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>> How to create, fill and manage the multicolumn listbox? I found the
>>>>>> lMultiColumn properity and SetColumnsWidth() method in the source
>>>>>> file, but nothing else.
>>>>>>
>>>>>> 1. How to set the number of column?
>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>
>>>>>> Thanks for advise
>>>>>>
>>>>>>
>>>>>> Gejza Horvath
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Stephan,
This is a public forum. Please reread our welcome message, the one that
includes your Xailer serial number. There, you have all the instructions to
get to private forums.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Ignacio,
>
> I am confuced now. I thought I was logged into the private forum here, but
> apparently there is another forum where there is news on 1.5 version. Is
> it also not the automatic update procedure that should do the job?
>
> Regards,
> Stephan
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Gejza,
>>
>> All the information is available on the private forums. Consult our
>> welcome message after you bought Xailer for instructions.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>> Where can I find it? On the web the last news are about version 1.4.
>>>
>>> Gejza
>>>
>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním pøíspìvku
>>> news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Gejza,
>>>>
>>>> Download Xailer 1.5 (check on the About dialog that the month is JUNE)
>>>> a new property nColsWidth is present on the TListbox control and it
>>>> works perfectly at design time.
>>>>
>>>> Regards,
>>>>
>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>> Ignacio,
>>>>> my code is:
>>>>>
>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>> :cText := "One"
>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>> :lMultiColumn := .T.
>>>>> :Create()
>>>>> END
>>>>> .
>>>>> .
>>>>> METHOD SetListBox() CLASS TForm1
>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>> RETURN Nil
>>>>>
>>>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>>>> aItems like above, how does the Listbox know, how many columns I want
>>>>> to display? Using a 2-dimensional array only the last element is
>>>>> displayed.
>>>>>
>>>>>
>>>>> Any advise?
>>>>>
>>>>> Gejza
>>>>>
>>>>>
>>>>>
>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>> Gejza,
>>>>>>
>>>>>>> 1. How to set the number of column?
>>>>>>
>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>
>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>
>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>
>>>>>> Regards,
>>>>>> --
>>>>>> Ignacio Ortiz de Zúñiga
>>>>>> http://www.xailer.com
>>>>>>
>>>>>>
>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>> How to create, fill and manage the multicolumn listbox? I found the
>>>>>>> lMultiColumn properity and SetColumnsWidth() method in the source
>>>>>>> file, but nothing else.
>>>>>>>
>>>>>>> 1. How to set the number of column?
>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>
>>>>>>> Thanks for advise
>>>>>>>
>>>>>>>
>>>>>>> Gejza Horvath
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

Multicolumn Listbox

Mensaje por Stephan Hennekens »

Well, I did do that, but the only up-to-date forum I found is this one
(local.xailer.english). Can you give me an address of the private forum
where there is news on updates?
Regards,
Stephan
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
news:467f7674$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Stephan,
>
> This is a public forum. Please reread our welcome message, the one that
> includes your Xailer serial number. There, you have all the instructions
> to get to private forums.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
> news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Ignacio,
>>
>> I am confuced now. I thought I was logged into the private forum here,
>> but apparently there is another forum where there is news on 1.5 version.
>> Is it also not the automatic update procedure that should do the job?
>>
>> Regards,
>> Stephan
>>
>>
>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Gejza,
>>>
>>> All the information is available on the private forums. Consult our
>>> welcome message after you bought Xailer for instructions.
>>>
>>> Regards,
>>>
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> http://www.xailer.com
>>>
>>>
>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>>> Where can I find it? On the web the last news are about version 1.4.
>>>>
>>>> Gejza
>>>>
>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>> pøíspìvku news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>> Gejza,
>>>>>
>>>>> Download Xailer 1.5 (check on the About dialog that the month is JUNE)
>>>>> a new property nColsWidth is present on the TListbox control and it
>>>>> works perfectly at design time.
>>>>>
>>>>> Regards,
>>>>>
>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>>> Ignacio,
>>>>>> my code is:
>>>>>>
>>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>>> :cText := "One"
>>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>>> :lMultiColumn := .T.
>>>>>> :Create()
>>>>>> END
>>>>>> .
>>>>>> .
>>>>>> METHOD SetListBox() CLASS TForm1
>>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>>> RETURN Nil
>>>>>>
>>>>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>>>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>>>>> aItems like above, how does the Listbox know, how many columns I want
>>>>>> to display? Using a 2-dimensional array only the last element is
>>>>>> displayed.
>>>>>>
>>>>>>
>>>>>> Any advise?
>>>>>>
>>>>>> Gejza
>>>>>>
>>>>>>
>>>>>>
>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>> Gejza,
>>>>>>>
>>>>>>>> 1. How to set the number of column?
>>>>>>>
>>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>>
>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>
>>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>>
>>>>>>> Regards,
>>>>>>> --
>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>> http://www.xailer.com
>>>>>>>
>>>>>>>
>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>>> How to create, fill and manage the multicolumn listbox? I found the
>>>>>>>> lMultiColumn properity and SetColumnsWidth() method in the source
>>>>>>>> file, but nothing else.
>>>>>>>>
>>>>>>>> 1. How to set the number of column?
>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>
>>>>>>>> Thanks for advise
>>>>>>>>
>>>>>>>>
>>>>>>>> Gejza Horvath
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Stepahn,
You must introduce your name and password to see the private newsgroups.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
news:467f805d$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Well, I did do that, but the only up-to-date forum I found is this one
> (local.xailer.english). Can you give me an address of the private forum
> where there is news on updates?
>
> Regards,
> Stephan
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
> news:467f7674$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Stephan,
>>
>> This is a public forum. Please reread our welcome message, the one that
>> includes your Xailer serial number. There, you have all the instructions
>> to get to private forums.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>> news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Ignacio,
>>>
>>> I am confuced now. I thought I was logged into the private forum here,
>>> but apparently there is another forum where there is news on 1.5
>>> version. Is it also not the automatic update procedure that should do
>>> the job?
>>>
>>> Regards,
>>> Stephan
>>>
>>>
>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Gejza,
>>>>
>>>> All the information is available on the private forums. Consult our
>>>> welcome message after you bought Xailer for instructions.
>>>>
>>>> Regards,
>>>>
>>>> --
>>>> Ignacio Ortiz de Zúñiga
>>>> http://www.xailer.com
>>>>
>>>>
>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>>>> Where can I find it? On the web the last news are about version 1.4.
>>>>>
>>>>> Gejza
>>>>>
>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>> pøíspìvku news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>> Gejza,
>>>>>>
>>>>>> Download Xailer 1.5 (check on the About dialog that the month is
>>>>>> JUNE) a new property nColsWidth is present on the TListbox control
>>>>>> and it works perfectly at design time.
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>>>> Ignacio,
>>>>>>> my code is:
>>>>>>>
>>>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>>>> :cText := "One"
>>>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>>>> :lMultiColumn := .T.
>>>>>>> :Create()
>>>>>>> END
>>>>>>> .
>>>>>>> .
>>>>>>> METHOD SetListBox() CLASS TForm1
>>>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>>>> RETURN Nil
>>>>>>>
>>>>>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>>>>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>>>>>> aItems like above, how does the Listbox know, how many columns I
>>>>>>> want to display? Using a 2-dimensional array only the last element
>>>>>>> is displayed.
>>>>>>>
>>>>>>>
>>>>>>> Any advise?
>>>>>>>
>>>>>>> Gejza
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>> Gejza,
>>>>>>>>
>>>>>>>>> 1. How to set the number of column?
>>>>>>>>
>>>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>>>
>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>
>>>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>>>
>>>>>>>> Regards,
>>>>>>>> --
>>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>>> http://www.xailer.com
>>>>>>>>
>>>>>>>>
>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>>>> How to create, fill and manage the multicolumn listbox? I found
>>>>>>>>> the lMultiColumn properity and SetColumnsWidth() method in the
>>>>>>>>> source file, but nothing else.
>>>>>>>>>
>>>>>>>>> 1. How to set the number of column?
>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>
>>>>>>>>> Thanks for advise
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Gejza Horvath
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

Multicolumn Listbox

Mensaje por Stephan Hennekens »

I did login with username and password according to the data I got from
Gema.
I will try to contact her/him to sort this issue out.
Regards,
Stephan
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
news:467f8c53$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Stepahn,
>
> You must introduce your name and password to see the private newsgroups.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
> news:467f805d$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Well, I did do that, but the only up-to-date forum I found is this one
>> (local.xailer.english). Can you give me an address of the private forum
>> where there is news on updates?
>>
>> Regards,
>> Stephan
>>
>>
>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>> news:467f7674$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Stephan,
>>>
>>> This is a public forum. Please reread our welcome message, the one that
>>> includes your Xailer serial number. There, you have all the instructions
>>> to get to private forums.
>>>
>>> Regards,
>>>
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> http://www.xailer.com
>>>
>>>
>>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>>> news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Ignacio,
>>>>
>>>> I am confuced now. I thought I was logged into the private forum here,
>>>> but apparently there is another forum where there is news on 1.5
>>>> version. Is it also not the automatic update procedure that should do
>>>> the job?
>>>>
>>>> Regards,
>>>> Stephan
>>>>
>>>>
>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>>> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>> Gejza,
>>>>>
>>>>> All the information is available on the private forums. Consult our
>>>>> welcome message after you bought Xailer for instructions.
>>>>>
>>>>> Regards,
>>>>>
>>>>> --
>>>>> Ignacio Ortiz de Zúñiga
>>>>> http://www.xailer.com
>>>>>
>>>>>
>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>>>>> Where can I find it? On the web the last news are about version 1.4.
>>>>>>
>>>>>> Gejza
>>>>>>
>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>> pøíspìvku news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>> Gejza,
>>>>>>>
>>>>>>> Download Xailer 1.5 (check on the About dialog that the month is
>>>>>>> JUNE) a new property nColsWidth is present on the TListbox control
>>>>>>> and it works perfectly at design time.
>>>>>>>
>>>>>>> Regards,
>>>>>>>
>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>>>>> Ignacio,
>>>>>>>> my code is:
>>>>>>>>
>>>>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>>>>> :cText := "One"
>>>>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>>>>> :lMultiColumn := .T.
>>>>>>>> :Create()
>>>>>>>> END
>>>>>>>> .
>>>>>>>> .
>>>>>>>> METHOD SetListBox() CLASS TForm1
>>>>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>>>>> RETURN Nil
>>>>>>>>
>>>>>>>> I have tested different values in oEdit1 from 1 to 50 combined with
>>>>>>>> oCheckbox1:lChecked state, I always see one column. When I fill the
>>>>>>>> aItems like above, how does the Listbox know, how many columns I
>>>>>>>> want to display? Using a 2-dimensional array only the last element
>>>>>>>> is displayed.
>>>>>>>>
>>>>>>>>
>>>>>>>> Any advise?
>>>>>>>>
>>>>>>>> Gejza
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>>> Gejza,
>>>>>>>>>
>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>
>>>>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>>>>
>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>
>>>>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>>>>
>>>>>>>>> Regards,
>>>>>>>>> --
>>>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>>>> http://www.xailer.com
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>>>>> How to create, fill and manage the multicolumn listbox? I found
>>>>>>>>>> the lMultiColumn properity and SetColumnsWidth() method in the
>>>>>>>>>> source file, but nothing else.
>>>>>>>>>>
>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>>
>>>>>>>>>> Thanks for advise
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Gejza Horvath
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

Multicolumn Listbox

Mensaje por ignacio »

Stephan,
Force a newsgroup reread.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
news:467f990c$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>I did login with username and password according to the data I got from
>Gema.
> I will try to contact her/him to sort this issue out.
>
> Regards,
> Stephan
>
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
> news:467f8c53$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Stepahn,
>>
>> You must introduce your name and password to see the private newsgroups.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>>
>>
>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>> news:467f805d$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Well, I did do that, but the only up-to-date forum I found is this one
>>> (local.xailer.english). Can you give me an address of the private forum
>>> where there is news on updates?
>>>
>>> Regards,
>>> Stephan
>>>
>>>
>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>> news:467f7674$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Stephan,
>>>>
>>>> This is a public forum. Please reread our welcome message, the one that
>>>> includes your Xailer serial number. There, you have all the
>>>> instructions to get to private forums.
>>>>
>>>> Regards,
>>>>
>>>> --
>>>> Ignacio Ortiz de Zúñiga
>>>> http://www.xailer.com
>>>>
>>>>
>>>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>>>> news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>> Ignacio,
>>>>>
>>>>> I am confuced now. I thought I was logged into the private forum here,
>>>>> but apparently there is another forum where there is news on 1.5
>>>>> version. Is it also not the automatic update procedure that should do
>>>>> the job?
>>>>>
>>>>> Regards,
>>>>> Stephan
>>>>>
>>>>>
>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>>>> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>> Gejza,
>>>>>>
>>>>>> All the information is available on the private forums. Consult our
>>>>>> welcome message after you bought Xailer for instructions.
>>>>>>
>>>>>> Regards,
>>>>>>
>>>>>> --
>>>>>> Ignacio Ortiz de Zúñiga
>>>>>> http://www.xailer.com
>>>>>>
>>>>>>
>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>>>>>> Where can I find it? On the web the last news are about version 1.4.
>>>>>>>
>>>>>>> Gejza
>>>>>>>
>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>> pøíspìvku news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>> Gejza,
>>>>>>>>
>>>>>>>> Download Xailer 1.5 (check on the About dialog that the month is
>>>>>>>> JUNE) a new property nColsWidth is present on the TListbox control
>>>>>>>> and it works perfectly at design time.
>>>>>>>>
>>>>>>>> Regards,
>>>>>>>>
>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>>>>>> Ignacio,
>>>>>>>>> my code is:
>>>>>>>>>
>>>>>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>>>>>> :cText := "One"
>>>>>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>>>>>> :lMultiColumn := .T.
>>>>>>>>> :Create()
>>>>>>>>> END
>>>>>>>>> .
>>>>>>>>> .
>>>>>>>>> METHOD SetListBox() CLASS TForm1
>>>>>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>>>>>> RETURN Nil
>>>>>>>>>
>>>>>>>>> I have tested different values in oEdit1 from 1 to 50 combined
>>>>>>>>> with oCheckbox1:lChecked state, I always see one column. When I
>>>>>>>>> fill the aItems like above, how does the Listbox know, how many
>>>>>>>>> columns I want to display? Using a 2-dimensional array only the
>>>>>>>>> last element is displayed.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Any advise?
>>>>>>>>>
>>>>>>>>> Gejza
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>>>> Gejza,
>>>>>>>>>>
>>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>>
>>>>>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>>>>>
>>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>>
>>>>>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>>>>>
>>>>>>>>>> Regards,
>>>>>>>>>> --
>>>>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>>>>> http://www.xailer.com
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>>>>>> How to create, fill and manage the multicolumn listbox? I found
>>>>>>>>>>> the lMultiColumn properity and SetColumnsWidth() method in the
>>>>>>>>>>> source file, but nothing else.
>>>>>>>>>>>
>>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>>>
>>>>>>>>>>> Thanks for advise
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Gejza Horvath
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Stephan Hennekens
Mensajes: 305
Registrado: Jue Nov 30, 2006 12:17 am

Multicolumn Listbox

Mensaje por Stephan Hennekens »

I found it. Thanks!
Regards,
Stephan
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
news:467f9ff6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Stephan,
>
> Force a newsgroup reread.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
>
>
> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
> news:467f990c$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>I did login with username and password according to the data I got from
>>Gema.
>> I will try to contact her/him to sort this issue out.
>>
>> Regards,
>> Stephan
>>
>>
>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>> news:467f8c53$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>> Stepahn,
>>>
>>> You must introduce your name and password to see the private newsgroups.
>>>
>>> Regards,
>>>
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> http://www.xailer.com
>>>
>>>
>>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>>> news:467f805d$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>> Well, I did do that, but the only up-to-date forum I found is this one
>>>> (local.xailer.english). Can you give me an address of the private forum
>>>> where there is news on updates?
>>>>
>>>> Regards,
>>>> Stephan
>>>>
>>>>
>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>>> news:467f7674$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>> Stephan,
>>>>>
>>>>> This is a public forum. Please reread our welcome message, the one
>>>>> that includes your Xailer serial number. There, you have all the
>>>>> instructions to get to private forums.
>>>>>
>>>>> Regards,
>>>>>
>>>>> --
>>>>> Ignacio Ortiz de Zúñiga
>>>>> http://www.xailer.com
>>>>>
>>>>>
>>>>> "Stephan Hennekens" <stephan.hennekens@wur.nl> escribió en el mensaje
>>>>> news:467d9eb6$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>> Ignacio,
>>>>>>
>>>>>> I am confuced now. I thought I was logged into the private forum
>>>>>> here, but apparently there is another forum where there is news on
>>>>>> 1.5 version. Is it also not the automatic update procedure that
>>>>>> should do the job?
>>>>>>
>>>>>> Regards,
>>>>>> Stephan
>>>>>>
>>>>>>
>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
>>>>>> news:467d601e$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>> Gejza,
>>>>>>>
>>>>>>> All the information is available on the private forums. Consult our
>>>>>>> welcome message after you bought Xailer for instructions.
>>>>>>>
>>>>>>> Regards,
>>>>>>>
>>>>>>> --
>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>> http://www.xailer.com
>>>>>>>
>>>>>>>
>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>> news:[email=467bfc04@ozsrv2.ozlan.local...]467bfc04@ozsrv2.ozlan.local...[/email]
>>>>>>>> Where can I find it? On the web the last news are about version
>>>>>>>> 1.4.
>>>>>>>>
>>>>>>>> Gejza
>>>>>>>>
>>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>>> pøíspìvku news:467bf978$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>>> Gejza,
>>>>>>>>>
>>>>>>>>> Download Xailer 1.5 (check on the About dialog that the month is
>>>>>>>>> JUNE) a new property nColsWidth is present on the TListbox control
>>>>>>>>> and it works perfectly at design time.
>>>>>>>>>
>>>>>>>>> Regards,
>>>>>>>>>
>>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>>> news:[email=467bf847@ozsrv2.ozlan.local...]467bf847@ozsrv2.ozlan.local...[/email]
>>>>>>>>>> Ignacio,
>>>>>>>>>> my code is:
>>>>>>>>>>
>>>>>>>>>> WITH OBJECT ::oListbox2 := TListbox():New( Self )
>>>>>>>>>> :SetBounds( 220, 284, 162, 134 )
>>>>>>>>>> :cText := "One"
>>>>>>>>>> :aItems := { "One", "Two", "Three", "Four", "Five" }
>>>>>>>>>> :lMultiColumn := .T.
>>>>>>>>>> :Create()
>>>>>>>>>> END
>>>>>>>>>> .
>>>>>>>>>> .
>>>>>>>>>> METHOD SetListBox() CLASS TForm1
>>>>>>>>>> ::oListbox2:SetColumnsWidth( ::oEdit1:Value)
>>>>>>>>>> ::oListbox2:lMultiColumn := ::oCheckBox1:lChecked
>>>>>>>>>> RETURN Nil
>>>>>>>>>>
>>>>>>>>>> I have tested different values in oEdit1 from 1 to 50 combined
>>>>>>>>>> with oCheckbox1:lChecked state, I always see one column. When I
>>>>>>>>>> fill the aItems like above, how does the Listbox know, how many
>>>>>>>>>> columns I want to display? Using a 2-dimensional array only the
>>>>>>>>>> last element is displayed.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Any advise?
>>>>>>>>>>
>>>>>>>>>> Gejza
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> pí¹e v diskusním
>>>>>>>>>> pøíspìvku news:467b88db$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>>>>>>>>>>> Gejza,
>>>>>>>>>>>
>>>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>>>
>>>>>>>>>>> Sorry is undocumented: TListbox:SetColumnsWidth( nWidth )
>>>>>>>>>>>
>>>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>>>
>>>>>>>>>>> As usual TListbox:aItems := {"one", "two", ....., "n"}
>>>>>>>>>>>
>>>>>>>>>>> Regards,
>>>>>>>>>>> --
>>>>>>>>>>> Ignacio Ortiz de Zúñiga
>>>>>>>>>>> http://www.xailer.com
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> "Gejza Horvath" <_hsoftkn@nextra.sk> escribió en el mensaje
>>>>>>>>>>> news:[email=467ac8f8@ozsrv2.ozlan.local...]467ac8f8@ozsrv2.ozlan.local...[/email]
>>>>>>>>>>>> How to create, fill and manage the multicolumn listbox? I found
>>>>>>>>>>>> the lMultiColumn properity and SetColumnsWidth() method in the
>>>>>>>>>>>> source file, but nothing else.
>>>>>>>>>>>>
>>>>>>>>>>>> 1. How to set the number of column?
>>>>>>>>>>>> 2. How to fill the multicolumn aItems array?
>>>>>>>>>>>>
>>>>>>>>>>>> Thanks for advise
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Gejza Horvath
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Responder