Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #13.9K
Ranked #3K
~994 People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for Labdabeta

Start [URL="http://developer.apple.com/fonts/TTRefMan/RM06/Chap6.html#Overview"]here[/URL]

Member Avatar for Labdabeta
0
255
Member Avatar for pseudorandom21

SetWindowsHookEx has the following parameter [CODE][in] HINSTANCE hMod[/CODE] This MUST be the module handle of the DLL within which the Keyboard procedure is defined. There is another item in the remarks of SetWindowsHookEx documentation. [QUOTE]Before terminating, an application must call the UnhookWindowsHookEx function to free system resources associated with the …

Member Avatar for dexblack
0
225
Member Avatar for vbx_wx

Why are you writing your own set class? Use std::set, or if you MUST write your own, at least read the STL code for std::set.

Member Avatar for dexblack
0
140
Member Avatar for Maffyx

You don't need to do this at install time, try coding the application to check for the configuration at start up and ask if not found. You have two easy choices for Q1 Store the configuration in the registry or a configuraiton file. VB has a simple API for storing …

Member Avatar for dexblack
0
151
Member Avatar for Azurea

Your T object doesn't live long enough to allow the thread to run safely. Create your T objects, then start them, then let the instance die.

Member Avatar for Azurea
0
109
Member Avatar for alban08

adding to JEPHTHAH's post. #define N 100 int num[2][N] Also refuse to use more than the maximum declared size and tell the user why e.g. printf("Maximum allowed is %d\n", N); Note: When doing floating point calculations you should always try to keep the values as small as possible, so rather …

Member Avatar for alban08
0
114