Sub AddUDFToCategory()
Application.MacroOptions _
Macro:="TestMacro", _
Description:="This function gives back the 'Hello world' message!", _
Category:=14, _
HelpFile:=ThisWorkbook.Path & "\CHM-example.chm", _
HelpContextID:=0
End Sub
Function TestMacro()
MsgBox "EINGABE WIEDERHOLEN ?", _
Buttons:=vbYesNo + vbExclamation + vbMsgBoxHelpButton + vbDefaultButton2, _
Title:="E I N G A B E - T E S T E R", _
HelpFile:="D:\ZIP\WinHTMLExcel\CHM-example.chm", _
Context:=0
End Function
antwort = MsgBox("EINGABE WIEDERHOLEN ?", vbYesNo, _
"E I N G A B E - T E S T E R")
Function TestMacro() As Integer
antwort = MsgBox("EINGABE WIEDERHOLEN ?", vbYesNo, _
"E I N G A B E - T E S T E R")
TestMacro = antwort
End Function
Function TestMacro() As VbMsgBoxResult
TestMacro = MsgBox("EINGABE WIEDERHOLEN ?", _
Buttons:=vbYesNo + vbExclamation + vbMsgBoxHelpButton + vbDefaultButton2, _
Title:="E I N G A B E - T E S T E R", _
HelpFile:="D:\ZIP\WinHTMLExcel\CHM-example.chm", _
Context:=0)
End FunctionSub Testaufruf()
If TestMacro = vbYes Then
MsgBox "JA gewählt."
Else
MsgBox "NEIN gewählt."
End If
End Sub
MsgBox beim starten der Accessdatei
Robsenponte 19.01.2007 - 60 Hits - 2 Antworten
msgbox button
nighty 03.03.2007 - 102 Hits - 1 Antwort
VBScript File "codes,befehle...?"
bääääärli 31.08.2007 - 185 Hits - 1 Antwort
Datum/Zeit in MsgBox ausgeben lassen
stefanH. 22.02.2008 - 63 Hits - 1 Antwort
Programm ausführen in php
helfer_001 16.06.2008 - 58 Hits - 2 Antworten