>1.) Does this code within "ModuleName_SelectAll" appear to have syntax to select all existing data?
This method executes the ModuleName_SelectAll stored procedure which (should) reside in you database. You can execute this stored procedure through the server explorer window in VS or VWD to see that it does in fact return what you expect.
> 2.) How do I call/execute the "ModuleName_SelectAll" within the .vb file?
If you want to call the stored procedure then use DataProvider.Instance().ExecuteReader("ModuleName_SelectAll", ModuleId)
If you want to call the method on your controller just call it.
You shouldn't have to manually do either of these. The ObjectDataSource will do all the calling for you.
> 3.) How do I associate it with only GridView3?
Give GridView3 its own ObjectDataSource instance. You can then assign whatever select, insert, update, delete methods you want to asign to that ObjectDataSource.
>4.) Where can I dictate/change the sql table it is "selecting all" from?
Within your stored procedure which is in your database.