Beginners - August 2008 (Page 2)

Downloading an jpeg to harddisk
 
...how would this be possible?
[6 replies] Last: Try the documentation, or a libcurl forum :) The Win32API has WinSo... (by Zaita)
by civq
OnBnClicked funcion
 
Hello I'm trying to make simple application from Visual C++ book problem is that examples are for version 6 and I'm using Version 2005 so there are a lot o...
[1 reply] : Sorry guys figure it out for those that have similar problem Mess... (by civq)
Dev-C++ driving me crazy
 
Hi, in this little snippet, I get the error: file format not recognized; treating as linker script snytax error ld returned 1 exit status [Build Error] ...
[2 replies] Last: Er, sorry. The switch(){} and for(){} syntax is incomplete here, but s... (by toshiro)
using multiple access operators
 
In the following example: TCNode *cptr = g_pStoreBase->StartCar; do{ cptr->C->SetBusy(); cptr = cptr->Next; }while(cptr); ...what is the ...
[2 replies] Last: oh, okay...I wasn't used to seeing that '->' so many times in a progra... (by ready2drum)
thread stopped?? ..
 
ok this is my coding and im using the borland c++ compiler edit: sori for not usin the tag codes, i still don't know whats wrong, never get a thread error be...
[1 reply] : Once I changed main to return int, and returned 0 at the end of it, it... (by mahlerfive)
Question on Style
 
The situation: I have a large log file, parts of which I have to parse for specific information and reformat that infomation for visualization. Now there are...
[6 replies] Last: Well, the problem is, to create a file containing values to be read by... (by toshiro)
by alejol
How do i assing a float to a string
 
How do i assing a float to a string. i have a float number and i want to assing it to a string, how do i do it?
[1 reply] : Use a std::stringstream . http://www.cplusplus.com/reference/iostrea... (by Duthomhas)
How to get the handle of a window?
 
Okay, I'm making a trainer for Quake 2, and everything is working, exept I can't get the HWND of the Quake 2 window. I have this: hwnd = FindWindow(NULL,(LP...
[5 replies] Last: ... LPCWSTR ... Wow, I missed that one. It is your problem. You can... (by Duthomhas)
'Random' Question
 
Hi, I am wondering if you can ,after making a random number, take away that number from the random generator so you won't get it again the next time you make...
[4 replies] Last: Yeah, I was trying to do it with an array (which I eventually got it t... (by BlahBlah)
by paul23
classes - problems with a constructor
 
Well this is the very easy code I have now: class game { public: game(int ww,int hh, int ss=30) { playfield(ww,hh); w = ww; ...
[4 replies] Last: You can't manually construct static members. If you need to pass param... (by helios)
by Raynex
Program configuration
 
I'm rather new to C++ I've programmed in other languages before but never anything significant and I have no clue about using ini or xml files or whatever I nee...
[10 replies] Last: TinyXML is supposed to be quite a good C++ XML package (not as compreh... (by bnbertha)
by Flinch
I'm new to this, and I have a question.
 
I've only ever written some basic flash coding and have been looking into C++ with a huge interest. I will soon be starting college in game and simulation progr...
[13 replies] Last: i guess i should "help" you two out of the hole... i am "relativel... (by Incubbus)
by Eman96
do private members in base clases get inherited in derived classes?
 
I need to know if a private member in the base class will be inherited in a derived class. As such: (I AM USING @ AS TABS) #include <iostream> using namespa...
[8 replies] Last: Yea. I should've been more clear. They are inherited yes. But they ... (by Zaita)
by man156
debug question
 
what is the mistake in go to course during debug when i use f9 for debug the red sign appear at the line but when i use f10 to arrange my order covert the re...
[2 replies] Last: F9 is set debug point IIRC :) (by Zaita)
by JoeyS
ranges for int and double under 32-bit vs 64-bit systems
 
Hello, I'm working on a project for school in engineering and as part of it I've spent most of the summer learning c++. Though I'm just a beginner with no prev...
[4 replies] Last: GMP uses pretty advanced techniques which make it fast. Really fast. O... (by exception)
invalid initializer
 
void WriteRegistry(char MyPath ) { // Write into registry HKEY hKey; RegCreateKey(HKEY_LOCAL_MACHINE,"SOFTWARE\\Test",&hKey); const...
[3 replies] Last: Essentially this: int main() { int one[ 6 ] = { 1, 2, 3, 4, ... (by Duthomhas)
How do I open a microsoft word document from a console program?
 
Hi folks! I want to know if it's possible writing a program, that just opens a Microsoft Word Document, and how. I really hope some of you guys will answer m...
[15 replies] Last: Thank you very much Mitsakos, you've solved the problem. it works as i... (by Mathias91)
arrays of structures
 
Hi, I'm a beginner when it comes console C coding and have question about this. I think I must be forgetting something completely stupid or miss using sscanf or...
[3 replies] Last: What does the file your trying to read look like? Explain in detail wh... (by Vector)
casting of almost identical iterators??
 
Hy I cant solve the following problem: I have 2 sets set<String, less1> and set<String, less2> which differ only in the ordering function. I want to store ite...
[5 replies] Last: I'm pretty sure there is, but I don't know about it ;-) The stl is co... (by exception)
array(1-20)
 
hi there!!i am a beginner in dev c++.would anybody please give me a program which can output numbers 1-20 in 4 rows and 5 columns using for loop,while loop and ...
[3 replies] Last: i did it..i put another = sign in every if statement but it does the s... (by chinitomick)
August 2008 Pages: 1234... 14
  Archived months: [jul2008] [sep2008]

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