SOLVED!
How to get Window HWND from dialID
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2025-02-21 07:39 AM
‎2025-02-21
07:39 AM
I am making Modal Dialog By Archicad27 API.
Windows 10 and VisualStudio C++2019.
I hope get Window HWND from dialID.
Pilease teach me.
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Accepted Solutions
Solution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
4 weeks ago
You can get the HWND of a dialog by calling the
DG_DLL_EXPORT void* CCALL DGGetDialogWindow (short dialId)
function.
The return value should be casted to HWND. This function returns an NSWindow* on macintosh.
1 REPLY 1
Solution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
4 weeks ago
You can get the HWND of a dialog by calling the
DG_DLL_EXPORT void* CCALL DGGetDialogWindow (short dialId)
function.
The return value should be casted to HWND. This function returns an NSWindow* on macintosh.