Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements

5 Posted Topics

Member Avatar for PixelExchange

Did you try [URL="http://msdn.microsoft.com/en-us/library/ms740632(v=VS.85).aspx"]MSDN[/URL]? They pretty much have everything related to Winsock programming. Also this [URL="http://www.15seconds.com/issue/010820.htm"]website[/URL] seems to be quite useful on explaining what you need to establish a connection.

Member Avatar for Aranarth
0
138
Member Avatar for ylin333

How do you access a database from a C++ or Windows API program? :-/ I would like to be able to get data from a database as strings or something. I want to use a database so that it is easily changed from MS Access or something similar. Thanks in …

Member Avatar for ylin333
0
243
Member Avatar for Allophyl

Well, you should first try Windows API. To get started, try Forger's Win32 Tutorial, easily found on Google and even comes as a pdf! Then Google, Win32 API Reference. Although it is quite outdated, it still works and I always have it open when I program. As for C#, it …

Member Avatar for Allophyl
0
135
Member Avatar for rootchord

What I did and am still doing is when I suddenly think of something that would be cool to make, and isn't unrealistically complicated with my current knowledge, I would start programming that with some new functions that I have no prior experience with. For example - when I found …

Member Avatar for aslamnandyal
0
188
Member Avatar for +_+man

I think it's inpossible to replace typed letters/numbers with a '*' in c++, however you could get keyboard input directly with kb_hit(). To use the function kb_hit() you need to have the C header 'conio.h'. [CODE]#include <conio.h>[/CODE] For example; [CODE] char example[10] if (kb_hit()==TRUE) { example=getchar(); } [/CODE]

Member Avatar for ylin333
0
951

The End.