Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~2K People Reached
About Me

Practice();
void Learn() { Practice(); }
void Practice() { Learn(); }

Favorite Tags

8 Posted Topics

Member Avatar for NubTruck

I have been reading some tutorials about floats from various sources on the web. They say that if you want to float one div element next to another you are to put a float attribute into one of the div elements. for example one website says this... > Quote From …

Member Avatar for AleMonteiro
0
242
Member Avatar for PratikM

Try reading [URL="http://www.winprog.org/tutorial/menus.html"]this tutorial[/URL]. It explains how to create menus and icons for win32. You may need to read back a page or two depending on how much you already know.

Member Avatar for jonsca
0
352
Member Avatar for pdellongo

Copy and paste the errors, don't make us search through 136 lines of code! lol

Member Avatar for pdellongo
0
206
Member Avatar for GummyBear

[CODE]int number_of_repetitions = 10; for(int i = 0; i < number_of_repetitions; i++) { // insert your code here }[/CODE]

Member Avatar for GummyBear
0
150
Member Avatar for NubTruck

Hi guys, I am trying to create a edit control, with pure win32. When the return key is pressed I would like it to run a section of code. I have tried getting it to handle the return key message through the main windows message handler. Unfortunately that causes it …

0
109
Member Avatar for sarfu

I find it a little hard to understand what you are asking. From what I have read it seems though your trying to get a server to put data into a text file. If you send data from a client or server you need the other to recieve it... perhaps …

Member Avatar for Duongpv
0
774
Member Avatar for Aneurinbiker

Regarding your second post, the int data type can only hold integers, not floating point values. You should use a float or double to hold numbers with decimal places.

Member Avatar for NubTruck
0
190
Member Avatar for nannunandhu

The End.