Do you mean to say that a) You select a value from drop-down list box b) you now goto a new form c) Are you accessing this value in the new form or d) You're going back to the 1st form and seeing null value - If this is the case than you're probably reinitializing the listbox control in a form load event.
Manav
Looks like you're reinitializing the control or not storing the selected value. Please verify.
Manav
I am not saving any of the information on the page yet (the controls and the form stay in existence while the user is on the 2nd page), not until the user saves or cancels the actions of the 2nd page which brings the user back to the first page with the information stored from the 2nd page into a container on the first page. At this point one of the options a user has is to save all of the information and exit.
The problem is that if you select a value in a combobox, the value in the control stays highlighted unless you tap on another control and bring the focus to it. If you don't change the focus of the controls and move to the next page, the value in that combobox is lost. This problem didn't exist in vb.net 2003 and I haven't been able to progammatically change the focus without losing the chosen value in the combobox. I could save the value in a string, but since this wasn't necessary in 2003, I was trying not to do it now.
Thanks for helping with this.
Are you seeing this problem when you're running the program in the device emulator or the actual device? You may want to run the application for Compact Framework 1.0 instead of 2.0 - Try creating PPC 2003 app.
Manav