Questions tagged [comdlg32]

The Common Dialog Box Library contains a set of dialog boxes for performing common application tasks, such as opening files, choosing color values, and printing documents.

21 questions
0
votes
0 answers

Color of SYSLINK controls in themed application

I need to know what the actual color of the Windows SYSLINK controls is, because I need to draw some other elements that should have exactly that same color. For the moment I use GetSysColor(COLOR_HOTLIGHT) which is the correct color, but is this…
Jabberwocky
  • 48,281
  • 17
  • 65
  • 115
0
votes
3 answers

Common Font Dialog (comdlg32.ocx) not working on Windows 7 calling from JavaScript in IE

I tried the font dialog in VB6 with a form app and it could launch font dialog, but when I tried to do the same in javascript, it failed with exception: Could not complete the operation due to error 800a8000 at line calling ShowFont(). Here is my…
sproketboy
  • 8,967
  • 18
  • 65
  • 95
0
votes
1 answer

GetOpenFileName with SDL2

I wrote a c++ app using SDL2 to simulate an editBox. It worked ok untill i added a function to open and select a file on Windows explorer. Precisely after i click "Open" on the file browser, i can not use TTF_OpenFont() anymore... I am still able to…
M.Jolly
  • 1
  • 6
0
votes
0 answers

Mingw64 not linking due to undefined references

I started to learn mingw64 and tried to compile this cpp file using netbeans 8.0.1 What I need to see is the dialog of printing of windows and to print the text "Hola mundo". #include #include #include void…
Mack Paul
  • 9
  • 1
0
votes
1 answer

Is there something like CDN_FILECANCEL analogous to CDN_FILEOK for getting when the user chooses Cancel in GetOpenFileName()?

For cross-platform parity reasons, my GetOpenFileName() specifies no owner and I explicitly disable all toplevel windows myself. The problem is re-enabling. In order to re-enable these windows correctly, I need to re-enable them before the dialog…
andlabs
  • 11,290
  • 1
  • 31
  • 52
0
votes
1 answer

Close Find/Replace Dialog programmatically

How do I close the Windows Find and Replace dialog boxes programmatically ensuring the FINDMSGSTRING message is sent so I can get the settings to save them? DestroyWindow does not send the message.
Col_Blimp
  • 779
  • 2
  • 8
  • 26
1
2