Page 1 of 1

Code completion feature for textpad

Posted: Wed Jan 29, 2003 12:19 pm
by Code completion feature
Can we have Code completion feature for textpad.In case any plug in is available it would be of great help for the developers , in other case somebody can take initiative for this and may be tomorrow all of us can enjoy this feature.
Milind

Re: Code completion feature for textpad

Posted: Thu Jan 30, 2003 11:03 am
by Onchik
UltimaShell Pro 2.2

http://www.flashpeak.com/

Autocomplete Word/phrase and Auto-expand Shorthands in ANY applications on MS Windows. Word and shorthand libraries cover most western languages, programming languages and medical abbreviations.

;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-)

Re: Code completion feature for textpad

Posted: Thu Jan 30, 2003 12:33 pm
by Neelashish Banerjee
H:\WORK\DOCS\welcom1.java:4: cannot resolve symbol
symbol : method printIn (java.lang.String)
location: class java.io.PrintStream
System.out.printIn("welcome to java programming");
^
1 error

Tool completed with exit code 1

Re: Code completion feature for textpad

Posted: Thu Jan 30, 2003 12:34 pm
by neelashish banerjee
H:\WORK\DOCS\welcom1.java:4: cannot resolve symbol
symbol : method printIn (java.lang.String)
location: class java.io.PrintStream
System.out.printIn("welcome to java programming");
^
1 error

Tool completed with exit code 1

Re: Code completion feature for textpad

Posted: Mon Feb 03, 2003 3:41 pm
by Garrett
The problem in your last msg is that you're typing:

System.out.printIn, with an "i," (capitalized it becomes "I").

The actualy syntax is:

System.out.println

For clarity, in all uppercase that is:

SYSTEM.OUT.PRINTLN();