1,730 Posted Topics
Re: why no write Java class and call it object there? [CODE=JAVA]class HelpJava{ public void printMe(String name, PrintWriter out){ out.print('Hello: '+name); } }[/CODE] [CODE=JSP]<% PrintWriter out = request.getPrintWriter(); HelpJava obj = new HelpJava(); obj.printMe("Stefano", out); %>[/CODE] | |
Re: Hi, look at [URL="http://un4seen.com"]bass library[/URL]. It is the best out there for free project. you need a good buky for commercial though! Otherwise, look at given library for example libmad for mp3 et al | |
Hi, I'm trying to develop application with separation of UI/BL/DAL. I have read a lot of theories and I'm trying to develop a blue print for my application. I have no problem in UI thing. But I have problem with designing Data Access Layer. It will basically be a SQLite … | |
Re: what about destroy the active session? To log user out will depend on login mechanism | |
Re: Here is summary of what happens. Client (mostly web browser) sends HTTP request to the server. The server processes the request with right file and then returns a response in terms of HTML or JSON et al. So the Client doesn't know about server code and server about client. They … | |
Re: Must it be Jsp? If no then go for [URL="http://wb.mysql.com/"]MySQL workbench[/URL]. It is great app for design, Administration and Querying MySQL database. If it must be JSP then learn [URL="http://www.oracle.com/technetwork/java/overview-141217.html"]JDBC[/URL]. | |
Re: If boost chokes you try [URL="http://pocoproject.org/"]POCO[/URL] I think the [URL="http://pocoproject.org/documentation/index.html"]docs [/URL]are reasonable and forum is there for asking questions | |
Re: I second Bruce's Thinking in C++. I have read Java counterpart and I can say he is good writer. Apart from that check the links: [url]http://www.cprogramming.com[/url] [url]http://www.cprogramming.com/tutorial.html[/url] [url]http://www.cplusplus.com/[/url] [url]http://www.cplusplus.com/doc/tutorial/[/url] | |
Re: [URL="http://php.net/manual/en/index.php"]PHP.Net[/URL] Have all you have asked for | |
Re: [QUOTE=Ancient Dragon;1318907] 2) Make one of them a DLL[/QUOTE] And it must be C DLL as C++ DLL consists of name mangling which differ among compilers. Or you can export class using C-functions | |
Re: [QUOTE=kazkikay12;1318621]but i used c++ and its work[/QUOTE] printf and scanf aren't c++ but C. that said, here are some links to push you: [url]http://www.daniweb.com/forums/thread10660.html[/url] [url]http://www.daniweb.com/forums/thread136139.html[/url] [url]http://www.daniweb.com/code/snippet216707.html[/url] Are you using Borland Old compiler? ;) | |
Re: [QUOTE=shahzaib g;1318748][I]plz tell me how can i make software of calculator in c++. from smartboy shahzaib[/I][/QUOTE] Ego doesn't help. Your own post proves otherwise. Smart people cannot be anybody because only nobody is smart enough and wait a minute you are somebody! Stop arrogance and do something | |
Re: Honestly, I have not understood exactly what you want | |
| |
Re: No way you can do this with traditional PHP. Only way is AJAX. In that way you can check the variables and report error without moving. I will suggest you check [URL="http://jquery.com"]JQuery [/URL]JS library with simplified AJAX calls | |
Re: [CODE=PHP]$q="select all from news where author id='$id'";[/CODE] Whuch Kind of database is his? AFAIK, it should go like this: [CODE=PHP]$q="SELECT * FROM news WHERE author id='$id'"[/CODE] | |
Re: [QUOTE=volvo877;1318820]You can, but you need function woth two parameters: [CODE=cpp]friend time operator + (time& left, time& right);[/CODE][/QUOTE] AFAIK, any function can be declared friend function. Here are some links on the two subjects: [url]http://www.ee.ed.ac.uk/~sasg/Computers/Prog/Cpp/cpp6.html[/url] [url]http://learning-computer-programming.blogspot.com/2007/08/operator-overloading-using-friend.html[/url] | |
Re: So where is your code and How do you do that? I would refrain from Long dead IDE like DevCPP and get decent one like C::B or Codelite. I use CodeLite Try [URL="http://opencv.willowgarage.com/documentation/cpp/introduction.html"]this [/URL]example and see if it compiles [CODE=C++]// // Simple retro-style photo effect done by adding noise to … | |
Re: [QUOTE=danny2000;1308260]I'm having trouble even beginning to GUI program in C++. I'm using DevC++ with WX widgets and I've downloaded the DevPac. I really need something to help me understand the basics. For example. How would one go about creating a project and programming a GUI applicatin. Also, when you compile … | |
Re: [QUOTE=newbie_to_cpp;1318407]Who make better programmers? Men or Women? :) Just curious coz all around the world, in academics, women surpass men. But in this field, i guess its men :). What you say? I am a male by the way![/QUOTE] We have at least Narue(female) and Ancient Dragon (Male) and they … | |
Re: [QUOTE=Xufyan;1316909]MY question is, like we do for integer and float, Integer.parseInt(args[0]) Float.parseFloat(args[1]) How do we take character input from command line ?[/QUOTE] Those are methods to convert stuffs since command args are passed as Strings (i.e String[]). So to get a string it is as easy as [CODE=JAVA]String argX = … | |
Re: Check [URL="http://www.w3schools.com/php/default.asp"]W3school[/URL] | |
Hi, I have abstract base class with some kids deriving from it. I want its kids to be concrete classes But I don't want to implement the all methods of the class. I'm trying to find a trick to go around doing this and I'm running out of thought on … | |
Re: Brush yourself with tutorials [url]http://www.css-help.com/css-mediaprint.htm[/url] [url]http://webdesign.about.com/cs/css/a/aa042103a.htm[/url] | |
Re: find a way to re-install it! Yo didn't said if you use KDE or Gnome or XFCE Check these links to get starting point [url]http://www.labtestproject.com/using_linux/disable_networkmanager_on_linux_fedora_10[/url] [url]http://fedoramobile.org/fc-wireless/network-manager/[/url] [url]http://www.linuxquestions.org/questions/linux-newbie-8/fedora-11-networkmanager-controlled-lan-disabled-i-have-to-remove-it-every-time-737008/[/url] | |
Re: looks interesting! I have downloaded and will check it Thanks ardav ![]() | |
Re: [QUOTE=ceeandcee;1314792]Thank you guys. I am learning and I appreciate your help. Sometimes the challenge is to know what to even call your search in Google. I got #1 of my question to work, but I am still struggling with #2. I have tried many things but here is what I … | |
Re: What about [URL="http://www.tamingthebeast.net/articles3/spiders-301-redirect.htm"]this [/URL]tutorial? Or even [URL="http://www.askdavetaylor.com/how_do_i_add_a_301_redirect_to_my_apache_httpdconf.html"]this one[/URL]? | |
Re: [QUOTE=badboy11;1316877]There are two ways I know you can go about using exception handling to solve your question. The first way is the use if simple if-statement: [CODE] for ( int i=0; i<max; ++i ) { if (! (i < 0) || (i >= max) ) { cout << "Data: " … ![]() | |
Re: have you seen [URL="http://www.underbit.com/products/mad/"]libmad[/URL]? | |
When you think of Media player, you need beautiful look n feel. I know GIMP can do alot. But Skin in wxPthon? I don't think it is possible. So I thought and thought then I came with this Idea. Create panel with Image as background and then Load wxBitmaps and … | |
Re: not mega-maverick but may I suggest Code Igniter. It have a lot of classes coded by experts for you to use. You can use it with Ajax calls too | |
Re: Don't bother of Ajax Code with pure JS. There are a lot of libraries out there that simplify JS. So Unless you are learning JS, pick one and use the simplified AJAX calls. My favo is [URL="http://docs.jquery.com/Tutorials"]JQuery[/URL] | |
Re: Don't use database/table name in displaying result [CODE=PHP] while($rows = pg_fetch_all($myresult)) { echo "<pre>"; echo "<div>".$rows['timestamp']."</div>"; } [/CODE] | |
Re: [QUOTE=ﻼim;1313942]I'm getting used to be called "man". this is crazy. [/QUOTE] Add to your signature Ms. Kim and put it in little large fonts. May be it will reduce the count ;) | |
Re: [QUOTE=pritaeas;1314817] You can search this forum for even more examples. [/QUOTE] I second that, this is kind of FAQ, and a lot of practical examples. Just pick one and post any problem you get (There is nice example from PHPMyCoder) | |
Re: [QUOTE=raghamayee;1311056]HI every one, I need to do a course project for software architecture which should be implementable and is compulsoraily an ieee or acm paper. The areas given for us are: agile s/w developement,extreme programming,cloud computing,web services,generic programming,testing... can u guys suggest any thing in it[/QUOTE] I would suggest PHP … | |
Re: [QUOTE=vizz;1128765]I do not want script of blog. There is best script WORDPRESS. I am trying to create my own blog. I do not want to add mutiple functionalities. I just want to add post, view post, reply post and add post in archive(sorting monthwise) Please help for coding. Anybody????????????[/QUOTE] Log … | |
I'm looking for if I can add C# to my toolbox. However there is something which is not clear. I know C# is interpreted language, but can't get it when it comes to learning It. I would like to learn Mono, but then, how does it differ with M$'s? Where … | |
Re: I think all you need is something like JQuery which is JS library to help you manipulate the DOM (Hide, show, effects et al) and with simplified AJAX methods, you can do a big deal of, almost, whatever you think of Check it [URL="http://jquery.com"]here[/URL] | |
Re: good practice is to echo your path on script and see if the path is correct! | |
Re: Just like any OS, which box do you have? Just backup your home DIR to another partion and reinstall the Windows in partition with Linux | |
Re: like java, you can have any number of constructors overloaded :) | |
Re: Have you checked demos? [url]http://cimg.sourceforge.net/screenshots.shtml[/url] | |
Re: Let me differ a little bit 1. [URL="http://www.w3schools.com/php/default.asp"]Learn PHP[/URL] 2. [URL="http://dev.mysql.com/tech-resources/articles/mysql_intro.html"]Learn MySQL[/URL] 3. [URL="http://wb.mysql.com/?p=406"]Design Database[/URL] 4. [URL="http://www.php-mysql-tutorial.com/wikis/php-tutorial/creating-a-guestbook-using-php-and-mysql.aspx"]Code your site[/URL] Otherwise you will end get lost in mud of codes you don't understand :) Else, hire somebody knowledgeable of PHP | |
Re: Get your self a book by Bruce Eckel, [URL="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html"]thinking in C++[/URL] and check below sites for resources. Also read the to sticky: [url]http://www.cplusplus.com/[/url] [url]http://www.cprogramming.com/[/url] | |
Hi anyone who knows good and documented CHM library? There is [URL="http://www.jedrea.com/chmlib/"]chmlib [/URL]which is X-platform but I cant find documentation or example. Is it hard to write cross platform CHM reader library. Just reading, no writting Thanks | |
Re: IF you use CodeLite IDE it have functionality to export Makefiles for your program. Else see [URL="http://stackoverflow.com/questions/1738790/build-management-in-c-good-ides-on-linux"]this[/URL] |
The End.