First  |  Prev |  Next  |  Last
Pages: 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
WM_NCLBUTTONUP
Hi there, I noticed that the WM_NCLBUTTONUP does not seem to behave as I expected, eg. .. . . . . LRESULT Subclass() { static BOOL check = false; swicth(msg) { case WM_NCLBUTTONDOWN: check = true; break; case WM_NCLBUTTONUP: check = false; ... 17 Apr 2010 09:39
Form Show/Close Effect
Hi! Anyone know how to make form show/close effect like windows 7 does ? :D ... 17 Apr 2010 03:12
Is perpetual September dead?
> Usenet is [...] recovering (very, very slowly) from Eternal September. I agree with you that perpetual September seems to be in the process of ending, albeit that there are several newsgroups that are still awash with novices and one-shot posters. The problem with that is that the people who have sur... 16 Apr 2010 06:09
Show image in console
Hello. Please someone can help me with the next code: I try to put in console the bitmap IMAGE.bmp It do this, but when I minimize the console window or move the scrollbar, the image is clear. How I can fix this ? //Code: #include <windows.h> #include <stdio.h> int main() { HWND parent; HWND panel; ... 16 Apr 2010 06:09
Question about NtfsDisable8dot3NameCreation and Volumes
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <blockquote cite="mid:e40d1a67-8135-4c92-8c4d-8ebc649feed6(a)q23g2000yqd.googlegroups.com" type="cite"> <p... 15 Apr 2010 15:51
Dr. Watson without debugging symbols
Hi, I want to use Dr. Watson at production site (on XP 32-bit system) without deploying any debugging symbols (at the production site). Rather I want Dr. Watson to generate crash dump, then have customer send the crash dump to me, and lastly I would do WinDbg post-mortem debugging with all the debugging symb... 13 Apr 2010 11:40
CRT thread-safe when called from C-Sharp
Hi, Background: Let's say, there's a DLL - A.DLL (native code) that exports function Foo(). Foo() calls some C-runtime library functions. Some other native code (for example, in an EXE) calls Foo() from multiple threads. There're 2 requirements to prevent multi-threading related problems inside CRT: 1. A... 13 Apr 2010 08:20
BIND error after crash: how to reset winsock ?
Hello, I have a common problem, after my program crash without cleaningup winsock correctly I can't bind anymore on the same port, the only way I found is to restat my windows session. I tried using SO_REUSEADDR but it just make the bind error hidding not allowing the communication anymore. Then as it don't seem... 14 Apr 2010 15:33
Simple Custom Control Wont Work
Am Sat, 10 Apr 2010 17:44:00 -0700 (PDT) schrieb Jimbo: wc.lpfnWndProc = UpdateBoxWndProc; // THIS FUNCTION IS A MEMBER OF CLASS updateBox so I get an error here? A function, which is a member of a C++ class, must not be used here. A reason is the implicit this-pointer in the parameter list of member ... 11 Apr 2010 03:41
[Win32 C++] Simple Custom Control Wont Work
Hello, Why wont this simple way I made of creating a Custom Control(in Win32 API) work when I want to use the class as so: - I will declare the custom control using [i]CreateWindowEx(0,"updateBox",0,WS_VISIBLE|WS_CHILD, 0,0,100,100,hwnd,NULL,hInstance,NULL); [/i] in my WinMain WndProc WM_CREATE: msg. - Will the... 10 Apr 2010 21:12
First  |  Prev |  Next  |  Last
Pages: 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28