im getting a invalid character error here. VB Code: print #1, "objShell.SendKeys"{Tab}""
print #1, "objShell.SendKeys"{Tab}""
Try something like this: Dim s As String S = "objShell.SendKeys" & CHR$(34) & "{TAB}" & CHR$(34) Print #1, S ...does this work?
Forum Rules