Changing the window name in the command Notify

BlitzMax Forums/MaxGUI Module/Changing the window name in the command Notify

Marco A G Pinto(Posted 2012) [#1]
Hello!

I am using the command "Notify" to tell the name, version number and release date of a utility.

The problem is that the window that opens says in the bar: "BlitzMax Application".

Is there a way of changing it to "About"?

Also, are there any plans to release a paper manual? It is very hard to understand some of the commands since the built-in help doesn't show good example of some commands.

Thanks!

Kind regards,
>Marco A.G.Pinto
--------------------



This is the main loop of my program. I have released previous versions using another popular coding language but, due to unfixed bugs in that language, I decided to move to BlitzMax and start from zero:

#main_lp
WaitEvent()
t = EventID()
If t = EVENT_APPTERMINATE End
If t = EVENT_WINDOWCLOSE End
If t = EVENT_MENUACTION
t1 = EventData()
If t1 = MENU_EXIT Or t1 = 104 End
If t1 = MENU_ABOUT Or t1 = 113 Notify "ZX Life Shield Professional V4.0~nReleased: ??.???.2012"
EndIf

Goto main_lp


Zeke(Posted 2012) [#2]
AppTitle="About"

before notify command


Marco A G Pinto(Posted 2012) [#3]
It worked!!!!

Thank you very much!