General C++ Programming - January 2009 (Page 2)

[Solved]Loading SWF and EXE's Files
 
Just wondering if its possible to make a program in C++ that would be able to open EXE's made in MultiMedia Fusion 2 and SWF's for Flash. Reason being is me and...
[13 replies] Last: I think my problem must be I'm not linked with the shell32.lib EDIT... (by Mythios)
C++ library for http client
 
Hi to everybody, does anyone know if exist for c++ a free library (like urllib in python) for http client? I need a function that able me to retrive a http so...
[1 reply] : I don't know anything about this, but there was a tread about this som... (by Scipio)
How can I convert a ISO 8859-2 to UTF?
 
How can I convert a ISO 8859-2 and ISO 8859-9 to UTF in c++? Is there something similar in c++ as in Java ? In Java we can simply create a new string(oldstrin...
[6 replies] Last: thanks for all the help. what i discovered in last 2 days is in C++... (by focussed)
how to import a python library in a c++ program
 
Hi to everybody, I am new in this forum and i have a question: Can anyone show me an example of how to import a python library into a C++ program? For examp...
[1 reply] : Quite simply, you can't. What you can do, is embed Python in C++.... (by helios)
Billing system project in C++
 
HI i have this as a school project. could you please help me in completing it by helping me with the codes for the program? this is the question: Q write a ...
[2 replies] Last: Why not start by telling us what you dont know? It will be easier for ... (by zxyong)
Read text files with different column lengths
 
Hello, how do I get Visual C++.NET to read a text file for which the columns have different lengths? I have a text file like so: 40 50 51 12 48...
[5 replies] Last: As this is C++ question the answer should use C++. You haven't answ... (by Duthomhas)
adding cccfiles to a project
 
so i can use includes such as "ccc_win.h" i have visual studio 2008, i cant seem to find any online instructions that match my menus . i have tried the follow...
[3 replies] Last: sory, it looks like i spoke to soon. it compiles fine but when i build... (by nolanritchie)
_getch() -- seemingly irrational fears
 
So, I've been coding C++ for a while now, and in that time I've of course surfed the web a fair bit. Is it just me, or does everybody on the internet just h...
[5 replies] Last: Agreed, but the OP's stated purpose is to convince others that it "des... (by Duthomhas)
error LNK2019
 
So, I did some searching on my own, and found this little post: http://www.cplusplus.com/forum/windows/3158/ But, I am at a lost to how this solves my probl...
[2 replies] Last: You haven't provided the implementation for stackType, only the defini... (by kbw)
by vivmen
why only Global varible Initialized by compiler
 
hi Guise i want to know why only Global Variable are initialized by compiler , i don't get answer to this question in many books can you help me ?
[4 replies] Last: If an object that has automatic storage duration is not initialized... (by kbw)
by jorijo
Polymorphism
 
Hi! I have one base class Veiculo with two derived classes Veiculo_frigorifico and Veiculo_lona. Veiculo_lona will have the same atributes of Veiculo but ...
[1 reply] : It all goes in the derived class. That's what makes it special, i.e. ... (by kbw)
by Zaita
Polymorphic copy constructor
 
Ok. I am having a mind blank. But I am hoping there is an easy way to achieve what I want to do. I have a vector<Parent*> that contains a collection of Child...
[3 replies] Last: For those wondering. My solution is going to be the Prototype pattern.... (by Zaita)
size of stack
 
Hello How/where can I find out the size of stack. Is there any posibility to find out size of stack and heap for one process in c++. Thank you
[3 replies] Last: Post your question in the Windows Programming forum -- you might have ... (by jsmith)
Finding Index of Map
 
Hi all, Given a map map<string,double> lookup; lookup['foo'] = 1; lookup['bar'] = 0.3; lookup['qux'] = 0.4; lo...
[4 replies] Last: How using an iterator to the element in the map rather than a numeric ... (by seymore15074)
Trying very hard to understand arrays
 
I am new to C++ and I was doing fine until we got to arrays. My textbook is horrible and now I am lost. Can someone please recommend a good tutorial on arrays,...
[5 replies] Last: You guys are great...the text is being dropped at the end of the semes... (by greenbluekidz)
MD4 Encryption using OpenSSL
 
I have a project I'm working on right now where I'm trying to use the MD4 algorithm available in OpenSSL to encrypt a plaintext string. However, the OpenSSL doc...
[1 reply] : Try the OpenSSL forum or mailing list. (by Zaita)
A random question [SOLVED]
 
What happens if I do: stringstream stream; stream.clear(); int i = 0; stream>>i; cout<<i; Will i be 0, or will this cause undefined behavior?...
[2 replies] Last: Thanks! (by firedraco)
[SOLVED]Wanting To Display More Info On Ascii
 
Alright so I'm using this to display the ascii Characters void ASCIIChartTwoOne() { for(int i = 0; i < 256; i++) { std::cout << i << " = " << (char)...
[8 replies] Last: Just encase anyone wants this - i changed the string method a bit and ... (by Mythios)
How to prevent gdb or ddd from sending interrupt signals to its child processes
 
Hi, I am using gdb (or ddd) to launch my program. My program internally invokes child processes and perform communication through sockets. When I say interru...
[no replies]
[SOLVED]Load Bar -Creating a Square shape character
 
Ok so in some programs I see in there console programs (when they are loading) they might use something in the lines of a bar. Question is what is the square ch...
[14 replies] Last: Haha yeah I know, just got a little posting happy there :D (by Mythios)
January 2009 Pages: 1234... 11
  Archived months: [dec2008] [feb2009]

This is an archived page. To post a new message, go to the current page.