Hi,
Is there a possibility to Display the Macros/Applications name in the Titlebar of a messagebox instead of "Macro Sheduler Message"?
Thanks
Editing Titel of Message or MessageModal box
Moderators: JRL, Dorian (MJT support)
Editing Titel of Message or MessageModal box
regards
migro
migro
- Phil Pendlebury
- Automation Wizard
- Posts: 543
- Joined: Tue Jan 16, 2007 9:00 am
- Contact:
Phil Pendlebury - Linktree
It works :lol:
Thanks a lot.
i found this before, but haven't realized that the app-title only shows up, if the macro is compiled....
i found this before, but haven't realized that the app-title only shows up, if the macro is compiled....
regards
migro
migro
- Phil Pendlebury
- Automation Wizard
- Posts: 543
- Joined: Tue Jan 16, 2007 9:00 am
- Contact:
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Alternatively, make your OWN message box with the custom dialog designer. E.g.:
Code: Select all
//Dialog definition - defined ONCE at start of script
Dialog>dlgMessage
Caption=My Message
Width=290
Height=225
Top=CENTER
Left=CENTER
Max=0
Min=0
Close=1
Resize=0
Memo=msMemo1,8,8,257,145,Put your message here
Button=OK,96,160,75,25,2
EndDialog>dlgMessage
//Show message box:
Show>dlgMessage,r
//Change message and show message box again:
Let>dlgMessage.msMemo1=Some other message
ResetDialogAction>dlgMessage
Show>dlgMessage,r
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?