5,031 Posted Topics
Re: 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 … | |
Re: 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] | |
Re: Upload it on the server,buy web hosting package, use company server if available or make your pc a hosting server | |
Re: Separate tables, it will make your life easier for the tracking purposes, also if you really want you can extend this beyond two tables... | |
Re: @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 … | |
Re: 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 … | |
Re: Bump, why don't you use any of free available blog solutions if you not able to produce it for your self? | |
Re: 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 | |
Re: @cpeeyush1 - JSP stands for Java Server Pages not Java Script. Post moved! | |
Re: 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 | |
Re: As per my other post i regards of key listener, please provide your code | |
Re: 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 | |
Re: [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 … | |
Re: 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 | |
Re: Take my advice and stop using Dreamweaver for PHP, get some proper IDE like Zend or even NetBeans | |
Re: What it is that you pursuit with this basic and general questions about variety of technologies across this forum? | |
Re: [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 ;) ) | |
Re: [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... | |
Re: 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 | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: [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] | |
Re: try iText library here are some [URL="http://itextdocs.lowagie.com/tutorial/"]examples[/URL] | |
Re: 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... | |
Re: 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): … | |
Re: [URL="http://tinyurl.com/57w6q3"]Let me help you [/URL], already first entry from ryangoodman solves your issue | |
Re: In the future please include error messages in your post... | |
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 … | |
Re: 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] | |
Re: [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 … | |
Re: 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 ! … | |
Re: 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 | |
Re: 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; … | |
Re: 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 … | |
Re: 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? | |
Re: 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 … | |
Re: Silly question, end of line [icode]System.Data.SqlClient.SqlException[/icode] what you got colon ":" or semicolon ";" ? | |
Re: 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? | |
Re: If you have something to say on topic as per PhiberOptik request please do so, however personal attacks will [B]not be tolerated[/B]. | |
Re: I hope that you will be able to do something with these adverts. The site looking like "cheap" forum with all of them around | |
Re: 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), … | |
Re: You better show some code which you work with, so we do not waste the time on re-creating wheel | |
Re: 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 … | |
Re: 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 … | |
Re: Aren't you forgetting something cohen? What about copyrights? | |
Re: That is what often happens if you not sitting on your back-side and waiting for others to solve your issue... Nicely done | |
Re: 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... |
The End.