hi
i need to make shortcut to any program in Windows CE using C# code
how i can do it ?
thank's in advance
hi
i need to make shortcut to any program in Windows CE using C# code
how i can do it ?
thank's in advance
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.
Either P/Invoke SHCreateShortcut (if the OS has standard shell support) or manually create it as a text file.