5,031 Posted Topics
Re: You will need to explain more in detail any problems you facing as the instructions below the gallery sees to me straight forward... | |
Re: Read this [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] Same goes for your other posts... | |
Re: I think this question would be better of on Nokia or other mobile phone manufacturer forum then general Java forum. Have look here for start, Nokia's wiki for [URL="http://wiki.forum.nokia.com/index.php/AT_Commands"]AT Commands[/URL] and try to search their site for more info | |
Re: If you share with us how you[QUOTE]designed a function dat reads the values from the checked fields n stores them in an array of variables[/QUOTE] we may share with you how to pass it to next page | |
Re: [URL="http://developers.sun.com/mobility/midp/articles/tutorial2/"]Wireless Development Tutorial Part II[/URL] is good starting point for general MIDlet to HTTP connectivity (based upon servlets) it show you how you can send request to server, how it will received and replied to this request through servlet. From here it is only step to build your own application … | |
Re: If you did found solution, would you mind to share it with community? In doing so you may help somebody with similar problem in the future... | |
Re: It has nothing to do with that code you posted. Did you imported all libraries as required? In the future please post whole error not just part of it... | |
Re: [URL="http://developers.facebook.com/"]Facebook Devlopers[/URL] | |
| |
Re: @coolbuddy059 please provide your current code so we may have look at it and correct it if there is any issue PS:In the future please provide more info, if you wish to avoid general suggestions such as one by stephen. Secondly we have rule that says "[URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework … | |
Re: Get IP is not difficult you can see it from [URL="http://www.exampledepot.com/egs/java.net/Local.html"]this example[/URL]. Memory can be done as follows [code=Java] import java.lang.management.ManagementFactory; public class MemorySize { public static void main(String[] args){ com.sun.management.OperatingSystemMXBean mxbean = (com.sun.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); System.out.println(mxbean.getTotalPhysicalMemorySize() + " Bytes "); } }[/code] you can even get the size of the … | |
Re: This [URL="http://piliq.com/javafx/?page_id=192"]tutorial[/URL] is interesting | |
Re: Read this article [URL="http://www.javalobby.org/articles/java2exe/"]Java to EXE - Why, When, When Not and How[/URL] and decide if it is worth to do so | |
Re: Not sure, I never played with SIP. Have look at this examples from Nokia library [URL="http://library.forum.nokia.com/index.jsp?topic=/Java_Developers_Library/GUID-F9950891-758A-4D7C-BF0B-2BFE3DAEC5B0.html"]SIP API (JSR_180) - OriginatingInviteMIDlet and TerminatingInviteMIDlet[/URL], or have look on any of these links from [URL="http://www.google.co.uk/search?source=ig&hl=en&rlz=&=&q=midlet+sip+tutorial&btnG=Google+Search&meta=lr%3D"]search [/URL] | |
Re: Simple website is hardly a description of what you want to do. What about providing some extra info on your content for this website? | |
Re: There is a sticky post on top of this, JSP, forum section called [URL="http://www.daniweb.com/forums/thread141776.html"]JSP database connectivity according to Model View Controller (MVC) Model 2[/URL]. Have a look at it, it has lot of info plus links to various resources | |
Re: There is no file, I got following message "[I]Sorry, but you seem to have bumped into an invalid link. Looks like the file has already been deleted[/I]" | |
Re: [QUOTE=MidiMagic;828559]This is because target= is deprecated.[/QUOTE] What is new replacement of target then? Sorry I'm just plain lazy to look it up in documentation... | |
Re: check my other post [url]http://www.daniweb.com/techtalkforums/post269569-4.html[/url] | |
Re: I'm not sure on correctness of connection string as I so far did not need to connect to MS SQL so here are just general suggestions. Did you download Java driver for your database? ([URL="http://msdn.microsoft.com/en-us/data/aa937724.aspx"]Microsoft SQL Server JDBC Driver[/URL]) Did you add this driver to your project libraries? | |
Re: Make sure that your MySQL is actually externally accessible, many providers have it as local. Make sure that you have JConnector. If this still doesn't work don't forget to check servers logs. | |
Re: That is exactly what he got as naswer in JSP section , plus closer description and he still doesn't do it:@ | |
Re: I played around with your code and there is strange behaviour that I'm little baffled. I think that maybe somebody with depth knowledge of Java would be able to explain. From your short code it is not clear why ever would you like to change text inside TextBox (I never … | |
Re: Compress your NetBeans project into ZIP file add at it as attachment to your next post. I will try to have look at it as soon as possible. But from above messages it seems you are missing some declarations of various types. Look like you did not merge these two … | |
Re: Take your sunglasses off to see further... | |
Re: Sorry, do not expect people to go through your whole code 400lines is lots of reading. You better tell us which method should throw IOException so we can get on with it... | |
Re: NO, this is hardware and supplied drivers dependent. JME is just a "tool" to manipulate data send/received through Bluetooth. | |
Re: Little silly question. Did you try [icode]setMaximumSize(Dimension maximumSize)[/icode] on JPanel? | |
Re: Bellow last post there is in blue "Mark as Solved" | |
Re: Please explain your problem as the above message is meaningless. If you do not do so, your post would be removed a spam. Thank you for understanding | |
Re: You posted confusing question. First you say you have code with some errors and after that you request us to give you the code. So what it would be? PS: [URL="http://www.daniweb.com/forums/announcement9-2.html"]Read this[/URL] first before you say anything | |
Re: Connectivity between various BT devices is no problem, as long you are able to discover them, establish connection and if connection is approved you would be able to do variety of things depending on particular device capabilities. However, I'm not sure how you want to achieve positioning system as this … | |
Re: You completely misunderstand concept of JSP and servlet usage. Please read [URL="http://www.daniweb.com/forums/thread141776.html"]this tutorial[/URL] and sort your coding | |
Re: I have Java How to Program 6th edition and I really like it. It takes reader from simple basic of console programming to GUIs, drawing, databases, web development (6th edition compare to 7th is missing on AJAX, but I prefer 6th explanation on JSP and servlets), networking and introduction to … | |
Re: [QUOTE=apontutul;420990] C:\ProgramFiles\Java\jdk1.6.0_01\jre\lib\ext[/QUOTE] Do not do this, it is wrong advice and bad idea to mess up with Java installation directory. [QUOTE=abhi_iips;824086]how did u solve that, plz tell me. even m facing the same problem[/QUOTE] As you did not explain your problem I can give you general direction. Have look at … | |
Re: Have look at this post, should be helpful [url]http://www.daniweb.com/forums/thread141776.html[/url] | |
Re: [URL="http://www.daniweb.com/forums/announcement9-2.html"]Here[/URL] is the code | |
Re: [QUOTE=jhonny_86;820868]Hey! My problem is that I can't modify the "File name" label / text field programatically where you write the file name of your file in the JFileChooser. If I want to have "Write your file" written in the file name (by default) field how would I manage to do … | |
Re: Best IDE is everybody personal opinion (sometimes forced upon us by our teachers, course instructors or employer) often based on personal experience with IDE and also comparing it functionality with others if possible | |
Re: Would you mind to share this solution with us? | |
Re: What you retrieving from user is String. You need to convert this String to double type as follows [code=Java] double myDouble = Double.parseDouble(myString)[/code] Reference, [URL="http://java.sun.com/javase/6/docs/api/java/lang/Double.html#parseDouble(java.lang.String)"]here[/URL] | |
Re: [QUOTE=rohnni;820238]how to use code tags?[/QUOTE] As you been already instructed in PM's that you so blatantly ignored [noparse][code]YOUR CODE HERE[/code][/noparse] OR [noparse][code=php]YOUR CODE HERE[/code][/noparse] where php can be replaced by name of any programming language as necessary. | |
Re: You don't want to compare string in this case. You need to run regular expressions. Have look at this [URL="http://java.sun.com/docs/books/tutorial/essential/regex/"]Regular Expressions[/URL] tutorial from Sun | |
Re: 1. Use the charAt method to get the first character in firstName and store it in a variable called firstInitial (you will need to declare any variables that you use). You are expect to have variable firstName that should by of String type and you are supposed to declare character … | |
Re: Sun tutorial [URL="http://java.sun.com/docs/books/tutorial/2d/images/index.html"]Working with Images[/URL] should do that trick for you | |
Re: I do not want to sound rude, but you sound as classic example of drag&drop programmer that just got stack with his project because he is simply not able modify that crucial section of code need it. I start every one of my projects with class that holds only main() … | |
| |
Re: It is perfectly doable in Java, C#, C++ and all these can be easily moved to mobile platforms for deployment on embedded devices. Obviously there are also other languages you may want to use it, or perhaps new add-on technologies like JavaFX, Flex or Silverlight to give it glamours touch. | |
Re: So why don't you sign up for a course to this exam? As far I'm aware they always provide study materials. | |
Re: [QUOTE=stultuske;373142]and your question is???[/QUOTE] If you read it you will see it ;) [QUOTE=karthikRaju;373103]pb [I](translate as problem)[/I] is if the user click refresh and back button the time get reset to 60 seconds again in this way the user can extend their exam time[/QUOTE] There are some ways how to … |
The End.