1,730 Posted Topics
I have to do reinstallation due to virii destruction in this laptop. I need to slipstream Drivers to this installation. Where to get SATA drivers so that the HDD will be recognized? Currently XP CD SP3 Doen't recognize the drive. Is there another trick? | |
/home/stefa/Projects/C++/evstevemd/Additions.h|7|error: expected class-name before ‘{’ token| /home/stefa/Projects/C++/evstevemd/Additions.h|9|error: expected ‘)’ before ‘parent’| ||=== Build finished: 2 errors, 0 warnings ===| Here is the file. Cpp file is empty. There is something wrong with My class and inheritance knowledge. What is wrong? thanks [CODE=C++]#ifndef ADDITIONS_H #define ADDITIONS_H #include <wx/panel.h> #include <wx/notebook.h> class … | |
Re: Check [URL="http://www.intranetjournal.com/php-cms/"]this[/URL] | |
Re: [QUOTE=cwarn23;1103905]I managed to find a Ubuntu c++ compiler which supports every variation of c++ and its name is Codelite. [/QUOTE] I guess you mean [URL="http://www.codelite.org/"]Codelite IDE[/URL] | |
Re: There is excellent guide [URL="http://www.saschakimmel.com/2009/05/how-to-install-apache-mysql-and-php-wamp-on-windows-manually/"]here[/URL]. Haven't tried though | |
Re: [QUOTE=gunbuster363;1104032]what do you mean by "distro"? The link you provided do not have one for SuSe 10.3~~[/QUOTE] Distro [URL="http://en.wikipedia.org/wiki/Linux_distribution"]is...[/URL] | |
Re: Check [URL="http://www.youtube.com/watch?v=A9jiyJ5tRBU"]Alex[/URL]'s youtube Video on mailing. BTW Alex have done good Job in PHP/MYSQL | |
Re: [QUOTE=iamthwee;1103560]Dev cpp for me.[/QUOTE] Do you mean wxDevCpp? Last time I visited DevCPP it seemed as if project is dead :-O | |
Re: [CODE=php]$search = $_GET['search']; ['start'];[/CODE] I have tried to locate the variable search on submission but I cannot see it. It should be submitted via get. I'm I overlooking it somewhere in posted code? | |
Re: What have you done so far? Your code? Do you know how to [URL="http://www.wikihow.com/Convert-from-Binary-to-Decimal"]convert binary to decimal[/URL]? | |
Re: [QUOTE=mawe;270867]Hi! [code]for i in data: print "#" * i[/code] :) Regards, mawe[/QUOTE] :-O | |
Re: [url]http://www.python.org/dev/peps/pep-0249/[/url] | |
Re: mhh!... I see only two ways of mixing two classes. Making an instance of Class A in class B as Vega have already done or Inherit class A into B and use the methods as Local to the class. [QUOTE]The program are supposed to create data in a global variable … | |
Re: Have you tried Andrea's Gui2exe? That should enable you to configure setup.py GUIcally try that and say what you think! | |
Re: there is Suse repository which I guess should have that package. try: [QUOTE]apt-get install python-mysql[/QUOTE]l | |
Re: in what order do you want them executed | |
Re: Try IDLE that comes with [URL="http://vpython.org"]vpython[/URL] | |
Re: what was the permission of the folder? I guess it was not 777 If so Change permissions before delete | |
Hi, I want to prevent submitting a form if any of the field is empty. also if possible I would like to validate some basic things. All I want to use JQuery: How do I do that? I have no way and google points me to plugins. The things I … | |
Hi all, I want to add some yellow background when focus turns to text input and remove it when it moves. Here is my code for JQuery [CODE=javascript] $(document).ready( function(){ //make form display yellow color when mouse is focused on item $("input").focus( function(){ $(this).css('background-color' : 'yellow'); } );//end focus }); … | |
Re: to avoid all those use WAMP/LAMPP/MAMP | |
Re: I see 4 alternatives: 1. Java based 2. PHP/Frameworks 3. Python and Django/Turbo gears 4. Ruby (RoR) See which language you are comfortable with and Go for it | |
Re: Java applets? New also in Java but it sounds like it is what you need Let experts say something ;) | |
Re: [QUOTE=ohblahitsme;770332]Are you guys putting the code into the interactive python interpreter or are you creating a separate .py file. When I started my first pygame project, I tried putting it in the interpreter and got an Not Responding window. Of course I just started python and pygame so what do … | |
I wonder what is the name of his widget. It manages wxFrames whose in turn manages wxNoteBooks. It is like wxAUI but its Frames has maximize windows. I wonder what is equivalent wxWidgets/wxPython for [URL="http://www.swordsearcher.com/features/screenshots/swordsearcher-screenshot-full.png"]this [/URL] see here Thanks | |
Re: Use wxPython, It is flexible and beautiful! Will your Player be opensource? I should say it is great Job! What backend do you use to Play your media? Does it Play videos? Go for wxPython but so far it is very very very great! @Snee, I had to zoom to … | |
Re: [URL="http://www.w3schools.com/html/default.asp"]Here [/URL]then [URL="http://www.python.org"]here [/URL]then [URL="http://www.djangoproject.com"]here[/URL] | |
Re: and In my PDT installed in Aptana, there were no auto completion for MySQL functions. Hope that is fixed now. I have switched to netbeans for now | |
Re: your efforts? You should do something if it means "help". Otherwise google for ready made script if any | |
Re: are you planning to make a virus ? ;) | |
Re: Executing SQL that way isn't good. Here is a sample function that will illustrate how to do it better. It is for sqlite3 imported as sqlite. If you have problems in implementing it just post back [CODE=python] def createtb(self): query1 = "DROP TABLE IF EXISTS bible" query2 = """CREATE TABLE … | |
I will start with SDL_mixer to make media player I have longed to make for long now. Here my question goes. Do I need to know SDL before I can use SDL_MIXER or I can just start directly? and good tutorial for begginner? Thanks all | |
I have asked the same Question on C++. So far I have moderately mastered PHP a little and more of Python. I want now to add up Java/C++ So what I need to know to be Java expert in Web and Desktop Applications? Are they two different beasts? Thanks Guys | |
Hi, Iam now using Mandriva from external HDD and want to install my development tools. I need to install wxPython, Matplotlib, and some other packages. How to do that in Mandriva? | |
Please help me to expound how to do layout management. You may choose any layout manager and expound it. I'm doing self teaching most of the time and it is not fun! Please help me ho to arrange. Also which layout is mostly used | |
Hi all, Back then I was writting my own login/register system and I have halted developing it due to time constraints. I will be happy to resume later. Here I am asking for Open source secure and safe login/register system that I can Incorporate in my CMS. I want to … | |
Re: you need to brush yourself with wx's Layout management. It is very simple once you grasp the basics. Check here: [url]http://zetcode.com/wxpython/layout/[/url] | |
Re: Use Inno setup or nullsoft installer makers. If you have $$ I will say go for installshield I have tried to pack my software previous with Inno, it is easy! | |
Re: I read one book which said just take an exe and put it in cgi folder, rename file from .exe to .cgi and that is. Haven't tried though | |
Re: There is a module that is imported that is on wxDemo DIR. I don't remember well but it is something like run You should modify that | |
Re: Is that a web application? How do you run it or at least how users access it? via web browser? Locally? As far as I know, TG is web framework and wxPython is GUI toolkit for Desktop app. | |
Re: Netbeans, Eclipse, Aptana studio, Codelobster? Have you tried any of these? I'm yet to find a free satisfying IDE. But at least Aptana studio/Netbeans/Eclipse-PDT ![]() | |
Hi all, I just fired Mandriva 2010 from my external HDD. I need to run PHP IDE and PHP/MySQL server running. I'm new to Linux so I need guide from you guys Thanks | |
Re: [QUOTE=emmawatson4u;1083643]Here's a question for you.[/QUOTE] Do you mean me also? what will you award me as your student ? ;) Ooh, sorry buddy but show effort so that we would help you where you get stuck. | |
Duh! I'm now using Linux from my external HDD again. Please suggest a good IDE for me Thanks | |
Re: Dan08 and Sravan (Members of Daniweb) did a Pymailer program which implements the all functions. Please consult them (PMing or Emailing them) and will may be give you more instructions | |
Please help me to setup my development enviroment on Mandriva 2010. I used to MINGW and Codeblocks then Codelite. So I would be happy to have some IDE full bundled with GCC. I have googled but nope, nothing comes. Iam posting at codeblocks forum too :) | |
Where is best JSP tutoriall, at least best for you? I will appreciate also downloadable for offline use. I'm extremely noob to JSP but I know some java | |
Re: I know of Django as alternative to TG they are frameworks for developing apps with Python [url]www.djangoproject.com[/url] |
The End.