Hi sancho. For the time being, you could simply use a macro:sancho2 wrote:I use a blank msgbox often during debugging...
Code: Select all
Macro Yo
MessageRequester("", "")
EndMacro
Yo

Hi sancho. For the time being, you could simply use a macro:sancho2 wrote:I use a blank msgbox often during debugging...
Code: Select all
Macro Yo
MessageRequester("", "")
EndMacro
Yo
Code: Select all
Procedure MsgBox(Title.s="",Text.s="", Flags=0, WindowID=0)
Protected lpText, lpCaption
If Text <> "" : lpText = @Text : EndIf
If Title <> "" : lpCaption = @Title : EndIf
ProcedureReturn MessageBox_(WindowID,lpText,lpCaption,Flags)
EndProcedure
MsgBox()
MsgBox("","My Text")
MsgBox("","My Text",#MB_ICONERROR)
MsgBox("","",#MB_ICONERROR)
MsgBox("","",#MB_ICONEXCLAMATION|#MB_ABORTRETRYIGNORE)
MsgBox("","",#MB_ICONINFORMATION|#MB_YESNOCANCEL)
Code: Select all
If Title = "" : Title = " " : EndIf
Just re-discovered that PatternPosition does nothing on Mac OS X (and SelectedFilePattern() always returns 0?).kenmo wrote:PatternPosition could default to 0Code: Select all
OpenFileRequester SaveFileRequester