Search found 1 match
- 2013-04-11T08:37:40-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: Sending parameters to DOS fromMSAccess
- Replies: 0
- Views: 16640
Sending parameters to DOS fromMSAccess
I send this to DOS from Access: Dim strCommand As String Dim strVariableFrom, strVariableTo As Variant strVariableFrom = "test.tif" strVariableTo = "test.PDF" strCommand = "c:\imagemagick\imagemagick\convert.exe" & " " & strVariableFrom & " " & strVariableTo Shell ("Cmd /k" & strCommand) When it ...