 |
Cleggm Level: Guest

|
Re: Make MsgBox action last.
I don't know what shell is, this what I write:
RetVal = Shell("O:BrioQry 5.5Programbrioqry.EXE", 1)
channelNumber = Application.DDEInitiate(app:="BRIOQRY", topic:="COMMAND")
MyQuery = "location of query.bqy"
MyExport = "where to put the data.csv"
With Application
.DDEExecute channelNumber, "open brioquery, '" & MyQuery & "'"
.DDEExecute channelNumber, "connect logon root,'silent' "
.DDEExecute channelNumber, "process doc root"
.DDEExecute channelNumber, "activate section root.'pivot'"
.DDEExecute channelNumber, "export section root.'pivot', 'csv', '" & MyExport & "'"
.DDEExecute channelNumber, "quit brioquery, 'silent'"
.DDETerminate channelNumber
End With
|
|
10-06-2003 at 02:16 PM |
|
|  |
|
|
|
|
 |
 |