Platforms to show: All Mac Windows Linux Cross-Platform

/XL/Convert


Required plugins for this example: MBS XL Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /XL/Convert

This example is the version from Thu, 2nd Jan 2019.

Project "Convert.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open() // Converts from XLS to XLSX or back. // demo version will not do conversion... RegisterLibXL // open xls file dim book1 as new XLBookMBS(false) // load existing dim file as FolderItem = SpecialFolder.Desktop.Child("test.xls") if file.Exists = false then MsgBox "Missing test.xls file on desktop." quit end if if not book1.Load(file) then MsgBox "Failed to read file: "+book1.ErrorMessage quit end if // reate xlsx file dim book2 as new XLBookMBS(true) dim options as new XLCopyOptionsMBS options.CopyFormat = false book1.CopyContent book2, options // write file dim destfile as FolderItem = SpecialFolder.Desktop.Child("output.xlsx") if book2.Save(destfile) then destfile.Launch else MsgBox "Failed to create file."+EndOfLine+EndOfLine+book2.ErrorMessage end if quit End EventHandler
Sub RegisterLibXL() // once you bought a LibXL license, you can put your license key here // see order links on our website // http://www.monkeybreadsoftware.de/xojo/plugin-xls.shtml #if TargetMacOS then XLBookMBS.SetKeyGlobal "your name", "your Mac LibXL license key" #elseif TargetWin32 then XLBookMBS.SetKeyGlobal "your name", "your Windows LibXL license key" #elseif TargetLinux then XLBookMBS.SetKeyGlobal "your name", "your Linux LibXL license key" #endif End Sub
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
End Project

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


The biggest plugin in space...