5,031 Posted Topics

Member Avatar for jaiprakash15

DB connection from JSP is something which you should not do it. For better wait to communicate with DB see [URL="http://www.daniweb.com/forums/thread141776.html"]this post[/URL]

Member Avatar for peter_budo
0
216
Member Avatar for vedmack

I think you do not understand what you want to do. [icode]System.out.println()[/icode] are system calls you placed there for some reason by programmer (in this case by you, and you may not complitelly understand them). If you want to threat data handled by system calls differently you have to tell …

Member Avatar for vedmack
0
5K
Member Avatar for 6pandn21

@Robdale in the future please use "Flag Bad Post" option in relevant post report it to moderators. In message box write something like "Spam" or "Wrong forum" etc.

Member Avatar for Ancient Dragon
0
98
Member Avatar for lahiru17
Member Avatar for lahiru17
0
93
Member Avatar for riyashm

Please read the following [URL="http://www.daniweb.com/forums/announcement9-2.html"]forum announcement[/URL], after that take appropriate steps...

Member Avatar for ithelp
0
59
Member Avatar for funlovingashish

I think he is looking for traditional screen resolution through JavaScript and base on it use relevant CSS, but I cannot be sure because of that poor explanation provided...

Member Avatar for masijade
0
101
Member Avatar for funlovingashish

What is this custom email class? We need more description or code and some stack trace of the error.

Member Avatar for peter_budo
0
57
Member Avatar for cohen

There is no install, you just upload CSS file to your web server and tell the HTML/XHTML/PHP or what ever format you gone use that it should use this layout, plus in the document you tell tags which settings to use. For example [icode]<table class="bordless"....>[/icode]. If image is used as …

Member Avatar for MidiMagic
0
121
Member Avatar for tania khan
Member Avatar for sierrasoft

@atinobrian I do not know where you got that but .jad Java Application Descriptor File. There is no way to do it. Either create mobile project with C# in Visual Studio (but no JAD extension and will run only on windows devices) or code it in Java Microedition (you get …

Member Avatar for peter_budo
0
131
Member Avatar for kavithaGowda

Your request been granted! Google search [URL="http://www.google.co.uk/search?hl=en&q=java+JProgressBar+tutorial&btnG=Search&meta="]java JProgressBar tutorial[/URL] found some 5770 results just for you to read it...

Member Avatar for peter_budo
0
23
Member Avatar for Rombosia

You must made some changes somewhere in your project as build does only packaging and does not trigger run process.

Member Avatar for peter_budo
0
113
Member Avatar for w32.sysfile
Member Avatar for jdbarry

First thing first. Have you been told to generated the password this way or you come up with this solution of converting integer to character? Secondly you use while loop without opening and closing bracklets that cause lot of weird behaviour. The current solution is to complex and it can …

Member Avatar for markhogg
0
121
Member Avatar for tarikiihem_01

On top of JSP section is sticky post called [URL="http://www.daniweb.com/forums/thread141776.html"]JSP database connectivity according to Model View Controller (MVC) Model 2[/URL], even tough it is MySQL example you should be able easy to adapt to your needs.

Member Avatar for ~s.o.s~
0
132
Member Avatar for edadma

There is [URL="http://plugins.intellij.net/plugin/?id=1347"]plug-in for IntelliJ IDEA[/URL], but I never try it

Member Avatar for peter_budo
0
93
Member Avatar for girlygirl

Hacking of your AOL profile has nothing to do with Windows Vista. You should explain what technologies you using on AOL PHP/ASP/ASP.NET/JSP, are there any databases, do you have any scripts there (JavaScript, VBScript) PS: I would recommend reading forum rules as forum flooding is not welcomed

Member Avatar for Leonle
0
78
Member Avatar for faisaly

Either [URL="http://java.sun.com/javaee/5/docs/tutorial/doc/bnalj.html"]custom tags in JSP[/URL] or I'm lost

Member Avatar for stultuske
0
126
Member Avatar for RajeevSd

The fastest answer would be get rid of frames. Frames are outdated technology which not gone by supported too much in new release of HTML 5.0 (there are however small bits left) and developers been strongly discouraged to use it since HTML 4.0.1 because of growing numbers of browser issues …

Member Avatar for peter_budo
0
139
Member Avatar for peter_budo

