You can add a DG::SearchEdit control to your dialog to achieve this
(please see DGEditControl.hpp). Use a TextEdit entry in the resource for
this control. You can add some info hint that appears with gray color
when the edit control is empty by calli...
Sorry, but the answer is no. The owner drawn status is set to the whole
column of the listbox. So all tab fields in that column will be owner
drawn for each list row and the listbox will not draw any content for
those tabfields. So you should do the ...
Hi, you can get the drawing context of the listbox tabfield easily then
draw anything on that surface. Please check this sample code: void
SampleDialog::ListBoxTabFieldUpdate (const
DG::ListBoxTabItemUpdateEvent& ev) { if (ev.GetSource () ==
&sampleL...
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.