how to create shorcuts from my project to other application and mobile functions? let say if i click a button it will open the calculator, alarm, messaging, or any other functions of the mobile?
Printable View
how to create shorcuts from my project to other application and mobile functions? let say if i click a button it will open the calculator, alarm, messaging, or any other functions of the mobile?
Do you mean shortcuts, or do you just want to start applications from within your application?
If that is the case process.start is what you want to look at - you can use it to start .exe files, shortcuts (.lnk) or files associated to programs - so starting a '.kml' file will start google maps
does that help?
start application from within my application.. can i have sample like.. opening a calculator or simply a command that will go to write message without exiting my application.
process.start is what you need then
Code:process.start ("\windows\calc.exe","")
ok thanks..