Dani would be possible to rename JSP section to Java Web Development?

Member Avatar for peter_budo
0
212
Member Avatar for vartikachandra

Do you have jar file with JDBC driver for MySQL? NO? Download [URL="http://dev.mysql.com/downloads/connector/j/5.1.html"]here[/URL] Is the driver in correct location ? TOMCAT_DIRECTORY/webapps/YOUR_PROJECT/WEB-INF/lib More on Tomcat [URL="http://tomcat.apache.org/tomcat-5.5-doc/appdev/deployment.html#Standard%20Directory%20Layout"]Standard Directory Layout[/URL]

Member Avatar for peter_budo
0
130
Member Avatar for localp

Here [URL="http://www.daniweb.com/forums/search6845526.html"]list of threads[/URL] where this been mentioned. You may find some answers there, but be aware most of them just hold request to get code and not solution...

Member Avatar for verruckt24
0
1K
Member Avatar for Techie08

If I'm not mistaken you should be able to work with SVG in Illustrator ad Freehand as these are one of vector packages. Also if you google for [URL="http://www.google.co.uk/search?hl=en&q=how-to+svg&btnG=Search&meta="]how-to svg[/URL] or [URL="http://www.google.co.uk/search?hl=en&q=draw+svg&btnG=Google+Search&meta="]draw svg[/URL] you get some additional resources that often included programming or scripting solutions

Member Avatar for peter_budo
0
120
Member Avatar for vartikachandra

Is that pre-requirement of your assignment or you just do not know how to read text file? Have look at [URL="http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html#readLine()"]BufferedReader.readLine()[/URL]

Member Avatar for vartikachandra
0
93
Member Avatar for tanha

It would be good idea if you share solution, if you got one, and finally close this thread...

Member Avatar for peter_budo
0
3K
Member Avatar for Mr.UNOwen

2 years back I was doing a project that was dealing with gray scale images, but these are not well supported. That time I used [URL="https://jai.dev.java.net/"]Java Advanced Imaging (JAI)[/URL] library, however if I had to do it again I would go this time with [URL="https://jai-imageio.dev.java.net/"]Java Advanced Imaging Image I/O Tools[/URL]

Member Avatar for peter_budo
0
68
Member Avatar for 3pid

You have code, but it is in C#. Why don't you convert it to Java and then ask specific question of any issues you may face?

Member Avatar for 3pid
0
100
Member Avatar for britto

Rather then having [icode]tabbedPane.addTab("tab",new ScrollPane(new JTextArea()),null);[/icode] you should go as [code=Java] JTextArea jta = new JTextArea(); JScrollPane jsp = new JScrollPane(jta); tabbedPane.addTab("TAB_NAME", jsp);[/code] in doing so you can either call jta directly if from same class or provide appropriate setter and getter methods for access from outside class. I'm not …

Member Avatar for britto
0
590
Member Avatar for CcXD

Geek's Lounge >> [URL="http://www.daniweb.com/forums/forum80.html"]Posting Games[/URL]

Member Avatar for jbennet
0
30
Member Avatar for MUTABAZI

[url]http://technet.microsoft.com/en-gb/library/bb457097.aspx[/url]

Member Avatar for jbennet
0
92
Member Avatar for mabz_jean

[URL="http://www.daniweb.com/forums/announcement9-2.html"]Read this...[/URL] PS: PMs are not welcomed, also one of forum rules - Keep It On the Site [quote]Do not post asking for an answer to be sent to you via email or PM. Problems and their responses assist others who read them. Please do not email or PM forum …

Member Avatar for javaAddict
0
100
Member Avatar for deola_lanre
Member Avatar for PhiberOptik
0
221
Member Avatar for cohen

It is unlike event that somebody will just give you early Christmas present in form of Vbulletin, it does cost $180. You should consider other alternatives that are free like [URL="http://www.phpbb.com/"]phpbb[/URL], [URL="http://www.simplemachines.org/"]simplemachines[/URL] or [URL="http://ikonboard.com/"]Ikonboard[/URL]

Member Avatar for smartness
0
162
Member Avatar for ~gamer4life~
Member Avatar for Ole Raptor
0
93
Member Avatar for khalidmehmood

