uvedese Contributor


Joined: 21 Jan 2006 Posts: 169 Location: Spain
|
Posted: Mon Feb 12, 2007 3:18 pm Post subject: |
|
|
Hi marculos:
There is no an automatic form in order that an COMBO BOX element present/display first line of a list. It is necessary to assign information in the COMBO and seek at first element (element #0)
Try this code:
| Code: |
DIALOG CREATE,Combo Test,-1,0,240,316
DIALOG ADD,COMBO,COMBO1,16,10,180,24,,,CLICK
DIALOG SHOW
list loadtext,combo1
"line 0
"line 1
"line 2
"line 3
"line 4
list seek,combo1,0
wait event
|
_________________
visit uVeDeSe site: http://www.uvedese.es |
|