View previous topic :: View next topic
|
Author |
Message |
kgumraj
Active User
Joined: 01 May 2006 Posts: 151 Location: Hyderabad
|
|
|
|
Hello all,
How to increase the width of the comand line,
What I mean is usally we have
Command: _____________________
I ant to incerase the command prompt widht
Say
Command: _____________________
_____________________
for this simple reason my string donens fit in the space provide.
Is their any way to do so? |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi !
Normaly no. You can define your own Panel or modify that one.
But normaly you can use TSO Option 6.
Regards, UmeySan |
|
Back to top |
|
|
kgumraj
Active User
Joined: 01 May 2006 Posts: 151 Location: Hyderabad
|
|
|
|
hello,
Thanks for the replay. but I need to change some string which is greater value to be fit in that line.
I need to do some editing in editor itself. So I cant use Option 6. |
|
Back to top |
|
|
UmeySan
Active Member
Joined: 22 Aug 2006 Posts: 771 Location: Germany
|
|
|
|
Hi !
So, define your own Panel, that fits your requirements.
Regards, UmeySan |
|
Back to top |
|
|
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1592
|
|
|
|
Here's a possible work around:
c 'abc' 'xyzqrst ect to eol~'
c ~ 'continue on'
or
c 'abcdetc=====================================>' ~
c ~ 'wxyzetc=====================================<' |
|
Back to top |
|
|
shreevamsi
Active User
Joined: 23 Feb 2006 Posts: 305 Location: Hyderabad,India
|
|
|
|
hi kgumraj,
Another easy method to convert a long string....
F All 'long string'
C all * 'new long string'
~Vamsi |
|
Back to top |
|
|
kgumraj
Active User
Joined: 01 May 2006 Posts: 151 Location: Hyderabad
|
|
|
|
thanks a lot both MMwife and Shreevansi. With your valuable suggestion I got the solution.
One more thing I need to ask. As per UmeySan guided, Is it possible to design a own panels, If so kindly guide me, it might be helpful in further task.
Also, I knew little REXX. But need the information how to put my panel in default profile lib.
kindly guide me |
|
Back to top |
|
|
elayadath
New User
Joined: 02 Dec 2005 Posts: 9 Location: USA
|
|
|
|
In SDSF enter / |
|
Back to top |
|
|
agkshirsagar
Active Member
Joined: 27 Feb 2007 Posts: 691 Location: Earth
|
|
|
|
Quote: |
Here's a possible work around:
c 'abc' 'xyzqrst ect to eol~'
c ~ 'continue on'
or
c 'abcdetc=====================================>' ~
c ~ 'wxyzetc=====================================<' |
Jack, could you please explain your post a bit? This looks like a change command in editor. I don't understand this. |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello Abhijit,
Yes, those are editor change commands.
What they accomplish is getting a "long" value changed to a different "long" value (the length of the 2 values combined is greater than will fit in the command area).
By changing the "input" value to ~ (after ensuring that ~ cannot be in the data) in one command, the ~ is then changed to the required long value by the second command. |
|
Back to top |
|
|
agkshirsagar
Active Member
Joined: 27 Feb 2007 Posts: 691 Location: Earth
|
|
|
|
Got it!
I was confused by =====, which we usually use as p'==='. |
|
Back to top |
|
|
Eisb?cker
New User
Joined: 16 Feb 2007 Posts: 1 Location: Germany
|
|
|
|
Hello!
Ther is another way to get a long commandline: CMDE |
|
Back to top |
|
|
|