Hi
In
vb.Net why does option strict require all functions to have an 'AS' clause. What if I don't need to return anything?
Example:
Public Function Add(byval Name as string) AS "What should this be?"
Try
'code to call insert, update or delete stored procedure, no return values
catch sql exception
messagebox.show (ex.message)
end try
end function
Duncan