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
Code completion feature for textpad
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
Re: Code completion feature for textpad
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.
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
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
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
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
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
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();
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();