WayneGretzky
Programmer
how can I make the value for the output parameter below available to all my subs in my code behind class?
This is in one of my Subs but I want to share it out:
Dim NewCateringOrderID As New SqlParameter("@NewCateringOrderID", SqlDbType.BigInt)
NewCateringOrderID.Direction = ParameterDirection.Output
cmd.Parameters.Add(NewCateringOrderID)
This is in one of my Subs but I want to share it out:
Dim NewCateringOrderID As New SqlParameter("@NewCateringOrderID", SqlDbType.BigInt)
NewCateringOrderID.Direction = ParameterDirection.Output
cmd.Parameters.Add(NewCateringOrderID)