5,031 Posted Topics

Member Avatar for k2k

I expect that argument [I]count[/I] is related to Member array [I]box[/I] and is holding the actual size of the array ( correct me if I'm wrong) Then you try to read file and store retrieved data in the box array. You try to insert first set of data into array …

Member Avatar for ~s.o.s~
0
71
Member Avatar for er.prajna

Simple query such as [code=sql]select * from TABLE_NAME:[/code] will retrieve data. I think you doing something somewhere along the way. Would you mind to post your code? PS: Please use code tags to keep your code formatted [B][noparse][code]YOUR CODE HERE[/code][/noparse][/B]

Member Avatar for sillyboy
0
106
Member Avatar for digits

Upload it on the server,buy web hosting package, use company server if available or make your pc a hosting server

Member Avatar for jbennet
0
83
Member Avatar for fishky

Separate tables, it will make your life easier for the tracking purposes, also if you really want you can extend this beyond two tables...

Member Avatar for fishky
0
122
Member Avatar for k2k

@k2k - when you buying web hosting the package says what it contains. These days only very basic and cheapest options do not include database in their offer. If you got one of these, then I have to say that unfortunately you made mistake as buying database server on its …

Member Avatar for peter_budo
0
135
Member Avatar for Sedrick

Acer is well known for these sort of problems with laptop screens, beside hinges (these tend to crack and eventually break down very quickly). You will need to sent your laptop back to Acer for repair as they will swap the whole screen for you. If the laptop is older …

Member Avatar for peter_budo
0
66
Member Avatar for blackbox2342

Bump, why don't you use any of free available blog solutions if you not able to produce it for your self?

Member Avatar for blackbox2342
0
117
Member Avatar for Ninad16

There are no personal attacks, as far I can see s.o.s and Ezzaral stated obvious they you lack any interest in personal development as you just forsaken basic search of available resources of Sun for example ([URL="http://www.j2ee.me/docs/books/tutorial/java/IandI/abstract.html"]abstract[/URL] and [URL="http://java.sun.com/docs/books/tutorial/java/javaOO/classvars.html"]static[/URL]) plus many others

Member Avatar for ~s.o.s~
0
199
Member Avatar for cpeeyush1
Member Avatar for essential
1
138
Member Avatar for drjay1627

You can add another key listener to window, if you not sure how to do it just post your code so we can see what is going on to help you fast

Member Avatar for Ezzaral
0
132
Member Avatar for drjay1627

As per my other post i regards of key listener, please provide your code

Member Avatar for drjay1627
0
86
Member Avatar for dreamer14

Have look at [URL="http://72.5.124.55/docs/books/tutorial/uiswing/components/filechooser.html"]this[/URL], it is related to JFileChooser but the file filters option can be easily used in servlet

Member Avatar for dreamer14
0
102
Member Avatar for lepetitevoddy

[code] public static boolean question(){ int a= (int)(Math.random()*(10)+1); int b=(int)(Math.random()*(10)+1); char op; int ka; String kidsanswer; op = get_choice(); kidsanswer= JOptionPane.showInputDialog(a+op+b+"=?"); ka= Integer.parseInt( kidsanswer); int compuanswer; switch (op){ case '+': compuanswer= a+b; boolean answer; if (compuanswer==ka){ JOptionPane.showMessageDialog(null, "Well Done!"); return true;} else if (compuanswer!=ka){ JOptionPane.showMessageDialog(null, "Wrong, sucker!" + "The correct …

Member Avatar for ~s.o.s~
0
268
Member Avatar for cVz

Exact procedure depends on the programming language, but idea is same. Collect your results from DB, store it in Vector/Array/List and pass it to your application GUI to display in combo box or similar

Member Avatar for peter_budo
0
75
Member Avatar for vijaysoft1
Member Avatar for peter_budo
0
57
Member Avatar for Ninad16
Re: IIS

What it is that you pursuit with this basic and general questions about variety of technologies across this forum?

Member Avatar for peter_budo
0
61
Member Avatar for ajithraj

[QUOTE=ajithraj;759284]no its not from roseIndia... sorry for "jsp"...and thanks for all the help given........Thank you alll....[/QUOTE] Are you sure of that? It does really look like that "[URL="http://www.roseindia.net/jsp/file_upload/Sinle_upload.xhtml.shtml"]crap[/URL]" (sorry for my French ;) )

Member Avatar for peter_budo
0
363
Member Avatar for abcd_nima

[URL="http://www.daniweb.com/forums/thread99132.html"]Starting "Java" [Java tutorials / resources / faq][/URL] on top of this Java forum contains links and various recommendations from number of our members. Best place to start...

Member Avatar for peter_budo
0
96
Member Avatar for abadi11

I think problem is in path declaration if you used absolute path like [icode]C:/My Website/img/img1.jpg[/icode], you should replace it with relative coding such as [icode]img/img1.jpg[/icode] where HTML document is in "My Website" folder

Member Avatar for ccube921
0
71
Member Avatar for paslanmaz

I think you just made a mistake to posting this sort of question. Both sides Java and .NET will claim their solution is better. There are pron and cons on both sides I have no idea what you trying to accomplish therefore you should go with technology you are more …

Member Avatar for binoj_daniel
0
135
Member Avatar for noman78

This post is nearly 2 year old! While we like to see a solution to the problem, we rather prefer solution to be explained in the post and not to be redirected to members personal website. So please do not post links to your site and rather use copy&paste in …

Member Avatar for peter_budo
0
83
Member Avatar for suvirj

There is a second possibility that suvirj uses a book that from chapter section to another chapter section change code little and he would like to keep original code, but on other hand he also want to apply changes as suggested in new exercises. In this case create new project …

Member Avatar for peter_budo
0
129
Member Avatar for IMtheBESTatJAVA

[QUOTE=IMtheBESTatJAVA;749395] Update: Now I get an error of ".class expected" for: [CODE]if(int input = 0);[/CODE][/QUOTE] [QUOTE=stultuske;749402]that's to be expected, remove the ;[/QUOTE] Wrong answer, the if statement is wrong! You want to check the statement not assign value... [code=java]if(input == 0){ // Then something }[/code]

Member Avatar for verruckt24
0
298
Member Avatar for localp

try iText library here are some [URL="http://itextdocs.lowagie.com/tutorial/"]examples[/URL]

Member Avatar for stephen84s
0
536
Member Avatar for bahr_alhalak

This is not 24/7 service "my friend"! time is [URL="http://dev.mysql.com/doc/refman/5.0/en/datetime.html"]DATETIME[/URL] in MySQL, simple google search would sort such request...

Member Avatar for bahr_alhalak
0
71
Member Avatar for programmingme

your while loop for seats doesn't work properly you should not use mathematical comparison on characters or strings. You can use either every present [equals()](http://java.sun.com/javase/6/docs/api/java/lang/Character.html#equals(java.lang.Object)) method or [compareTo()](http://java.sun.com/javase/6/docs/api/java/lang/Character.html#compareTo(java.lang.Character)). I used equals and little redo row section //All the code till line 177 while(!rowChecking(columnNo)) { System.out.print("Enter seat letter (A - F): …

Member Avatar for programmingme
0
145
Member Avatar for freshface001

[URL="http://tinyurl.com/57w6q3"]Let me help you [/URL], already first entry from ryangoodman solves your issue

Member Avatar for peter_budo
0
79
Member Avatar for ezkonekgal
Member Avatar for BestJewSinceJC
0
2K
Member Avatar for peter_budo

I tried to follow [url=http://www.netbeans.org/kb/61/websvc/gs-axis.html]Creating Apache Axis2 Web Services on NetBeans IDE[/url]. It worked for me till the point of [url=http://www.netbeans.org/kb/61/websvc/gs-axis.html#deploy_axis]deploying an Axis2 web service to the server[/url]. Once I select [b]Test Operation in Browser[/b] it does give me following Warning [code]Unable to open web service tester page: http://localhost:8080/axis2/services/HelloAxisWorld/hello?name=XYZ Make …

0
98
Member Avatar for zikojam
Member Avatar for Narayan15

In your project you need to include classpath to this library from your IDE, for example in NetBeans you can do as described [URL="http://www.daniweb.com/forums/post751578-4.html"]here[/URL]

Member Avatar for ~s.o.s~
0
324
Member Avatar for Aamit

[QUOTE=masijade;755015]What about it? This is [i]not[/i] an SQL forum, and your's is an SQL question. As I have already said [b][i]Find an SQL Forum[/i][/b].[/QUOTE] Well, our "friend" Aamit took your advice literally and posted in 4 out 5 options of Database section, on top of that he also posted in …

Member Avatar for masijade
-1
307
Member Avatar for navinlearns
Member Avatar for Srinivas14

Please use search option to find various discussions on this topic. Nobody will code it for you, you do the coding we may help you to fix some details or tweak it little PS: Why didn't you continue with original post here [url]http://www.daniweb.com/forums/thread160507.html[/url] ? Forum flooding is not welcomed ! …

Member Avatar for stephen84s
0
102
Member Avatar for PhiberOptik

Try to apply [URL="http://java.sun.com/javase/6/docs/api/javax/swing/border/BevelBorder.html"]BevelBorder[/URL] and [URL="http://java.sun.com/javase/6/docs/api/javax/swing/border/SoftBevelBorder.html"]SoftBevelBorder[/URL] to buttons, this should give them some sort of 3d look

Member Avatar for PhiberOptik
0
322
Member Avatar for clueless101

You been on right track, but you just forgot to set counter after each while loop back to zero. Because of that capital letters and digit is never checked. Also you may consider something like this [code=java]import javax.swing.*; public class PasswordCheck { public static void main(String[] args) { String input; …

Member Avatar for clueless101
0
129
Member Avatar for leox99

Guys, lately many of you become more jabbing, pushing and aggressive in the responds to most of the questions asked on the forum specially if the request [LIST] [*]list homework in copy&paste style [*]no coding [*]or incoherent requests [/LIST] I do understand that you maybe tired of responding to trivial …

Member Avatar for stultuske
0
93
Member Avatar for amrita.r

This is correct procedure. Can you imagine how much time would by consumed in either searching for empty position or moving data up to fill empty position in database with millions of records?

Member Avatar for debasisdas
0
90
Member Avatar for babusek

I think he is trying to create calendar object as we know from websites. Unfortunately for you babusek there is no such pre-made component in AWT or Swing. You best chances are to deploy 3 combo boxes and after user selection read values of selected indexes. PS: I would arrange …

Member Avatar for masijade
0
154
Member Avatar for Traicey

Silly question, end of line [icode]System.Data.SqlClient.SqlException[/icode] what you got colon ":" or semicolon ";" ?

Member Avatar for Kusno
0
119
Member Avatar for nyalex

He better explain what he is looking for as that incredible project can have de speakable/ugly/terrible GUI. Why to pass 10 elements of array to same label?

Member Avatar for nyalex
0
296
Member Avatar for PhiberOptik

If you have something to say on topic as per PhiberOptik request please do so, however personal attacks will [B]not be tolerated[/B].

Member Avatar for PhiberOptik
0
132
Member Avatar for Thinka

I hope that you will be able to do something with these adverts. The site looking like "cheap" forum with all of them around

Member Avatar for Dani
0
159
Member Avatar for Venks

You can use either Record Management System (RMS), go for on-device file storage or use PIM API if data to be stred are relevant to ContactList or EventList. Resources of interest [URL="http://developers.sun.com/mobility/apis/articles/pim/index.html"]Getting Started With the PIM APIs[/URL], book Kicking Butt with MIDP and MSA (sources files for [URL="http://kickbutt.jonathanknudsen.com/download.html"]download[/URL] chapter 14-16), …

Member Avatar for peter_budo
0
107
Member Avatar for jemu

You better show some code which you work with, so we do not waste the time on re-creating wheel

Member Avatar for peter_budo
0
32
Member Avatar for dips255

Of course! Take for example simple search process to check how many people earn between 20k-25k. With file approach you need to read the file, temporary store it somewhere, close the file, you need to iterate trough to find results and then do what ever you want. Where in case …

Member Avatar for dips255
0
148
Member Avatar for Achupa

Small recommendation for the future, use full names instead of 1-2 characters names. Once you start working on real projects and have to return to something you designed year ago for example you will have hard time to work out connections between tables. Isn't address_id easier to read then a_id …

Member Avatar for verruckt24
0
192
Member Avatar for yenyen
Member Avatar for PhiberOptik

That is what often happens if you not sitting on your back-side and waiting for others to solve your issue... Nicely done

Member Avatar for PhiberOptik
0
222
Member Avatar for eggsandspamm

Yes, Java is able to communicate with large number of databases. As PhiberOptik pointed out for this you will also need driver Connector/J. I will recommend that you read [URL="http://java.sun.com/docs/books/tutorial/jdbc/"]JDBC Database Access[/URL] tutorial by Sun for starter...

Member Avatar for peter_budo
0
123

The End.