Example: /Util/Launch in Console Application

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

/Util/Launch in Console Application


Required plugins for this example: MBS Util Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Util/Launch in Console Application

This example is the version from Sun, 17th Mar 2012.

Project "Launch in Console Application.xojo_binary_project"
Class App Inherits ConsoleApplication
EventHandler Function Run(args() as String) As Integer print "Hello" // Folderitem.Launch is not available in console applications! const sShellPath="/usr/bin/open" dim a(1) as string dim e(-1) as string a(0)="open" // must be the application name a(1)="/Applications/TextEdit.app" // first parameter print str(ConsoleExecuteMBS(sShellPath,a,e)) End EventHandler
End Class
End Project

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


💬 Ask a question or report a problem