Platforms to show: All Mac Windows Linux Cross-Platform

/Util/Filemapping/Shared Memory Server


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/Filemapping/Shared Memory Server

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

Project "Shared Memory Server.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control EditField1 Inherits TextArea
ControlInstance EditField1 Inherits TextArea
EventHandler Sub TextChange() dim s as string = me.text s = ConvertEncoding(s, encodings.UTF8) while lenb(s)>4999 s = left(s,len(s)-1) wend v.Memory.CString(0)=s End EventHandler
End Control
Control StaticText1 Inherits Label
ControlInstance StaticText1 Inherits Label
End Control
EventHandler Sub Open() s = new FileMappingMBS if s.CreateSharedMemory("mbstest", 5000) then // ok v = s.MapView(0, 5000) if v = nil then MsgBox "Failed to map shared memory region." quit end if else MsgBox "Failed to create shared memory region." quit end if End EventHandler
Property s As FileMappingMBS
Property v As FileMappingViewMBS
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

See also:

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


The biggest plugin in space...