TITLE: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
(Created page with "{{DISPLAYTITLE:_TITLE}} The _TITLE statement provides the program name in the title bar of the program window. {{PageSyntax}} : _TITLE {{Parameter|text$}} {{Parameters}} * {{Parameter|text$}} can be any literal or variable STRING or ASCII character value. {{PageDescription}} * The title can be changed anywhere in a program procedure. * The title bar will say "Untitled" if a title is not set. * Change the title of the $CONSOLE windows created usi...") |
No edit summary |
||
Line 20: | Line 20: | ||
{{PageExamples}} | {{PageExamples}} | ||
''Example 1:'' How to create the window title bar. | ''Example 1:'' How to create the window title bar. | ||
{{CodeStart}} | {{CodeStart}} | ||
{{Cl|_TITLE}} "My New Program" | {{Cl|_TITLE}} "My New Program" | ||
{{CodeEnd}} | {{CodeEnd}} | ||
''Example 2:'' How to find the currently running program module name and current path using a Windows API Library. | ''Example 2:'' How to find the currently running program module name and current path using a Windows API Library. | ||
{{CodeStart}} | {{CodeStart}} | ||
{{Cl|_TITLE}} "My program" | {{Cl|_TITLE}} "My program" | ||
{{Cl|_DELAY}} 5 '5 second delay | {{Cl|_DELAY}} 5 '5 second delay | ||
Line 55: | Line 55: | ||
{{Cl|ELSE}} TITLE$ = "": PATH$ = "" | {{Cl|ELSE}} TITLE$ = "": PATH$ = "" | ||
{{Cl|END IF}} | {{Cl|END IF}} | ||
{{Cl|END FUNCTION}} | {{Cl|END FUNCTION}} | ||
{{CodeEnd}} | {{CodeEnd}} | ||
: ''Note:'' The actual module file name is returned. Not necessarily the Title value. The value returned can be used however. | : ''Note:'' The actual module file name is returned. Not necessarily the Title value. The value returned can be used however. |
Revision as of 02:53, 23 January 2023
The _TITLE statement provides the program name in the title bar of the program window.
Syntax
- _TITLE text$
Description
- The title can be changed anywhere in a program procedure.
- The title bar will say "Untitled" if a title is not set.
- Change the title of the $CONSOLE windows created using _CONSOLETITLE
- Note: A delay may be required before the title can be set. See _SCREENEXISTS.
Examples
Example 1: How to create the window title bar.
_TITLE "My New Program" |
Example 2: How to find the currently running program module name and current path using a Windows API Library.
_TITLE "My program" _DELAY 5 '5 second delay _TITLE MID$(TITLE$, 1, INSTR(TITLE$, ".") - 1) PRINT PATH$ FUNCTION TITLE$ '=== SHOW CURRENT PROGRAM SHARED PATH$ DECLARE LIBRARY 'Directory Information using KERNEL32 provided by Dav FUNCTION GetModuleFileNameA (BYVAL Module AS LONG, FileName AS STRING, BYVAL nSize AS LONG) END DECLARE FileName$ = SPACE$(256) Result = GetModuleFileNameA(0, FileName$, LEN(FileName$)) IF Result THEN PATH$ = LEFT$(FileName$, Result) start = 1 DO posit = INSTR(start, PATH$, "\") IF posit THEN last = posit start = posit + 1 LOOP UNTIL posit = 0 TITLE$ = MID$(PATH$, last + 1) PATH$ = LEFT$(PATH$, last) ELSE TITLE$ = "": PATH$ = "" END IF END FUNCTION |
- Note: The actual module file name is returned. Not necessarily the Title value. The value returned can be used however.
See also
- _TITLE$ (function)
- _ICON
- _DELAY
- ASCII
- _CONSOLETITLE
- _SCREENEXISTS