You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Win/Full Name in Domain
Class App Inherits Application
Const kEditClear = "&Delete"
Const kFileQuit = "&Quit"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control Domain Inherits TextField
ControlInstance Domain Inherits TextField
EventHandler Sub Open()
Dim path As String
Dim r As RegistryItem
if not TargetWin32 then
MsgBox "This example is Windows only"
else
path="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon"
r=New RegistryItem(path)
Me.Text = r.Value("DefaultDomainName")
end if
End EventHandler
End Control
Control StaticText1 Inherits Label
ControlInstance StaticText1 Inherits Label
End Control
Control ShortName Inherits TextField
ControlInstance ShortName Inherits TextField
EventHandler Sub Open()
Me.Text = SystemInformationMBS.ShortUsername
End EventHandler
End Control
Control StaticText2 Inherits Label
ControlInstance StaticText2 Inherits Label
End Control
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action()
FullName.Text = GetFullWindowsNameMBS(ShortName.Text, Domain.Text)
End EventHandler
End Control
Control StaticText3 Inherits Label
ControlInstance StaticText3 Inherits Label
End Control
Control FullName Inherits Label
ControlInstance FullName Inherits Label
End Control
Control StaticText4 Inherits Label
ControlInstance StaticText4 Inherits Label
End Control
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&File"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "Select &All"
End MenuBar