hi i am new to VB programming. i want to add my own module to my project cud please anybody tell me how to define and declare ,call a module in VB
Choose Project - Add Module. For defining just define any normal function there and just remember to make it public. Call the subroutine from any event you wish to.
As a sample to the function in module Code: Public Function MyFuncName() As String 'You can write any general utility here MyFuncName = "CoderZone" End Function