Hola amigos
tengo este problema
necesito llamar a un ejecutable que lleva un parametro
desde un dispositivo motorola es400 con windows mobile
el programa esta en visual estudio 2008 pero leyendo
me dicen que el comando shell no funciona en los mobiles
la verdad estoy azul si alguien sabe se lo agradecere muchisimo
este es mi codigo
Dim ProcID As Integer
Dim FilePath As System.String = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetModules(0).FullyQualifiedName) & "\gTimeSync.exe -u"
Try
ProcID = Shell("\\" & FilePath, AppWinStyle.Hide)
' MessageBox.Show("File Path(A): " & FilePath & " ok")
Beep()
Catch ex As Exception
' MessageBox.Show("File Path(A): c:" & FilePath & " Error: " & ex.Message)
Lblx.Text = ProcID
End Try