I dont have 6.0
I have 6.7.1
Main Topics
Browse All Topicsis there a way to word wrap
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have 6.7.1 also and still not there. At least I have not found it yet. In fact, you can typically click format in Eclipse for example and it will convert long lines to multiple line statements the best it can and suspect that should work in Netbeans as well but even haven't even gotten that to work.
It is still an open issue. The link I sent should have been to the 6.5 version but it was since 6.0 as well.
Avoiding the advice of use a different IDE which does you no good, I would say just try to spread out code to multiple lines. For me the number of lines doesn't matter, so hopefully doesn't bother you ...
This (sample only):
BufferedReader reader = new BufferedReader(new InputStreamReader(new InputStream()));
Can be written like this:
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
new InputStream()
)
);
Then you won't need to word wrap.
Business Accounts
Answer for Membership
by: mwvisa1Posted on 2009-10-17 at 19:29:32ID: 25598505
rgb192,
ssues/show _bug.cgi?i d=89894
This is on the plate, but a firm version / date has not be established as far as I know. I can retest in my version of Netbeans, but you can see the bug listing here :
http://www.netbeans.org/i
M-1