Change a string line to caps?

Working on new editor enhancements?
BillNee
User
User
Posts: 93
Joined: Thu Jan 29, 2004 6:01 am
Location: Homosassa, FL

Change a string line to caps?

Post 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
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Post 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"?

:?:
oh... and have a nice day.
Amiga5k
Enthusiast
Enthusiast
Posts: 329
Joined: Fri Apr 25, 2003 8:57 pm

Post 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
*** Diapers and politicians need to be changed...for the same reason! ***
*** Make every vote equal: Abolish the Electoral College ***
*** www.au.org ***
Post Reply