Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Widen Code Area (Typing Area)in IDE?

Status
Not open for further replies.

cjtaylor

Programmer
Aug 12, 2001
69
US
Does anyone know how to Widen Code Area (Typing Area)in IDE? I am trying to import a webservice (.wsdl file) and some the functions prototypes are longer than the 1025 characters allowed in the ide, so it's truncating them. If there is way to do this, your help is greatly appreciated.

 
nope cant do it, it wouldn't be prudent.

prototypes are longer than the 1025 characters

you gotta be kidding, right. is there any way to shorten them. or do you have dependancy issues.

tomcruz.net

 
I know they are ridiculously long prototypes. Some have 15-20 parameters each also very long variable names. I figured out how to fix this, I just found all the variable names from the xml file in which the import was created, so I was able to separate the prototypes into separate lines. Thanks anyway.
 
return dothis (int x, int y, int z, int xx,
int yy, int zz);

you will notice that the entire function parameter list is on two lines. just hit the enter key at each "," and the
compiler will contine from the next line. I dont know why I didnt think of this before. my alzhiemers must be going today.

tomcruz.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top