Ultralite and c#
-
Hello I have been trying to learn c# and accessing ultralite I have found the link here 10 Steps to Creating a Windows Mobile Database Application Using .NET and UltraLite 10[^] Which has helped i got it working but what im trying to figure out is how to add a listbox that is controlled by the combobox. What would happen is I select say tom than the list box displays the address.I cant seem to get anywhere with it my previous coding experience is with html and vbscript. Any help would be appreciated or if you can point me in the right direction Thank You Aaron
-
Hello I have been trying to learn c# and accessing ultralite I have found the link here 10 Steps to Creating a Windows Mobile Database Application Using .NET and UltraLite 10[^] Which has helped i got it working but what im trying to figure out is how to add a listbox that is controlled by the combobox. What would happen is I select say tom than the list box displays the address.I cant seem to get anywhere with it my previous coding experience is with html and vbscript. Any help would be appreciated or if you can point me in the right direction Thank You Aaron
Not a database related question, more a C# question. What you need to do is
Handle
theTextChanged
orValueChanged
event of theComboBox
. In the event handler, populate theListBox
with the required data from your database etc.Steve Jowett ------------------------- Real Programmers don't need comments -- the code is obvious.