bboggessswcg Posted November 25, 2003 Posted November 25, 2003 I am using a module to write a subroutine in that is doing some database stuff. I am calling this module from the button click event on the web form. At the end of the module, I would like to set some of the datagrid properties on the web form. Is it possible to call the datagrid from the module?? Thanks, Quote
Moderators Robby Posted November 25, 2003 Moderators Posted November 25, 2003 You can pass a reference of the control to your class/module. Quote Visit...Bassic Software
bboggessswcg Posted November 25, 2003 Author Posted November 25, 2003 Clarify Could you please give me a sample of how to do that? Quote
Moderators Robby Posted November 25, 2003 Moderators Posted November 25, 2003 SomeRoutine(myDatagrid) 'then in the class/mod... protected SomeRoutine(byref dg as datagrid) 'do stuff here end sub Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.