i have defined a public var in a module
mymodule
public tempvar as string
----------------------------------
in the event open of the report i have assigned a value.
Private Sub Report_Open(cancel As Integer)
tempvar = "12345"
End Sub
-----------------------------------------
however im am getting the next window error, whe i run the report.
Enter Parameter Value
tempvar:
it means that the public var is not public, but is local?
Can anyone advise. Thanks a lot.
mymodule
public tempvar as string
----------------------------------
in the event open of the report i have assigned a value.
Private Sub Report_Open(cancel As Integer)
tempvar = "12345"
End Sub
-----------------------------------------
however im am getting the next window error, whe i run the report.
Enter Parameter Value
tempvar:
it means that the public var is not public, but is local?
Can anyone advise. Thanks a lot.