Hungoverhippie
Programmer
I need to make a literal out of a string.
Example:
*'Textfile Data reads as follows
rst1.fields("test1"
rst1.fields("test2"
dim ary(2)
open "c:\mydir\testfile.txt" for input as #1
for x=1 to 2
line Input #1, ary(x)
Next x
close #1
'all my ado connection stuff here then
a$=ary(1)
b$=ary(2)
What I get back is
a$="rst1.fields("test1"
"
b$="rst1.fields("test2"
"
what I want is the liternal of ary(1) and ary(2) as in whats in the recordset fields for test1 and test2.
Maybe this makes a little more since then before..
Thanks for anyones help in advance..
HungOverHippie
Example:
*'Textfile Data reads as follows
rst1.fields("test1"
rst1.fields("test2"
dim ary(2)
open "c:\mydir\testfile.txt" for input as #1
for x=1 to 2
line Input #1, ary(x)
Next x
close #1
'all my ado connection stuff here then
a$=ary(1)
b$=ary(2)
What I get back is
a$="rst1.fields("test1"
b$="rst1.fields("test2"
what I want is the liternal of ary(1) and ary(2) as in whats in the recordset fields for test1 and test2.
Maybe this makes a little more since then before..
Thanks for anyones help in advance..
HungOverHippie