Search found 1 match

by dendic
2013-04-11T08:37:40-07:00
Forum: Windows COM+ & Visual Basic
Topic: Sending parameters to DOS fromMSAccess
Replies: 0
Views: 18342

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 ...