U
Undrline
So, here's my simple code so far:
Dim mylocation, stAppName As String
mylocation = tbl_settings.Path.Value
stAppName = mylocation & "\backup\backup.bat"
Call Shell(stAppName, 1)
1) Apparently I'm not saying "tbl_settings.Path.Value" the right way (FYI,
the table only has one record)
2) I don't know the equivalent of InStr for VBA . . . but, I want to make
sure that the path was written correctly. I don't want to end up with
\\path\\backup\backup.bat or \\pathbackup\backup.bat or
x:\path\\backup\backup.bat or x:\pathbackup\backup.bat
Thank you.
Dim mylocation, stAppName As String
mylocation = tbl_settings.Path.Value
stAppName = mylocation & "\backup\backup.bat"
Call Shell(stAppName, 1)
1) Apparently I'm not saying "tbl_settings.Path.Value" the right way (FYI,
the table only has one record)
2) I don't know the equivalent of InStr for VBA . . . but, I want to make
sure that the path was written correctly. I don't want to end up with
\\path\\backup\backup.bat or \\pathbackup\backup.bat or
x:\path\\backup\backup.bat or x:\pathbackup\backup.bat
Thank you.