3,927 Posted Topics
Re: > Where would people ask about a challange/project that is posted in the thread? Would they have to open a new thread for example? Yes, they would need to start their own thread. If questions about the projects were allowed in the sticky thread, it would very quickly grow to … | |
Re: Because you seem unable to make your point without including intentionally offensive language. If you could act like an adult, perhaps your feedback would be taken seriously by others. | |
Re: [QUOTE=Renukavani;1171062]Thanks for all your reply[/QUOTE] So, just glancing at your sig, I wonder if you feel this thread is solved? | |
Re: If you simply search on "i_m_rude" you will have all the posts to peruse at your leisure. | |
Re: Really Dani? Did you not notice this sock-puppet failure didn't even bother to log in to a different account to answer his own question to promote his service? This is just spam failure. | |
Re: Read the forum [rules](http://www.daniweb.com/community/rules): - Do provide evidence of having done some work yourself if posting questions from assignments. | |
Re: > Later I will not need forums to learn. Cheating != learning Learning is encouraged here. | |
Re: Have you tried adding an extra pair of quotes around the string.format result? In Date('" + string.Format("yyyy,mm,dd", txtStart.Text) + "') I mostly work in Java, so I'm not as familiar with C# nuances, but it looks to me like your constructed string might not have sufficient quotes for the construrctor … | |
Re: Start checking braces. You have an unclosed block above your keyReleased() function declaration. | |
Re: And you showing the slightest bit of effort towards your own assignments would also be appreciated. Please read the [forum rules](http://www.daniweb.com/community/rules) about effort on homework assignments. | |
Re: I think you are looking for [SSCCE](http://sscce.org/)? | |
Re: I've heard rumors of such t-shirts, though I don't know anyone who has seen one.. but hey, I'm new here. Things like that are proabably for some ad vendor. | |
Re: You should not have a repaint() call in your paint() method. Also, you should really be overridding paintComponent() on a JPanel or something instead of paint() on a JFrame. If you really must override paint, make sure you call super.paint() first or other components in the frame won't render correctly. | |
Re: Read the [rules](http://www.daniweb.com/community/rules) about showing effort on homework. | |
Re: First, read the [rules](http://www.daniweb.com/community/rules) about showing effort on homework assignments. Then post what you have so far and specific questions about what you are having trouble with. | |
Re: [B]>Just replace simple types like int, long etc. by corresponding class types like Integer, Long etc. It really helps :-) [/B] Why on Earth did you resurrect this old thread to post such nonsense? | |
Re: >i got my degree last year and no one will higher me Learning to spell *hire* and using punctuation in a sentence might help. | |
Re: Please read the forum rules: > Do not ask anyone (member or moderator) for help by email or private message Keep it on the forums and show that you have made some effort if you are seeking homework help. | |
Re: Sure, you can connect to MySQL with JDBC. MySQL has info on their site: http://dev.mysql.com/usingmysql/java/ | |
Re: You are basically undoing your translation on line 7 by restoring the original transform. You are rotating the original context. | |
Re: TonyG, as a former two-pack-a-day smoker for 23 years, I can definitely relate to the difficulty of quitting. [Alan Carr's "Easy Way To Quit Smoking"](http://www.amazon.com/Allen-Carrs-Easyway-Stop-Smoking/dp/0615482155) got me off of them and I haven't touched a cigarrette in four years. I certainly can't say it will help everyone, but it did … | |
Re: Thank you for dragging up a four-year old thread to post a solution which, though it does work, is completely the wrong way to go about this. The correct answers are already posted above. | |
Re: Call the [dispose()](http://docs.oracle.com/javase/6/docs/api/java/awt/Window.html#dispose()) method on the frame you want to close. | |
Re: Try the [Java Media Framework](http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html) There is one example of using it with Swing [here](http://www.oracle.com/technetwork/java/javase/documentation/swingjmf-176877.html) in the [code samples section](http://www.oracle.com/technetwork/java/javase/index-140313.html). | |
Re: Also, read the forum rules regarding homework: Do provide evidence of having done some work yourself if posting questions from school or work assignments. You need to show a little effort here if you want help. Post what you have so far, your thoughts on how to proceed, parts that … | |
Re: Someone may be able to (note: I am not that person), though you will have to adhere to the forum policy of showing some effort yourself when asking about homework. Post what you have so far and specific questions about which parts are giving you trouble. | |
Re: This thread is just a mess of hijacks now. Closing. | |
Re: Use [H2](http://www.h2database.com/html/main.html) for your database. Problem solved. | |
Re: Unless you want to deal with a fixed span for the second dimension, use an ArrayList of ArrayLists. Also, don't ever use 'aa', 'bb', 'aaa' for names of anything. Name your classes and variables with descriptive, meaningful names and it will be much easier for you and anyone else reading … | |
Re: You could look into this: http://gdcm.sourceforge.net/ It has Java bindings. | |
Re: If you do find you need an installer, take a look at [IzPack](http://izpack.org/). | |
Re: "the instructor said that he knew for a fact that many schools admissions have access to a special type of Facebook admin rights where they can view profiles that are "locked" or "private"." And I think that's a load of crap. School admissions do not have some magical override on … | |
Re: [quote=classic123;459156]Hello How much time does it take to register a domain name? Thanks <snip>[/quote] Kind of an odd question given the advertising in your sig link. | |
Re: Somewhere you have a missing brace, paren, or semi-colon (or perhaps more than one). These should be rather simple structural syntax errors for you to locate. Just start looking backwards from the first line number the stack traces are reporting. Formatting the code better would also help spot such structural … | |
Re: [quote=christina>you;422807]But gay men do molest younger boys. I've heard and read about it so many times.[/quote] As do some straight men molest younger girls. Neither behavior is acceptable. | |
Re: [quote=twomers;451717]Where do all these lies about TV and the Internet come from?[/quote] Well, uh, hmm.... the internet... :P | |
Re: You can edit a post within thirty minutes of submission. Only moderators and admins can delete posts. | |
Re: Step one is Google. Step two is trying on your own. Step three is asking specific questions about the things you are having trouble with. | |
Re: That's not how things work around here. Post your code and specific questions. Do not ask for help via email. | |
Re: [URL="http://java.sun.com/javase/6/docs/api/javax/swing/table/AbstractTableModel.html#isCellEditable(int,%20int)"]AbstractTableModel.isCellEditable(int,int)[/URL] returns false by default, so you don't need to override it to get that behavior. The [URL="http://java.sun.com/javase/6/docs/api/javax/swing/table/DefaultTableModel.html#isCellEditable(int,%20int)"]DefaultTableModel implementation of that method[/URL] returns true by default, so that one must be overriden if you wish to make cells un-editable. (And the post you are responding to is over 3 years … | |
Re: NormR1 and Stultuske have it spot on. Closing this thread. | |
Re: I would assume your main file could simply check the availabilty of the dependencies and instantiate the correct version as needed. Import statements are fixed at compile time, but fully qualified class names are not. You can control concrete class references at run time. | |
Re: Beacuse that method signature does not exist. Check the API. You could use an Integer[] array and it would work. Edit: Bizarre crosspost with James. Thread had no reply when I posted. | |
Re: Well, I can. Solved is solved and you stated it to be so. | |
Re: [QUOTE=jbennet;573550]fave songs by metallica (best to worst, but bottom doesnt = crap, as they havent been shown) Highly reccomend listening to all of these. Welcome Home (sanitarium) Fade to black Battery Master of Puppets Ride the Lightning For whom the bell tolls And justice for all The thing that should … | |
Re: [QUOTE]Another option is Setting up a private WoW game server, Upload your game server to a host. Get your friends and friends of friends into the game. Check ingame lag against connection speed. Find the corelationship and tweak accordingly. So far private game servers have been hosted without much scientific … | |
|
The End.