DeviceShell
Previous  Next

Launches an application on the device.
Syntax: DeviceShell (file As String, CommandLine As String)

Example:

'Add a RAPIDesktop object named rapi.
Sub App_Start
      Form1.Show
      rapi.New1
      rapi.Connect
End Sub


Sub rapi_Connected
      rapi.DeviceShell("pxl","\My Documents\test.xls") 'Opens Pocket Excel with the specified work book.
End Sub