5,031 Posted Topics
Re: I do not want to be sarcastic, but reply such "welcome to the world of internet" would be in place. Nokia as number of others mobile manufacturers are running their own developer/development sub sites where you can find their custom tools and often helpful tutorials/tips/forums. If you had look at … | |
Re: Points of interest to read through [URL="http://googlegeodevelopers.blogspot.com/2009/08/java-support-and-docs-for-maps-data-api.html"]Java Support and Docs for the Maps Data API[/URL], interesting tutorial [URL="http://today.java.net/pub/a/today/2007/10/30/building-maps-into-swing-app-with-jxmapviewer.html"]Building Maps into Your Swing Application with the JXMapViewer[/URL], [URL="http://www.brantb.com/2007/12/java-and-google-earth-com-api.html"]Java and the Google Earth COM API[/URL] and [URL="http://code.google.com/p/geo-maps/"]Map widgets in Java Swing based on Geotools and uDig Libraries[/URL]. | |
Re: I can give quick solution, but that will not help you in your learning process. Instead you gone tell me what such process have to in order to compare two arrays. Just plane words no need for code yet | |
Re: [QUOTE=nagwani25;999422]hi karthik , This is rashmi i have seen ur post regarding sms web application .I m also looking for the same sort of application if u have completed ur project can u guide me how to do this. Its really urgent ,Hope to see a reply from u soon … | |
Re: Correct me if I'm wrong but these pop-ups been done through Java Script, therefore you should ask this question in Java Script forum. If you want to move this post to other section let me know | |
Re: Dean if you actually looked at the top of this section you would have found [URL="http://www.daniweb.com/software-development/mobile-development/threads/302854/1299837#post1299837"]Starting mobile development [SDK / tutorials / resources / faq][/URL] that also holds tops for starting with Android | |
Re: The above question doesn't really specifies what you trying to achieve, but JFileChooser is something you should have look at, here is [URL="http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html"]tutorial[/URL]. If this is not what you looking for, well then you need to provide more in detail description of you trying to achieve. | |
Re: Instead of using array where you have to know size or provide elements from which it have to be created you can use other collections like List, Vector, ArrayList that change their size as you add or remove elements | |
Re: Beside reading on [URL="http://code.google.com/apis/maps/documentation/javascript/"]Google Maps JavaScript API V3[/URL] for general understanding how maps works you want to look at [URL="http://code.google.com/apis/maps/documentation/directions/"]The Google Directions API[/URL]. Depending on programming language to be used, you may actually find some libraries that makes it easier to communicate with Google Maps through custom API in the … | |
Re: What did you do with it beside executing "exe" package and installing it? | |
Re: Is there really a need for iterator? You can loop through list as [code=java] List<PersonalData> personalDataList = new ArrayList<PersonalData>(); //list populated by "add" or directly from DB results for(PersonalData personalData : personalDataList){ personalData.getName(); personalData.getAddress(); }[/code] As why no data visible on page? Difficult to say since you posted only few … | |
Re: You should at [url]http://aglets.sourceforge.net/old_site/downloads.html[/url] | |
Re: Android for the win ! ! ! From what I can see on current London job market Android developers are sought out/on demand. However often you will see that they are expected to have knowledge of other environments iPhone/BlackBerry/Symbian/plain JME | |
Re: It is know bug [url]http://netbeans.org/projects/ide/lists/issues/archive/2011-02/message/411[/url]. Why aren't you using stable version? | |
Re: Here is the [URL="http://www.daniweb.com/forums/announcement8-2.html"]code for your GUI[/URL] | |
Re: Any specific reason you want to use JUnit 3 instead of JUnit 4? As for JUnit 4 test can be simple as [code] public class SphereTest{ @Test public void testSphereVolume(){ assertEquals(33.5 , new Sphere().sphereVolume(5)); } @Test public void testSphereSurface(){ assertEquals(53.5 , new Sphere().sphereSurface(5)); } }[/code] | |
Re: Thread locked as it is duplication of another thread. If you wish to follow discussion please check [URL="http://www.daniweb.com/software-development/mobile-development/threads/354955"]here[/URL] | |
| |
Re: You can even create your own encryption/decryption algorithm. Put all the characters which are allowed to be in username & password into array. Pickup some number for example 4 and if you get "a" in username/password replace it with "e" and you have your algorithm. But yes there is plenty … | |
![]() | Re: You are looking at it from wrong point, plus not giving full problem description. From what I seen in your code I assume that you are trying to do examination system. So what we know is that in database we have set or CORRECT_ANSWERS and we need to check them … ![]() |
Re: [QUOTE=Jaseem Ahmed;1513665]and debis ur replies never helped me, so plzzz avoid replying my threads... thank u very much...[/QUOTE] 1. Please start using proper words, "ur, plzz, u" are not you should know better then after the number of posts you made 2. If the replies are not helpful to you … | |
Re: 1. Next time make sure you post in correct section, in we have sub section called JSP(Java Server Pages) that holds info on Java web development 2. To call tomcat from other computer then it is installed you need to use the IP of the computer installed, port number if … | |
Re: Why not use [URL="http://www.adobe.com/devnet/flex/flex_java.html"]Flex[/URL]? | |
Re: I have no idea why your Eclipse is so slow that is not normal. If you want you can try [URL="http://www.jetbrains.com/idea/download/index.html"]IntelliJ Idea 10 Community Edition[/URL] that has now support for Android. As for what version of Java you should use, it doesn't matter. PS: Next time please do not create … | |
Re: Just quick pseudo-code [code] public void actionPerfomed if resize myFrame.setSize(new Dimension(300, 300)) else if changeFont myFrame.setFont(new Font( "Serif", Font.BOLD, 20 )); [/code] you should get idea of it | |
Re: Quick google search for "jme get imei" and you would have found [URL="http://mobilepit.com/10/how-to-get-imei-number-in-j2me-javame.html"]this article[/URL] with references for nokia, sony ericsson, motorola, samsung and siemens | |
Re: So why not share your solution? You may help somebody in future with same/similar problem | |
Re: A) Setup proper network with access privileges B) Use share directory provided by 3rd party something like Dropbox | |
Re: All the links you provided are useless since they do not explain how the problem was tackled and only link compiled application on not source code on which one may have looked to see how it was done. | |
Re: @imso please do not post in the future @abelLazm as I mentioned in previous thread reply your link is pointless as it is compiled application. Secondly that second link on file extension change is just wast of time as it doesn't help at all... | |
Re: @gazzy1 1. Start using code tags as [noparse][code]YOUR CODE HERE[/code][/noparse] 2. Make sure you post in proper section, not posting PHP stuff in JSP(Java Server Section) or JS(Java Script) in PHP section or all accumulated infractions will get your account banned... | |
Re: Best solution in this case would be to get [URL="http://books.google.com/books?id=15wp6fmAy4sC&lpg=PP1&dq=head%20first%20servlets%20and%20jsp&pg=PP1#v=onepage&q&f=false"]Head First Servlet & JSP[/URL] and read it | |
Re: 1. Do not double post (double in Java section deleted) 2. Post moved from C# to IT Professionals' Lounge as not to spark hate replies from either group. 3. Based on that "limited" to none requirements nobody can give advice 4. Should do research first to see what is available, … | |
Re: Thread closed please follow discussion here [url]http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/353298/1501770[/url] | |
Re: Thread closed. Please follow discussion here [url]http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/353298/1501770[/url] | |
Re: Would you mind to share it? You may possibly help somebody in the future with same/similar issue.... | |
Re: There is a nice article already suggested few times, if you actually searched forum before posting, called [URL="http://www.developer.com/java/other/article.php/3696226/Implementing-Search-Result-Pagination-in-a-Web-Application.htm"]Implementing Search Result Pagination in a Web Application[/URL] Happy reading... | |
Re: 1. Please start using code tags as [noparse][code]YOUR CODE HERE[/code][/noparse] 2. Make sure you do not double post, if you have slow internet connection wait for reply that your post was published and do not submit it for second time Or you will get plenty of infractions and will be … | |
Re: You almost there [code] for (int counter=0; counter<20; counter++) { int x = 1+ randomNumber.nextInt(10); if(even.evenNumber(x)) System.out.println("Number is even"); else System.out.println("Number is odd"); }[/code] | |
Re: You may want to keep results of each flip in a collection(array, vector, list). Then ad the end you call a method to get print of how many heads and tails and forward this collection as argument for method. To get numbers, create another method that will get collection as … | |
Re: 1. getQuestion is part of your constructor GameScreen, it should be outside 2. getQuestion is missing round barckets | |
Re: James was faster... BTW why you messing with drap and drop if you do not know basics? Your teacher will easily discover you used IDE to create application and you may loose marks because of it... | |
Re: @ZeroCul you are just 2 years behind with your reply. Congratz on reopening old dusted record... | |
Re: As JavaEE5 documentation states in HttpServlet class description [URL="http://download.oracle.com/javaee/5/api/javax/servlet/http/HttpServlet.html#doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)"]doGet()[/URL][quote]Called by the server (via the service method) to allow a servlet to handle a GET request. Overriding this method to support a GET request also automatically supports an HTTP HEAD request. A HEAD request is a GET request that returns … | |
Re: You failed to specify what JSP or better said what functionality you want that may require use of JSP... | |
Re: If the "relative path" is relative to system and not to your web application then your assumption is right. Are these images part of your application structure, or you pulling them form different location on your system? | |
Re: I do not see there "simple question". What I do see there is copy & paste of your school assignment. For more details how to solve it [URL="http://www.daniweb.com/forums/announcement8-2.html"]read this[/URL] | |
Re: You cannot, because you need WTK compiler | |
Re: @rakesh74888 not 24/7 coding service @digital-ether no offence but you should know better then suggest creating new thread (Keep It Organized - Do not post the same question multiple times). Either use "Mark Bad Post" so mod take care of moving it, or do it your self since you are … |
The End.