0
votes
1answer
38 views

Memory leaks in c++ dll

I have simple c++ dll that contains code for screen capturing. HBITMAP hCaptureBitmap; extern "C" __declspec(dllexport) HBITMAP __stdcall CaptureScreenByGDI(bool allScreens) { int ...
0
votes
0answers
33 views

Convert ICON to HBITMAP to be displayed in popup menu?

I'm trying to add bitmaps to a popup menu. The problem I have is that I create my bitmaps from ICONs dynamically, and I have problems for 24bit color icons vs 24+alpha (32bit) color icons. It seems ...
0
votes
1answer
28 views

Tracking tooltip causes grey “trail” of excruciatingly slow repaint

Let me first decribe the symptoms of the problem. I'll then give additional facts and explain my question. Symptoms I have written a custom Windows control. The control paints itself in response to ...
0
votes
1answer
29 views

Client Area Flickers when Drawing a Line

The problem I am having is that when I draw my line, the screen flickers every time it redraws. I just can't quite figure out how to not make it flicker. I understand the flicker is coming from me ...
0
votes
2answers
68 views

Win32 - What is the proper way to use GDI objects?

I am making a simple game in Win32. Currently, I have most of my drawing object declared globally in the main file so that I never have to delete them or reload bitmaps. So basically all of my ...
0
votes
2answers
39 views

StretchBlt() doesn't create a mirror image

According to MSDN: StretchBlt creates a mirror image of a bitmap if the signs of the nWidthSrc and nWidthDest parameters or if the nHeightSrc and nHeightDest parameters differ. So I tried ...
1
vote
1answer
39 views

OpenGL GDI high resolution rendering

I am running a C++ 3d realtime application on winxp that itself runs on VMWare Workstation 9.0. I have 3d acceleration disabled in VMWare so I only have the windows OpenGL implementation to use. I am ...
-1
votes
0answers
65 views

Need to create a new bitmap filled with black Win32

The title is not entirely clear. I am making a map editor that allows the user to create maps using tiles. The map files created will be used with another graphics library. That library supports ...
0
votes
1answer
70 views

Convert bitmap bits from GetDIBits to jpeg for winsock transmission

I am making a screenshot and retreiving the bits of the bitmap into a char buffer. I am wanting to send this over winsock to another program. This is successfull but sending the bitmap is processor ...
1
vote
2answers
51 views

Double-buffering *framework* in C and Windows GDI

Background: My client has a very extensive proprietary forms library which is effectively implemented in C (actually, it's a proprietary object-oriented language that basically wraps Windows controls ...
1
vote
0answers
75 views

Win32 - GDI - Changing custom pen color

I am trying to use a custom pens in win32 - PS_DASH/PS_DASHDOT - with default colors. However I wanted to change the color of the pens with in the main body of the program based on certain conditions. ...
0
votes
1answer
104 views

CreateCompatibleBitmap() returns black HBITMAP

Hello Stack Overflow users. It seems that I am not using CreateCompatibleBitmap() properly in the following code: #include <windows.h> using namespace std; int main() {HDC ...
0
votes
1answer
46 views

Memory management when not storing handles returned by functions

Apologies if this has been answered before, I haven't been able to find an answer. I'm doing some painting in my Win32 application, and have quite a few scenarios where I need to paint an object ...
0
votes
1answer
60 views

Correct way to repeatedly blit to window DC?

I have put a procedure for capturing screenshots into memoryDC in a Winapi timer. I can successfully blit the said image to the window, but how would i do this repeatedly, lets say every 1-2 seconds? ...
0
votes
1answer
50 views

How can i capture screenshot and assign to a static control? Winapi

I am trying to capture a screen and assign it to some sort of control so I can click the picture and retrieve the coordinates at which the picture was clicked. How would I go about doing this? Im ...
1
vote
1answer
27 views

Geometry of fonts

If I want to draw a text on a control, I can get "a bounding rectangle" first and place it at an appropriate place (using GetTextExtentPoint32 function). But I also need to know where some baselines ...
1
vote
3answers
134 views

win32 - How to draw a rectangle around a text string?

I am new to Win32 and trying to get a GDI based code in C++ ( for technical reasons don't want to use GDI+) Edit: Simplied the question: I need to draw a rectangle around the text that is drawn in ...
0
votes
1answer
104 views

Real time drawing in GDI

I'm currently writing a 3D renderer (for fun and research), so I need a way to draw my framebuffer to a window. Since I'm doing all of my calculations on CPU, the drawing needs to be as fast as ...
3
votes
1answer
94 views

I can't use DrawText()

I am trying to drwa some text using GDI on c++ It happens that I have a class that has a method to return the status and I want to draw it The status is a std::string! So here is what I have so ...
4
votes
1answer
117 views

MFC drawn elements change after 30-60 minutes

I have an application with a completely custom drawn UI (i.e. just a bunch of filled boxes with text). After about 30-60 minutes of running time, the UI elements spontaneously change. For example, ...
0
votes
0answers
55 views

System Error 8 “Not enough storage is available to process this command.” [duplicate]

System Error 8 "Not enough storage is available to process this command.". Im facing same problem with my app. Using Delphi 2010 + External MFC DLL I changed controls.pas and put on my source ...
0
votes
0answers
67 views

How do I access DWM's “desktop” surface in the recommended manner?

Classic GDI way to access - GetDC(HWND_DESKTOP)/GetWindowDC(HWND_DESKTOP) - has been discouraged by Greg Schechter of Microsoft due off-screen rendering and blitting directly into framebuffer caused ...
1
vote
1answer
149 views

The MFC ComboBox dropdown button is missing after using SetDroppedWidth

This is an Windows MFC programming issue. I have a derived CComboBox which implement its own item draw and measurement. I did a little enhancement that the drop down list width is adjustable based on ...
0
votes
1answer
178 views

GetDIBits: Where's that pixel? (x, y coordinates)

So, I'm testing the following function FindPixel with the following app. The HWND and COLORREF are constants that I've determined with Spy++ and Color Cop for debugging; the final version of the ...
0
votes
1answer
114 views

Access pixels of 24-bit bitmap, without using GetPixel()?

I am currently looking for a way to access and test the individual pixels of a copied bitmap from a target window, without using the very slow GetPixel() method. Given that memDC contains a copy of ...
0
votes
0answers
141 views

SetPixel off-window painting issue?

I have small program that uses SetPixel and paints over a static text control. Since my computer is slow, old box running Windows 7, I have the chance to move the window while the program still ...
2
votes
1answer
115 views

Why System.Drawing.Graphics.GetHdc() increases memory usage

Public Shared Function Render(ByRef pdfDoc As PDFLibNet.PDFWrapper) As System.Drawing.Bitmap Try If pdfDoc IsNot Nothing Then Dim PW As Integer = pdfDoc.PageWidth ...
0
votes
0answers
68 views

Any way to implement a font-family list in GDI or GDI+ or other method in WIN32

In CSS or WPF, we usually define a font family list like this. font-family: Verdana, "Microsoft Yahei", sans-serif; When a CHAR can't display with the first font, It will use the second font... But ...
1
vote
2answers
136 views

SetWindowRgn from GDI+ region

I'm Building a MFC C++ app. I have a need to render a window to the shape of a dynamic string. To archive this, I did the following: Use GDI+ to render the text using GraphicsPath and AddString in ...
1
vote
2answers
118 views

Accessing GDI drawing context pixels directly

I want to read and write pixels directly from/to a drawing context, i.e. during a paint operation on a window. I understand that there are GetPixel/SetPixel functions in Windows GDI, but for big ...
1
vote
1answer
175 views

Drawing a border around my window with GDI, doesn't work?

I'm trying to draw a border around my window, but my code doesn't seem to work. It doesn't draw anything. Could anyone tell me what's wrong with it? LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, ...
1
vote
1answer
106 views

delete font created by CreateFont

If I use CreateFont() to create a font (as non-static variable) and use SelectObject to use itin a function, then before exit that function, I have to select the previous object and use DeleteObject ...
0
votes
3answers
264 views

Excel 2007 VBA win32 dll fuction wierd behavior?

Just for the fun of it I wanted to call a GDI (win32) drawing function from excel-vba. Following are my dll function declarations. All these are imported from win32. Public Declare Function GetDC _ ...
0
votes
1answer
103 views

How to resize client size?

I handle the WM_NCCALCSIZE message, and try to set the dest window client rect manually. case WM_NCCALCSIZE: { RECT *rect = (LPRECT)lParam; if (wParam == TRUE) ...
1
vote
1answer
384 views

Open a File Browser? [closed]

I am making a 3D renderer using Win32 and GDI and currently working on importing .obj files. What is the best way to display a file explorer where the user can choose an .obj file and close the ...
1
vote
2answers
423 views

Fast way to get screenshot of Windows application in C++ (Win32)?

I'm facing a problem when my application needs to get screenshots of other Windows applications. I'm using the function in win32api 'PrintWindow', but this doesn't work well. It is slow and some ...
2
votes
1answer
59 views

GetRandomRgn does not exclude tooltip

There is GetRandomRgn( hdc, hrgn, SYSRGN ) to determine window's system clipping region. When my window is partially covered by other windows I get the correct region. However, if window that covers ...
5
votes
1answer
260 views

Redraw Window Control Synchronously (with blocking method)

What I am trying to do is to cause a control (in the same process, but which I have no control of) to redraw itself, and for my code to block until it finished redrawing. I tried using UpdateWindow ...
1
vote
1answer
70 views

How do I store key-strokes?

I have an empty win32 project. CASE WM_CHAR: under this case I need to store each keystroke in an array, then output it to the screen using TextOut(); I figured it's going to be something like ...
0
votes
1answer
240 views

Polygon function in GDI

I am trying to create a program that draws triangles/various polygons to the window on mouse click. I have the application drawing to the window but I cannot get them to repaint when the window is ...
5
votes
2answers
464 views

How to get list of GDI handles

I'm trying to write, using DLL injection method, application which displays bitmaps used by another program and I want to get for this specific process list of GDI Handles which it is using (list like ...
0
votes
1answer
155 views

Win32: Storing Multi-Line Text in a Buffer

How would I go about displaying multi-line text in Win32? This code is within my GamePaint() function, and I want to write the top 5 High Scores (stored in an attribute of a struct) out to the screen. ...
1
vote
1answer
328 views

GDI+ DrawString() on Windows 8 truncating string

The following code displays the same string differently between Windows 7 (and previous versions of Windows) and Windows 8: Graphics graphics(ps.hdc); std::unique_ptr<StringFormat> ...
6
votes
2answers
340 views

Unable to Calculate Position within Owner-Draw Text

I'm trying to use Visual Studio 2012 to create a Windows Forms application that can place the caret at the current position within a owner-drawn string. However, I've been unable to find a way to ...
0
votes
2answers
103 views

Do Windows GDI APIs return error code in GetLastError?

I know it's an old technology, but I'm curious, do Windows GDI APIs return error codes in GetLastError()? I have several instances when DeleteObject and DeleteDC fail but error code is returned as 0.
1
vote
1answer
152 views

How to draw directly on the screen in windows? [closed]

Say for example that I wanted to draw a red square (or multiple red squares) in the middle of the screen and still be able to see everything not covered by the square, a little bit like a splash ...
1
vote
2answers
626 views

How to draw on the windows desktop using the GDI API? [duplicate]

Possible Duplicate: Draw on screen with GDI+ (or GDI) similar to Inspect I'm attempting to write a snake game that has no windows, but freezes the foreground and draws the snake on top of ...
1
vote
2answers
113 views

combining blits and gdi drawings (do not work, blinks)

I am tryin to combine texture blit with gdi drawing on top of it (by void draw() { StretchDIBits(hdc, 0, 0, CLIENT_X, CLIENT_Y, 0, 0, BUF_X, BUF_Y, buffer, &bmi, DIB_RGB_COLORS, ...
0
votes
1answer
79 views

use InvalideRect() to change a GDI shape

I asked my question yesterday but could not get a correct answer. now ill ask it more clearly. using win api I created a window and a button. infront of the button there is a circle drawn in green ...
1
vote
1answer
137 views

Create or remove GDI shapes on command

I'm creating a win32 application. on the main window there are 5 buttons. in front of each button there is a small circle drawn. (using GDI tools. in case WM_PAINT). now when I press on a button the ...

1 2 3 4 5 7