Is this needed: hDC=form.BeginPaint form.EndPaint grCor $APPTYPE GUI: $TYPECHECK ON DEFINT hDC DIM mybmp As BITMAP mybmp.FillCircle 32,32,31,&HFFFFFF DIM form...
... Not in an .OnPaint routine, because HB manages getting the proper hDC (internal variable hbDC)! Outside, yes, it's needed. ... The bmp_draw.bas demo in...
Hello all, I have written a include file I use for parsing text. I also have a small program showing how to use it. I have posted both programs below. The...
... below. ... Hello, Maybe the line: sR = ExtractNextString(i2_ExtractString, sData,_ "<file>","</file>") should be: sR = ExtractNextString(1, sData,_ ...
... i2_ExtractString is defined as DWORD right after the function definitions in the include file. I just discovered that changing it from dword to long gives...
I have 2 panels which are overlapping, 1 partly on top of other panel The one that is on top of the other I cannot detect the onclick event Is there a way to...
with delphi default styles CONTROL ADD LABEL, hDlg, %IDC_LABEL656416, "Panel1", 128, 113, 33, 109, _ %WS_CHILD OR %WS_VISIBLE OR %WS_CLIPSIBLINGS OR % ...
when doing a repaint of an object the object is automatically going to the foreground could this be changed? so that is it staying at the same position grCor...
... 'with buttons 'you can use a bitmap for colors with 'the .bmp property ... or ownerdraw buttons 'the WS_CLIPSIBLINGS style clips all other overlapping...
Unsure if this is more of point of reference than anything else. I couldn't figure out why I was getting this error message. HotBasic.lib(hPROC.obj) : error...
... winaddr is a reserved symbol for internal data in app types that use GUI FORM objects. ... Seems the solution would be to remove $APPTYPE CONSOLE. That ...
... Guess that's how Delphi degrades performance. It would mean that an extra step (checking .duplicates true or false) would be added to all LIST .AddItems...
Usually comboboxes enable input and you have to set dropdownlist style to disable it. In Hotbasic input is apparently disabled in comboboxes. How can I enable...
... =====cboxedit.bas create f As FORM create cb as combobox style=self.style xor one recreate width=100 additems "aaa","bbb","ccc" itemindex=zero end create ...