1,730 Posted Topics
Hi Guys, I need to make remote app control via network where I can lock a computer and terminate all applications running. currently I don't have any technical direction on how to lock and terminate. I have no problem where to start on network and sockets! please point me to … | |
Hi, I'm beginning JDBC and I'm conversant in SQL. But I need to Connect to database and that where the problem lies. All I have done is adding mysql/j connector Jar to Netbeans project and wrote code below to test. It cannot connect to database. Also IDE throws error: [CODE=JAVA] … | |
Re: [CODE=JAVA] List<String> myList = new ArrayList<String>(); String myVar = "This is My String I want To Add"; myList.add(myVar) [/CODE] Check [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/util/ArrayList.html"]ArrayList [/URL]if that is what you want | |
Re: There is no "easy" language in general sense. If I know Java, it might be easy to me. That is quiet different from C++ maverick. Your level will determine "easy" language. if you are beginning, start with [URL="http://python.org"]python[/URL]. it is pretty fun! | |
Re: Why not use normal Java Compiled files even Jar files? Are you making an applet or just Desktop app? | |
Re: First use Programmer's tools (Notepad++, IDEs et al). Secondly use code tags And now back to your question: 1. Stop copy-paste and ask, try to understand what is happening 2. Explain what you want to accomplish/Learn 3. You have copied only part of the code, see "{... See More" in … | |
Re: And also this works but since it is assignment the use the second one to convince your prof. The reason is [URL="http://www.javabeat.net/qna/9-difference-between-list-and-arraylist-/"]here[/URL] [CODE=JAVA]ArrayList<Integer> numbers = new ArrayList<Integer>();[/CODE] [CODE=JAVA]List<Integer> numbers = new ArrayList<Integer>();[/CODE] | |
Hi friends, I need to work with an application that exposes SNMP interface. I have googled to check SNMP in general but I find it difficult a bit. I know in HTTP you send request and get response and with the two you can play around. I have never done … | |
Re: Hello, Which UML Diagramming software are you using? I can see beautiful Diagrams ;) Sorry for hijacking the thread for a minute :) | |
Hi buddies, I have a project that I need to be plugin based. I have never done that before and I have intermediate C++ knowledge. I have googled and found a lot of links including [URL="http://www.abstraction.net/ViewArticle.aspx?articleID=67"]this one[/URL]. It is helpful and I don't know if I understand well. Here is … | |
Re: Nope, you reversed things, while(1 > 10){ is false and the loop doesnt run. try something like [CODE=C++]cout<<"Please enter a number: "; cin >> num; while(num>count){ [/CODE] | |
Re: Get CodeLite or CodeBlocks which come bundled with MinGW. But since you dont need IDE just grab MinGW and Notepad++ and Have your Windows+R type cmd and there you go! | |
![]() | Re: And it is wonderful to say level of programming skills. @NormR1, Yes IDE changes the way you write code with things like: 1. Code beautification 2. Code organization 3. Code completion 4. Refactoring In fact they "quickilize" the Job ;) EDIT: Plus GUI in some IDEs like in Intellij Idea … |
I know it sounds stupid but I want to try this with the kind of for (not the norma for i=0 i<9; i++) but the other one with arraylist. is this possible? If yes please help me match data types Thanks [CODE=JAVA] import java.util.ArrayList; import java.util.List; /** * Created by … | |
Re: Here is my version of simplified answer: to devolop software like: 1. any OS - C/C++ 2. application software - Any Language Can do! 3. IDEs - Any language can do (CodeLite in C++, Wing IDE in Python, IntelliJ Idea in Java et al) 4. computer - Answered as no … | |
Re: If you read well the very site you got C::B have the forum for such question as this. Post there and they will help you! | |
Re: Good Job! But I think you can link wxWidgets to official wxWiki. Many people posts their examples and codes there :) | |
Hi again, After a defeat in Linux in other post (which I'm still finding a way), I have decided to give a shot in windows. However it produces DLL fine and I can use LoadLibrary(). I need it to produce .a file for static linking. How do i do it? … | |
Re: try [URL="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html"]Tiobe [/URL]though it is [URL="http://lambda-diode.com/programming/the-tiobe-index-is-meaningless"]not accurate[/URL] but it will give you at least starting point | |
In simple terms, to write windows DLL I have to define DllMain and do switch stuffs and then export functions using __declspec(dllexport). If I'm right the question comes what about linux? I want to write it in ubuntu box and I'm stucked! How do Coding DLLs differ from .SO? Thanks! | |
Re: I will be using it too and have started doing some tutorials. Here is quote from link below (User guide) [QUOTE="CI User Guide"]The main benefit of using this tag rather than hard coding your own HTML is that it permits your site to be more portable in the event your … | |
Re: I suggest you use GCC and [URL="http://codelite.org"]CodeLite[/URL] | |
Re: would you starighten your question? Do you need to get started to C++ and MySQL or MySQL++ wrapper? In case of the first you have at least three choices: MySQL Connector C++, MySQL++ or Pocco libraries with ODBC. For the latter, what do you want specifically? | |
Re: So contents should be in that language? Code the strings in the Indian language. Change your keyboard language. Or you mean multilanguage? | |
Re: +1 for wordpress! But is blogspot free? I caannot download it apart from using from their site :) | |
Re: Create Class Diagrams or whatever will help you to show needed Classes and methods. Then Go ahead and code those methods. Review your code, and make necessary changes until you think it is good now. Design->Code->Debug->Release That is how I undertake such tasks | |
Re: I guess if you don't know the keyword to use (ABCs) then google is useless ;) | |
I have seen a lot of ***unit: JUnit, PHPUnit et al. Bu what on earth are they for in practical? Why do we need it? Thanks! | |
Re: I use [URL="http://wxWidgets.org"]wxWidgets[/URL] and I encourage you to visit their home page and get the flavour. There is also very responsive forum and wonderful community! | |
Re: I think you should write one. Check [URL="http://www.cplusplus.com/reference/clibrary/cstring/strtok/"]tokenization[/URL] and then using basic C++ you can pack them in STL container EDIT: Ooops! I overlooked the other pages. | |
Re: Use revo uninstaller to remove it. Google it! | |
Re: The Ardav and Cherishea answers still concerns. But I would add that, if your friend have some knowledge on PHP and have guts to face the issue he can use some frameworks. I was looking at CodeIgniter video last night. It is really simplified even for non mega-PHP-know-how. If that … | |
Re: You are not the first to meet this wall see below links [url]http://stackoverflow.com/questions/2177994/php-prevent-from-removing-leading-zeros[/url] And comments [url]http://php.net/manual/en/function.str-pad.php[/url] [url]http://www.php.net/manual/en/function.number-format.php[/url] Tha only solution I see people claiming is using sprintf() and formatting! | |
Re: Didi you tried [URL="http://www.google.co.tz/search?q=adding+rows+to+JTable&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a&safe=active"]google[/URL]? It gives a lot of answers some are here below: [url]http://www.coderanch.com/t/345311/GUI/java/Adding-rows-Jtable[/url] [url]http://www.exampledepot.com/egs/javax.swing.table/AppendRow.html[/url] [url]http://www.roseindia.net/java/example/java/swing/InsertRows.shtml[/url] [url]http://www.velocityreviews.com/forums/t146928-jtable-add-row.html[/url] | |
Re: Try[URL="http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpServletResponse.html#sendRedirect%28java.lang.String%29"] response.sendRedirect()[/URL] instead. | |
Re: didn't you said decimals? Well that works but works for float too! If decimal is only you want then change float to int like. And using raw_input is better optin IMHO [CODE=python] x = int(raw_input('enter number: ')) [/CODE] | |
Re: Every day i learn py, I see it doing many things and from what I can see, it can do anything. Anyway i plan to do my massive code for my project sometime this year! For now there are some things I must learn!! Happy Py Programming! | |
Re: What about hello elohl and lehlo and elloh? I think you should check sequence too and compare not only number of letters but their sequence. This complicates it but makes it more accurate, that iselloh is closest to hello ;) | |
Re: If I use the resultset and connection and done with them in sing function then I would close them in finally body | |
Hi, I'm learning making CMS. As you can see, I cannot do everything from scratch. So I request anyone with code in his codebase that works fine on paging or knows practical code to point me. I want to page my articles once are more than let say 10 Cheers … | |
Re: Mh, I'm interested in know how although question was possibilty. Can you explain it Jwenting? | |
Re: I have looked at NJ but it is commercial. What do you recommend from Freeware/OSS camp? | |
Re: I think [URL="http://www.w3schools.com/sql/default.asp"]this[/URL] is best place to learn that. It have try yourself and some question. It is not very long though Check [URL="http://php.net/manual/en/function.mysql-query.php"]PHP Manual[/URL] which have examples and also little explanations [URL="http://www.w3schools.com/php/func_mysql_query.asp"]here[/URL] | |
Re: Dani, Why did you changed from old gold to this one? Colours are too strong IMHO and reading forum is harder. I agree on new features/Design (I have to use torch to search under bed where is "Post New Thread button") but you need to look if there is another … | |
I want to use JDBC with apache's pooling library. I can't find easy tutorial/example to follow. Please help me get it up and running. I have it downloaded and I watch at it puzzled :) | |
Re: Or my be save in database like SQLite3/MySQL | |
Hi there, Is there anyone here using NB platform to develop applications? Anyone using former Matisse GUI builder in NB 6.8? I can't see it in my IDE! | |
Re: If you are coding locally (I.e not for production but coding) I would prefer bundled server. I use Netbeans bundled with Tomcat (NB JEE edition). Try that if you want. I can start, stop and do many things from NB |
The End.