If your Format method is not shared, but only Public, you can access it only if you create an instance of your class.
For example, let's call 'I' the instance and 'MyC' your class
VB Code:
Dim I as new MyC Dim s As String s = I.Format(txtamt.Text, "Standard")




Reply With Quote