Really frustration!
Simple problem: Make a windows totally invisible, then show on screen TextBox or some other stuff.
I have found only a solution:
//Access to Null direct context (Screen)
HDC hdcScreen = GetDC(NULL);
//Setup brush and pen
SetDCBrushColor(hdcScreen, 0x00ff00);
SetDCPenColor(hdcScreen, 0x00ff00);
// Draw a rectangle ..
Rectangle(hdcScreen, 200, 200, 300, 300);
//Draw Text, or circle or line or pixel etc..
//Release Screen context
ReleaseDC(NULL, hdcScreen);
What'is the problem now?
Is really slow!
Probably is possible accelerate with openGL or some other method, but I don't know anything about it.
If someone know how to make more fast this code is really appreciated!
The code above run slow, you can see rectangle generation:
while(1) {
//Access to Null direct context (Screen)
HDC hdcScreen = GetDC(NULL);
//Setup brush and pen
SetDCBrushColor(hdcScreen, 0x00ff00); //Green
SetDCPenColor(hdcScreen, 0x00ff00);
// Draw a rectangle ..
for(int i = 0; i < 100; i++) Rectangle(hdcScreen, 20 + i*32, 20, 30, 30);
//Draw Text, or circle or line or pixel etc..
//Release Screen context
ReleaseDC(NULL, hdcScreen);
}