Thanks.. It's work well...
But, should I use a mouse to choose the option in a tableview combo box??
Couldn't I use up arrow and down arrow on my keyboard to choose those option in 
combo box???
I have already tried up and down arrow. But, it just move to other cell.



>Shouldn't be a problem. What you need is an array that takes the
list contents, then you give Edit the list and set TRUE or FALSE for
the edit property of the listbox >control. This is my little trial
example, "ls" is the array here, "tb" is my tableview in the program
which I used for the experiment. To make it easier, I put it into the
Click >event. In practice, I would rather use double click or so...

>PUBLIC SUB tb_Click()
>DIM ls AS NEW String[]

   >ls.Add("eins")
   >ls.Add("zwei")
   >ls.Add("drei")

   >tb.Edit(ls, TRUE)

>END


>This is just meant to say "now I would save if this was a real application" :-)

>PUBLIC SUB tb_Save(Row AS Integer, Column AS Integer, Value AS String)

   >Message.Info(Row & "::" & Column & "::" & Value)

>END


>Rolf



      
___________________________________________________________________________
Dapatkan alamat Email baru Anda!
Dapatkan nama yang selalu Anda inginkan sebelum diambil orang lain!
http://mail.promotions.yahoo.com/newdomains/id/
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to