5,031 Posted Topics
I know I should probably post this in Web Services of Web Development, but this may be beneficial to others that are trying to lean something about it too. I'm getting lot of strange behaviour from this assignment that at this point I'm willing to throw it away and never … | |
Re: You can actually open and edit sql file in any text editor. However you should preferably use either [URL="http://www.phpmyadmin.net/home_page/index.php"]phpMyAdmin[/URL](it does require installation of PHP on the machine plus MYSQL) or [URL="http://dev.mysql.com/downloads/gui-tools/5.0.html"]MySQL GUI Tools[/URL] (only MySQL need it) | |
Re: If you check [URL="http://www.daniweb.com/forums/thread141776.html"]this tutorial[/URL] you should be able to find answer to your question | |
Re: You better look into Java and Flex | |
Re: You could already answered your question if you checked API [URL="http://java.sun.com/javase/6/docs/api/java/net/URLConnection.html#getHeaderField(java.lang.String)"]URLConnection.getHeaderField(String name)[/URL] [B]getHeaderField[/B] public String getHeaderField(String name) Returns the value of the named header field. If called on a connection that sets the same header multiple times with possibly different values, only the last value is returned. Parameters: name - … | |
Re: I made few changes so have look at it [code=Java]import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.JButton; import javax.swing.JTextField; import java.text.DecimalFormat; public class MorgageCalculator extends JPanel{ //global variable private JComboBox IntRates; private JLabel prinlb, rateLb, termLb, paymtLb; private JButton calBtn, resetBtn; private JTextField prinTxFld, rateTxFld, termTxFld, monthlyPayment; private TextArea payAmortTA; … | |
Re: Hey where is Poken, Digimon and Dragon Ball ;) (just joking) Are there any sites with English version? ( I tried to learn Japanese, while studying Karate, but then I went for Taekwon-Do :D ) | |
Re: www1 would be somebodies way how to separate different servers with different sub domains | |
Re: There are two ways how to get about this problem 1. One general listener for associated components like now in your case ItemListern [code=Java] public void itemStateChanged(ItemEvent e) { if(e.getSource() == choice1) { if(choice1.getSelectedItem().equals("a")) { System.out.println("CORRECT!"); } else { System.out.println("WRONG!"); } choice1.setEnabled(false); } else if(e.getSource() == choice2) { if(choice2.getSelectedItem().equals("b")) { … | |
Re: Some Java-Oracle [URL="http://www.java2s.com/Code/Java/Database-SQL-JDBC/Oracle-JDBC.htm"]examples[/URL] | |
Re: I'm not gone give you solution as that is for you to figure out, so consider following: [list=1] [*] There are two attributes by which you can accompany/describe car maker which are....? [*] The car model can be described in similar way as car maker, plus you have to link … | |
Re: There are many examples, but what is point if you do not know Java Microedition There is a very good book Kicking Butt with MIDP and MSA by Jonathan Knudsen that I recommend to read anyone interested in JME development. Code examples are available on the [URL="http://kickbutt.jonathanknudsen.com/download.html"]book website[/URL], if you … | |
Re: Everything is by default align to the left so if you want to get in middle use centring options | |
Re: I recommend you read [URL="http://www.daniweb.com/forums/announcement9-2.html"]this thread[/URL] and correct your question as many members will become unhappy and angry with your blatant demand... | |
Re: Use JFrame to build what ever you need | |
Re: Welcome to daniweb. Please make new post in regards of your site review in [URL="http://www.daniweb.com/forums/forum55.html"]Website Reviews[/URL] section of this forum. PS: Please make sure you read our [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]forum policies[/URL] | |
Re: Ewn :-O is this so well hidden? I though top of the JSP section is enough :D [URL="http://www.daniweb.com/forums/thread141776.html"]JSP database connectivity according to Model View Controller (MVC) Model 2 [/URL] | |
Re: Forum search never hurts [url]http://www.daniweb.com/search/search.php?q=final+project+idea[/url] | |
![]() | Re: So that we do not repeat what you already have on the list can you say what you included or will include? |
Re: I should say that is punishment for you following a website that with poor/bad reputation. I'm sorry I do not have time to go over your code, but I will share few lines of my current project [code=Java] package bank; import javax.swing.JFrame; import javax.swing.SwingUtilities; import bank.gui.LoginFrame; /** * Created by … | |
Re: Please search the forum for resources. This question been asked many times... | |
I have two questions ( these may be very simple, but I'm concentrating on different things so I need somebody push me in right direction as not to waste time, bold said but that is reality) [LIST=1] [*]Passing object from top component to lower ones I have GUI where after … | |
Re: [QUOTE=verruckt24;766455]BTW what is steganography ?[/QUOTE] Didn't know either till I had look at google and wikipedia come up with some nice explanation [url]http://en.wikipedia.org/wiki/Steganography[/url], but that is just steganography as a term and some basics | |
Re: [QUOTE=Jenniferlinn;767789] # Rolling with Ruby on Rails - Curtis Hibbs of ONLamp.com offers his first excellent introduction to Ruby on Rails. This is the article that got me really excited about RoR. # Rolling with Ruby on Rails, Part 2 - The sequel to Curtis Hibbs excellent series of articles. … | |
Re: That is nice you been able to locate log, but you misinterpreted requirements. You need to post the section after start up once you attempt to insert something as that is causing trouble no start up | |
Re: Ahh your second introduction (1st [URL="http://www.daniweb.com/forums/thread142953.html"]here[/URL]), somebody really lilke it ;) | |
Re: For TidalWave you need to browse [URL="http://www.tidalwave.it/"]this website[/URL] as the group is working on various project and I have no idea which exact JAR you want. For drew it will be [URL="http://www.drewnoakes.com/code/exif/"]this site[/URL] as it is linked with TidalWave PS: Seriously you should do this simple searches for your self … | |
Re: You should create some sort of view (in JSP) where user can browse the whole web folder structure something like this [attach]8581[/attach] with some buttons on the bottom (I cut that off image would be to big) Then let the user mark the file/folders for deleting. User hit the delete … | |
Re: Do you have "package" declaration of your Item class? | |
Re: This works fine. [code=Java]import java.io.File; import java.io.IOException; /** * Delete a file from within Java * * @author Ian F. Darwin, http://www.darwinsys.com/ * @version $Id: Delete.java,v 1.5 2004/02/09 03:33:47 ian Exp $ */ public class Delete { public static void main(String[] argv) throws IOException { // Construct a File object … | |
Re: This is closely associated with development technology that you use (PHP/JSP/any form of ASP). For example in JSP when my page get processed with server side (servlet), I will make use of mail library, beside logging/storing submitted data I attach a method that will trigger mailing process with what ever … | |
Re: Would you mind to explain term "visual framework"? I never heard it before and quick google didn't bring too much... | |
Re: You forgot to mention what sort of guidance you looking for... For basic tutorials you can go [URL="http://w3schools.com/css/default.asp"]w3schools.com[/URL] or you may explore w3c [URL="http://www.w3.org/TR/CSS21/"]references[/URL] for CSS | |
Re: It is not such a difficult task. Create a constructor something like this [code]Test(String question, String answerA, String answerB, String answerC, String correctAnswer)[/code] Fill in data and put it in Array/ArrayList/Vector (something you familiar with). Your frame view can be split into three panels CountPanel (showing current position or question … | |
Re: [LIST=1] [*] [URL="http://java.sun.com/docs/books/tutorial/essential/io/"]Read/write file[/URL] [*] Database access [URL="http://java.sun.com/docs/books/tutorial/jdbc/index.html"]JDBC[/URL] [/LIST] | |
Re: [URL="http://homepage.mac.com/sroy/mrjadapter/#download"]Here[/URL] of course... | |
Re: Few tips PhiberOptik, try to locate some [URL="https://jugs.dev.java.net/sunjugprogram/events-visits.html"]Java User Group[/URL] (JUG or JAVAWUG), Java [URL="http://www.meetup.com/"]meet up[/URL] in your area or if you by any chance cellege/university student there is [URL="http://osum.sun.com/"]Open Source University Meetup[/URL] (OSUM) web group for students. These groups do lots of free events | |
Re: Josh also make sure that your database server is capable of external access, MySQL is often installed as local and cannot be accessed from outside world | |
Re: This is new area in mobile development and not so well know. You will need to do lot of search, if you university student check if your school have subscription with ACM portal, IEEE and similar, then with use of [url]http://scholar.google.co.uk/[/url] you may start search for academic materials and these … | |
Re: Are you sure that you asking your question in correct forum section? You talking about JavaScript in Java forum section. Just in case you do not know Java is not same as JavaScript PS: You will need to elaborate your question it does not really make too much sense. | |
Re: You need to reveal more of your current implementation or we will not able to help you ( some supporting code would more then welcome...) | |
Re: [QUOTE=Gabriel Arun.R;763084]i want to include next page option in my web application[/QUOTE] This doesn't make too much sense, please elaborate on what you want to do. | |
Re: Two comments 1) You may want to get latest [URL="http://dev.mysql.com/downloads/connector/j/5.1.html"]Connector/J 5.1[/URL] 2) Adding something to JDK or JRE installation is not the best thing to do and untidy, what if you update/reinstall Java. Better to keep separated folder with JAR files you often use and through your IDE to either … | |
Re: rude04 as Ezzaral suggested [URL="http://www.daniweb.com/forums/thread163569-2.html"]here[/URL], Acrobat Viewer bean will be the easiest solution based on your knowledge of Java | |
Re: If you actually try to explain your problem in proper manner people may listen to you. [LIST=1] [*] You started post with assumption there is no logout option. Please check attached screen shot for locating of this option[attach]8591[/attach] [*] I do not see reason why make this post with Dani's … | |
Re: You can have look on [URL="http://java.sun.com/javase/6/docs/api/java/net/package-frame.html"]java.net[/URL] package, but there is not too much to it | |
Re: [QUOTE=jbennet;762298][url]http://java.sun.com/docs/books/tutorial/[/url][/QUOTE] You should seriously check out Starting "Java" sticky post so you do not double post ;) | |
Re: How are we supposed to help you if we do not know your tales structures? |
The End.