1,730 Posted Topics

Member Avatar for sugumarclick

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]

Member Avatar for Stefano Mtangoo
0
3K
Member Avatar for Sismetic

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

Member Avatar for Stefano Mtangoo
0
1K
Member Avatar for Stefano Mtangoo

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 …

Member Avatar for Stefano Mtangoo
0
910
Member Avatar for andydeans

what about destroy the active session? To log user out will depend on login mechanism

Member Avatar for Stefano Mtangoo
0
86
Member Avatar for jjemphoung

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 …

Member Avatar for jjemphoung
0
125
Member Avatar for Harine

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].

Member Avatar for peter_budo
0
178
Member Avatar for Arthas

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

Member Avatar for Arthas
0
167
Member Avatar for gerard4143

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]

Member Avatar for DAlexNagy
0
232
Member Avatar for arctushar

[URL="http://php.net/manual/en/index.php"]PHP.Net[/URL] Have all you have asked for

Member Avatar for arctushar
-1
203
Member Avatar for AutoC

[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

Member Avatar for Stefano Mtangoo
0
311
Member Avatar for kazkikay12

[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? ;)

Member Avatar for Stefano Mtangoo
0
102
Member Avatar for shahzaib g

[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

Member Avatar for NicAx64
0
86
Member Avatar for 344server
Member Avatar for badenpearce
Member Avatar for SunnySideUp

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

Member Avatar for Stefano Mtangoo
0
160
Member Avatar for newprimitive

[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]

Member Avatar for Stefano Mtangoo
0
155
Member Avatar for y2kshane

[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]

Member Avatar for Stefano Mtangoo
0
293
Member Avatar for mrkaran

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 …

Member Avatar for NicAx64
0
183
Member Avatar for daino

[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 …

Member Avatar for Stefano Mtangoo
0
955
Member Avatar for newbie_to_cpp

[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 …

Member Avatar for NicAx64
0
110
Member Avatar for kesh1000
Member Avatar for Xufyan

[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 = …

Member Avatar for HeidiC
0
452
Member Avatar for Awah Mohamed

Check [URL="http://www.w3schools.com/php/default.asp"]W3school[/URL]

Member Avatar for Awah Mohamed
0
83
Member Avatar for Stefano Mtangoo

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 …

Member Avatar for Stefano Mtangoo
0
130
Member Avatar for Kadafiz

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]

Member Avatar for Kadafiz
0
175
Member Avatar for WigglesMcMuffin

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]

Member Avatar for WigglesMcMuffin
0
107
Member Avatar for briandns1
Member Avatar for diafol
0
388
Member Avatar for ceeandcee

[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 …

Member Avatar for ceeandcee
0
112
Member Avatar for asahmed

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]?

Member Avatar for FlashCreations
0
91
Member Avatar for shantuli

[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: " …

Member Avatar for coil
0
176
Member Avatar for y2kshane

have you seen [URL="http://www.underbit.com/products/mad/"]libmad[/URL]?

Member Avatar for Stefano Mtangoo
0
156
Member Avatar for Stefano Mtangoo

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 …

Member Avatar for Beat_Slayer
0
457
Member Avatar for mikecronauer

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

Member Avatar for MooGeek
0
162
Member Avatar for detweiller

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]

Member Avatar for ﻼim
0
279
Member Avatar for koveras vehcna

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]

Member Avatar for koveras vehcna
0
350
Member Avatar for QWaz

[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 ;)

Member Avatar for MooGeek
0
132
Member Avatar for andrewliu

[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)

Member Avatar for andrewliu
0
294
Member Avatar for raghamayee

[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 …

Member Avatar for raghamayee
0
104
Member Avatar for tamayoclarisa
Member Avatar for vizz

[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 …

Member Avatar for FlashCreations
0
181
Member Avatar for Stefano Mtangoo

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 …

Member Avatar for ddanbe
0
97
Member Avatar for ello

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]

Member Avatar for almostbob
0
125
Member Avatar for sjeggels
Member Avatar for metalix
0
157
Member Avatar for yapaarachchi

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

Member Avatar for WithnoMute
0
224
Member Avatar for mavs123
Member Avatar for daviddoria
-1
111
Member Avatar for Prashanth.claw

Have you checked demos? [url]http://cimg.sourceforge.net/screenshots.shtml[/url]

Member Avatar for Stefano Mtangoo
0
36
Member Avatar for ryanwhite17

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

Member Avatar for Stefano Mtangoo
0
156
Member Avatar for jheichimiste

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]

Member Avatar for Stefano Mtangoo
0
104
Member Avatar for Stefano Mtangoo

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

0
52
Member Avatar for onako

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]

Member Avatar for Stefano Mtangoo
0
141

The End.