Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Private Sub Application_Startup()
MsgBox "Welcome, " & Application.GetNamespace("MAPI").CurrentUser
Application.ActiveExplorer.WindowState = olMaximized
End Sub
Private Sub Application_Startup()
Application.ActiveExplorer.WindowState = olMinimized
frmPassword.Show
MsgBox "Welcome, " & Application.GetNamespace("MAPI").CurrentUser
Application.ActiveExplorer.WindowState = olMaximized
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If CloseMode = vbFormControlMenu Then
Cancel = True
Me.Caption = "Foei..foei!"
End If
End Sub
Option Explicit
Const sWW As String = "Joost"
Private Sub TextBox1_Change()
If Len(sWW) <> Len(Me.TextBox1.Text) Then
Exit Sub
Else
If Me.TextBox1.Text <> "Joost" Then
Me.TextBox1.Text = ""
Else
Unload Me
End If
End If
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If CloseMode = vbFormControlMenu Then
Cancel = True
Me.Caption = "Foei..foei!"
End If
End Sub
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.