如何用VB在桌面建立快捷方式
图老师设计创意栏目是一个分享最好最实用的教程的社区,我们拥有最用心的各种教程,今天就给大家分享如何用VB在桌面建立快捷方式的教程,热爱PS的朋友们快点看过来吧!
PrivateDeclareFunctionfCreateShellLinkLib"STKIT432.DLL"(ByVallpstrFolderNameAsString,ByVallpstrLinkNameAsString,ByVallpstrLinkPathAsString,ByVallpstrLinkArgsAsString)AsLong
SubCommand1_Click()
DimlReturnAsLong
'添加到桌面
lReturn=fCreateShellLink("....Desktop","ShortcuttoCalculator","c:windowscalc.exe","")
'添加到程序组
lReturn=fCreateShellLink("","ShortcuttoCalculator","c:windowscalc.exe","")
'添加到启动组
lReturn=fCreateShellLink("Startup","ShortcuttoCalculator","c:windowscalc.exe","")
EndSub->