I am currently designing a module in C#, and several programmers may work on the same module. To maintain strict coding restrictions I would like to generate an Error if a programmer...
Hello Everybody,
These days I have been trying to look deep into Windows while I debug an application. I see that especially in Common Controls messaging (SendMessage / PostMessage) is used to...
I do not understand your requirement, however I believe the problem lies in SetWindowExt API as you rightly pointed. Note that Viewport is the area of the DC which the user should see, however in...
Hello All,
I would like learn how exactly .NET framework runs on Win32. I thought I got a break with SSCLI 2.0 (Rotor), but the documentation on how exactly the various components of CLR i.e. VM,...
My God I am amazed to know that .NET framework source will be out with Orcas (Microsoft Visual Studio 2008) supporting .NET framework 3.5. Now I think I will have real fun programming in .NET just as...
Hello All,
I see that many of the latest software and drivers! seem to have .NET 2.0 framework to be a pre-requisite for installation. My guess is that .NET framework is used for the front end UI...
Hello Everyone,
How can I force compiler say Microsoft® C/C++ Compiler supported with Visual Studio 2003 to generate an Error or Warning if the programmer tried to use MessageBox or AfxMessageBox...
So what do you think the solution to this particular problem would be? How do you think User32.dll and Gdi32.dll could be seperated so as to have lowest possible coupling? What could be a better...
Not important here anyway ;).
That is Good news :)Great suggestion there Ovidiu, but unfortunately that would mean 4 years of my experience in Win32 programming going straight down the gutter. Also...
Hello,
I come from MFC/Win32 background and would like to learn .NET the Win32 way. I have not been to go any step closer to this objective. I have done some analysis.
You will need to Add message Handler for WM_LBUTTONDOWN or Handle WM_LBUTTONDOWN message. you could use GetCursorPos API to get the coordinates of the mouse cursor and use GetPixel as Skizmo...