Data retrieved from database with use of servlet (not like your attempt above), returned back or passed to next page where with use of JSTL you would be able to do it much simpler. You can pick up some general hints and tips from [URL="http://www.daniweb.com/forums/thread141776.html"]this tutorial[/URL]

Member Avatar for peter_budo
0
2K
Member Avatar for architact

Knowing which technology you use collect data from form and query database would be nice... PHP/JSP/ASP????

Member Avatar for Fest3er
0
94
Member Avatar for marcosjp

Little older, but it may still work [url]http://www.flashdesignerzone.com/tutorials/t1047.php[/url]

Member Avatar for peter_budo
0
89
Member Avatar for dreamer14

I'm not sure what Firefox you using, but my one is up-to-date and I have no problem to see this effect. It is not exactly the programmable drop down as you tried to do but it does the job

Member Avatar for dreamer14
0
161
Member Avatar for jjaunich

This is not how it works, that you just say I have programs, have problems with them as they do not work properly and just drop code. Not to mention that you did not use code tags [noparse][code=Java]CODE HERE[/code][/noparse] State what sort of errors you getting, or what the program …

Member Avatar for verruckt24
0
152
Member Avatar for alpha_gamma

You did not configure your web.xml file something like [code=xml] <servlet> <servlet-name>LoginServlet</servlet-name> <servlet-class>LoginServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>LoginServlet</servlet-name> <url-pattern>/login</url-pattern> </servlet-mapping> [/code] Here is info in regards of web.xml [URL="http://edocs.beasys.com/wls/docs81/webapp/web_xml.html"]configuration[/URL] and [URL="http://edocs.beasys.com/wls/docs81/webapp/components.html#148787"]servlet mapping[/URL] with additional info

Member Avatar for peter_budo
0
146
Member Avatar for Dani

[QUOTE=niek_e;741244]ps. Don't know if it's something on my end, but when I disabled ad-block to view the entire site the complete site hung and I was unable to post. This wasn't an issue last week, but it could just be a glitch[/QUOTE] It's fine on my side, I can live …

Member Avatar for William Hemsworth
0
866
Member Avatar for neeraj_jaggimca

[QUOTE=verruckt24;778835]Do you take some pains to read about the forum where you post or you just start shooting ? If you would have cared to look around the forum you would have found that there was a forum for JSP too. Also there is an announcement encouraging the use of …

Member Avatar for verruckt24
-1
98
Member Avatar for proloyganguly
Member Avatar for stephen84s
0
127
Member Avatar for khalidmehmood

[QUOTE=khalidmehmood;778658]I have write the code that display just a hyperlink and these hyperlinks displayed in a table when i click on a link its displayed on another detailed page. but i have no idea how to implement the above task.[/QUOTE] Please provide code...

Member Avatar for peter_budo
0
91
Member Avatar for kevintse

If you want to see example of working chat system get copy of Java How to Program, 6th edition from Deitel and check out chap 24 at the end

Member Avatar for PoovenM
0
143
Member Avatar for IMtheBESTatJAVA

[code=Java] public class Collection { private Movie[] movieList; public Collection(){ loadData("../TMJamesBond.java/movies.txt"); } private void loadData(String fileName) { // REST OF THE CODE [/code] You seriously misunderstand the way how to defining method and passing parameters from "caller" method to "worker" method. Have look at [URL="http://java.sun.com/docs/books/tutorial/java/javaOO/index.html"]Classes and Objects[/URL] tutorial and take …

Member Avatar for peter_budo
0
851
Member Avatar for peter_budo

Last night (yes night, I'm in UK) I downloaded Windows 7 and got the activation key. After that I ran search & rescue mission to locate my 2nd HDD. Installation took just 20 min, that was little surprise. As I never "infested" my PC with Vista I'm left only with …

Member Avatar for jbennet
0
111
Member Avatar for manbazo

Look like somebody is trying to re-install XP without SP2 ;) [URL="http://www.microsoft.com/Downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en"]Microsoft .NET Framework Version 1.1 [/URL] The above download should not be necessary if you after fresh installation of OS update it with Service Pack 2

Member Avatar for jbennet
0
72
Member Avatar for bobolabobo

Question: Who is not looking for good job in these times of depression?

Member Avatar for jbennet
0
19
Member Avatar for mayfieldjr

The End.