Página 1 de 1

Multicolumn Listbox

Publicado: Jue Jun 21, 2007 8:51 pm
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

Multicolumn Listbox

Publicado: Vie Jun 22, 2007 10:31 am
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
>

Multicolumn Listbox

Publicado: Vie Jun 22, 2007 6:25 pm
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
>>
>
>
>

Multicolumn Listbox

Publicado: Vie Jun 22, 2007 6:31 pm
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
>>>
>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Vie Jun 22, 2007 6:41 pm
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
>>>>
>>>
>>>
>>>
>>
>>
>
>
>

Multicolumn Listbox

Publicado: Sab Jun 23, 2007 8:02 pm
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
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Dom Jun 24, 2007 12:29 am
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
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 10:01 am
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
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 10:44 am
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
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 11:35 am
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
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 12:29 pm
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
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 12:58 pm
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
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>

Multicolumn Listbox

Publicado: Lun Jun 25, 2007 1:19 pm
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
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>