Passing parameter between forms

Olodu

New member
Joined
Oct 25, 2006
Messages
1
Programming Experience
1-3
Hi,

I am a VB.NET newbie. I am trying to develop a simple VB.NET application using VS 2005 and MS Access. I need help in trying to pass parameter between forms.

My first form has a combobox which dynamically retrieves an item ID from the access database. When the user selects an Item ID, I want to populate a datagrid in the second form based on the ID selected.

I have search all over the web for a simple example of how to accomplish this. This site is now my only hope. Can anybody help me?

Thank you in advance
 
you can always make your own show method accepting the parameters that you need, and when you're done with your code simply use 'Me.Show' to actually show the form

i do this with the .ShowDialog() method
 
Back
Top