I'd like to incorporate the version number (FF generates every iteration when I compile the program) into on of my screen.
How do I get this version into a string?
Thanks for the help.
Have a look at the App Variable (under special functions in help)
I often do something like this:
FF_StatusBar_SetText( HWND_FORM1_STATUSBAR, 0, "Build : "+Format$(app.FileMajor)+"."+Format$(app.FileMinor)+"."+Format$(app.FileRevision)+"."+Format$(app.FileBuild))
Ian