Page 1 of 1
Change a string line to caps?
Posted: Wed Dec 10, 2008 7:06 pm
by BillNee
Hi - is there any existing or new way to change a string line (in quotes) already typed to all caps by highlighting inside the quotes and doing some keystroke? I know you can put ucase in front of the string but I'd like to change the string itself.
Also - is there a way to load more than 1 "recent files"?
Bill Nee
Posted: Wed Dec 10, 2008 7:11 pm
by Kaeru Gaman
Code: Select all
For n=0 To 59
a$ + Chr( Random(25) + 97 )
Next
Debug a$
Debug "--------------------"
a$ = UCase( a$ )
Debug a$
> is there a way to load more than 1 "recent files"?

Posted: Fri Dec 19, 2008 5:04 pm
by Amiga5k
I think he means hitting, for example, Control-U to make a line of selected text underlined like in Microsoft Word and other word processors (but instead, making the whole line capitalized).
I think this is an editor-specific feature and would have to be implemented within the code for the editor itself, rather than an OS feature that would work in all apps, etc.
Maybe the PB team could add this since the code would be extremely simple...although it's not a feature one would use every day
Russell