Desktop Functions: Smart Device Functions:
|
![]() coredll is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for SHCreateShortcut in other DLLs exists, click on Find References to the right. Summary:This function creates a shortcut. A remote application interface (RAPI) version of this function exists, CeSHCreateShortcut (RAPI). (From MSDN.) C# Signature:
[DllImport("coredll.dll")] VB Signature:
Private Declare Function SHCreateShortcut% Lib "coredll" (ByVal szShortcut As System.Text.StringBuilder, ByVal szTarget As System.Text.StringBuilder)!!!!User-Defined Types: None. Alternative Managed API:None. Notes:It seems szTarget should start and end with a double-quote if it contains spaces -- so, you should always quote it. szShortcut should end with ".lnk". Tips & Tricks:Please add some! Sample Code:
/** Put a shortcut to Program Files\Foo\Foo.exe in Windows\Start Menu\Programs **/ Documentation:Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).
|
|