Example: /Win/Windows Shortcuts/File Shortcut

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

/Win/Windows Shortcuts/File Shortcut


Required plugins for this example: MBS Util Plugin, MBS Win Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Win/Windows Shortcuts/File Shortcut

This example is the version from Thu, 31th Jul 2019.

Project "File Shortcut.xojo_binary_project"
MenuBar Menu
MenuItem UntitledMenu3 = ""
MenuItem UntitledMenu2 = "File"
MenuItem FileQuit = "Quit"
MenuItem UntitledMenu0 = "Edit"
MenuItem EditUndo = "Undo"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "Cut"
MenuItem EditCopy = "Copy"
MenuItem EditPaste = "Paste"
MenuItem EditClear = "Clear"
End MenuBar
Class App Inherits Application
EventHandler Sub Open() dim w as WindowsShortCutMBS w=new WindowsShortCutMBS w.Arguments="c:" w.Command=3 w.Icon=WindowsSystemFolderMBS.child("shell32.dll").NativePath w.iconID=41 w.Location=SpecialFolder.Desktop.child("A new link to explorer.lnk").NativePath w.Target=WindowsFolderMBS.child("explorer.exe").NativePath w.WorkingDirectory=volume(0).NativePath if w.CreateShortCut then msgBox "Created shortcut." else msgBox "Failed to create shortcut." end if quit End EventHandler
End Class
End Project

See also:

The items on this page are in the following plugins: MBS Win Plugin.


💬 Ask a question or report a problem