RAYLWARD102
Well-known Member
- Joined
- May 27, 2010
- Messages
- 529
I have a function I wrote years ago.
I'm not sure why, but sometimes, the string sent, is arriving empty to the function; not sure how this can be happening.
This is very strange.
I'm not sure why, but sometimes, the string sent, is arriving empty to the function; not sure how this can be happening.
This is very strange.
VBA Code:
Function FrameLoad102(ByVal MyQuery As String)
MsgBox MyQuery
End Function
'function call method
FrameLoad102 "SELECT TOP 75 * FROM landscape.dbo.allocate WHERE deleted = 0 ORDER BY ID DESC"