Hi Experts ,
I have a problem now with Functions, here is my code
Public function Report(Rollno as srtring , Name as string , Class as string)
-------statements--------
return nothing
end function
now when i call the function it is not calling the function . . .
call Report(form2.textbox1.text as srtring , form2.textbox1.text as string , form2.textbox1.text as string)
The problem is that the function is not getting called or invoked.
I dont know what's the problem. .