1,730 Posted Topics
Hi, I'm finding generic container like vector but that can hold any variable just like a Python list. Thanks | |
Hi guys, I have two bushes to clear up. I have doe SQL fro some time now but I have never done blob. I think the next project will require it. So here are my Question: 1. How blob differ from any other type like text? 2. How to create … | |
Re: [QUOTE=roc a;1150610]here is what I have come with thus far.... Im confusing myself. LOL Char total_customers cout << "how many customers?: " << total << endl; break; case: total_customers = 0; for (c=0; w<=9)[/QUOTE] roc a, do you know what you are doing? No offense intended but as I can … | |
Re: [QUOTE=nats01282;1150481] [CODE] goto loop; [/CODE] im after the aplication to say eg. 1 + 1 = 2 wait couple of millieseconds then say 1 * 1 = 1 etc..etc[/QUOTE] Suppose you have 200 goto. Your program will be mess. Avoid them to maxima! That said you can use Jonsca suggestion. … | |
Re: check [URL="http://www.wxwidgets.org"]wxWidgets [/URL]and its Device Contexts[URL="http://wiki.wxwidgets.org/WxDC"](DC)[/URL] | |
Re: What about [URL="http://beej.us/guide/bgnet/"]this[/URL]? | |
What are rules to observer when writting More than one class in single Java file. Let say three classes on the same file Thansk | |
Re: I think [URL="http://java.sun.com/docs/books/tutorial/uiswing/"]this [/URL]is very comprehensive tutorial | |
Re: check [URL="http://codespeak.net/lxml/"]lxml[/URL] | |
Re: Are you a student? Lecturers tend to use TC, for some unknown strange reasons. Here are IDEs I suggest Visual Studio Express Code::Blocks Kdevelop wxDevCpp Codelite They are not in order of aanything ;) Just pick what you want, and will do a job | |
Re: in wxApp you should disable it [CODE=python] myApp = wx.App(False) [/CODE] | |
Re: I hope I'm right ;) [CODE] int* myPointer; mypointer = new myPointer[10]; [/CODE] | |
Hi All, I want to parse simple XML file and I was looking if there is C++ standard library classes for doing that. IF no what are good yet simple XML C++ third party libraries? Thanks | |
Re: check wxWidgets. It have got classes that deals with that. I think it is wxFTP plus some drag n drop issues | |
Re: Should I share my love for wxWidgets? Yes if you are starting GUI (which you didn't gave a clue) then give wx a chance and try it. Its vast Documentation, immense help (almost instant), and many advantages over QT. IF you still want to go for QT then I second … | |
Re: Here is just simple rumbling around same example [CODE=c++] #include<iostream> int sum = 0; int main() { int x, y; std::cout << "Enter number X: "; std::cin >> x; std::cout << "Enter number Y: "; std::cin >> y; std::cout << "The memory address for the number is: " << *Summation(number); … | |
It might be a basic question, but bear with me as google didnt help. I want to create awrapper for cmd.exe that is more comfortable in terms of user interface (I enjoy a lot Konsole in *nix). Right now I have no Idea how to hook to cmd.exe and get … | |
Re: I love your pagination script. But I see it should include notice that you coded it. I understand your concern for your property but I'm curious: 1. Why did you wanted it that way and not free in the meaning of free? 2. If somebody hacked it and derived from … | |
Hello people, I have two classes everyone with private data. I want only one function from each class to access private data from another class. I have checked "friend" function but It needs the class object as an argument. That is making things complicated on my side and I have … | |
Re: if you don't mind about the learn curve then learn wxpython. It is very elegant in handling events. I have no way to understand TK for now. So sorry, someone will jump in the wagon ;) | |
Re: I suggest wxWidgets ;) It is simple, well supported and Heavily documented and very liberal licence. Its executables are also small | |
Sorry guys, I know it is not C++ specific, but Wikipedia confused me. I have devoted a little time to look at programing tools and little on their innner workings. This term have boggled my mind. So any explanation on what this animal is? Thanks | |
Re: Use GUI2exe. It have many options on GUI. You can optionally generate setup.py and edit manually to suit your case | |
Re: You should make [URL="http://leepoint.net/notes-java/algorithms/random/random-api.html"]random [/URL]function that will take range and at any time return two random numbers. Then present those numbers to her and calculate her answer. Compare to the real answer and then grade her (array?) | |
Re: [QUOTE=tryphy;1129673]Hi saiprem, when the admin is creating the user, we no need to send email to them. The email address is got only to send reminders to them[/QUOTE] Still the same trick is valid. After creating user: [QUOTE]add sent date to last_send_date column and user_created_date column and then submitted column … | |
Re: are you inserting PDF into database? I don't suggest you do that. I suggest you add them to the folder and add its path (Link) to the database | |
One day, my Java friend asked me if there are threads with PHP. I didn't knew and I have to poke around net and manual only to find none. enough of useless words. Here my question goes. Is it possible to create abstract class with virtual and pure virtual functions … | |
Re: not specifically answer to your question, but there is duplication of subprocess imports Just use one [CODE=python]from subprocess import call[/CODE] | |
Re: Didi you intend this to be a class? If yes (which is probable) you forgot keyword class [CODE=java]# public TheArea() # { # //JFrame frame = new JFrame(); # setSize(1000, 650); //h[/CODE] Fix and try this [CODE=java] # class TheArea() # { # //JFrame frame = new JFrame(); # setSize(1000, … | |
I work out a small project. I need to Get list of folders in each drive. Up to now I can get the drives but I have no Idea on how windows treats Drives. Does it treat them as super Directories (Super folders) that contain many sub-folders? If not How … | |
What are your thought on this? There are many framework there and my thought was CakePHP is rather popular. I'm I wrong? What do you think? | |
Re: [QUOTE=MrYrm;1130045]First of all im new here so Hi all.. im also new to c/c++ have been a java php and actionscript developer for some time now and finally have time to learn something new so im gonna go for c++ im just tryna get familiar with everything but i ran … | |
Re: not sure what you want but here are tricks I use Use GetParent function to get parent and store that parent in variable. Then use that variable to call any parent method. For dialog, its parent will be a Frame and by that trick you can call any frame methods … | |
Hi, I would Like to access the Linux desktop from windows PC. I don't want to use SSH console for I need immediately (Have no time for learning for now). TRied VNC, but I cannot access it from Windows. I'm stucked! I can Access my windows machine from Linux with … | |
Hi, I have used a lot of makefiles to compile programs. The issue is, I don't know how to produce make file. Is it another "language" I have to learn or some automatic issue? Also what is short yet clea tutorial on that? Thanks | |
Re: [QUOTE=atqamar;1127261] Is this even possible? And what functions should I use to read the .xls file in Python?? Also, would this be easier using another programming language? Thanks![/QUOTE] Very possible but with GUI. I know wxPython can do that ;) Check Jan's [URL="http://zetcode.com/wxpython/skeletons/"]skeletons [/URL]and see if it is what you … | |
Is this possible? Any tutorial if possible? I want to make a program to do mass conversion of my Icons without loosing resolution | |
Re: [QUOTE=hermann87;1129679]Hi, Is your function of type void or float?[/QUOTE] You have mixed return type. The first code says it is void. In your code it is float | |
Re: [CODE=c++] #include <iostream> #include <cmath> using namespace std; #define PI 3.14 int main(){ //calculate sin angle | library functions double angle, angle_rad, answer; cout << "Enter Angle in degrees: "; cin >> angle; angle_rad = PI*angle/180; answer = sin(angle_rad); cout << "sin " << angle << " is = " … | |
Hi all, I have been looking for single function to split strings and seems to me either is not available or I miss it. So I please, help me to know if it is available and if yes where can I get it. Thanks | |
| |
Re: int is simple function that changes "numeric" strings into integers. There is also double(), str() etc | |
Re: would you try to work with few lines let say 15 lines and after it works go to that large file | |
Re: Raj, why do you do buffering here? I don't understand the concept behind :) | |
Re: Since RSS feeds are XML files then you can get the format and do the necessary with SimpleXML. I once was finding API(or format whatsoever you call it) for podcasts which are kinda feeds and didn't find one so if you find it drop here also ;) | |
Re: Check phpBB and wordpress. Nice combination. Also I would like to know if that was request or command | |
Hi All, what is method to get all availabled disk drives and their status. By status I mean whether they are hard disk or CD/DVD or USB? Also how to get list of Drives in *nix? Thanks a lot | |
Re: which/what type of project? Open source / commercial? ;) | |
Re: I haven't understood what you are trying to do. Make HTML editor? Read HTML? or what? Can you please elaborate more? | |
Re: would somebody submit a commercial application for bundling? ;) |
The End.