From | "trbrenke" <trbrenke@educationexplorations.com> |
Date | Tue, 12 Aug 2003 20:51:38 -0700 |
send the address of the string varable
instead.
then let your sub read it from that memory
location.
dim lcd_string as string * 20
main
to_sub = VARPTR( lcd_string )
call lcd_something(to_sub)
as word
sub lcd_something(address_string)
local loc_string as string
loc_string =
inp(address_string)
for x = 1 to 18
loc_string =
loc_string + inp(address_string + x)
next x
end sub
|