tags:

views:

189

answers:

2

hi

i need to make shortcut to any program in Windows CE using C# code

how i can do it ?

thank's in advance

+1  A: 

Well, according to this page Shortcuts on Windows CE are just text files, so i guess you could use System.IO.TextWriter to make them.

John Knoeller
+2  A: 

Either P/Invoke SHCreateShortcut (if the OS has standard shell support) or manually create it as a text file.

ctacke