Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Chris Gaskell

Pages: [1]
1
EZGUI 5 support forum / EZC file for MLG
« on: March 06, 2024, 04:04:00 am »
This is the MLG EZC file that was provided with My Little Grid:

<<<DESC>>>
   My Little Grid
<<<END>>>
<<<CLASS>>>
   MYLITTLEGRID
<<<END>>>
<<<DLL>>>
   mlg.dll
<<<END>>>

' change paths to match the ones on your system !
<<<INCLUDES>>>
   #INCLUDE "c:\mlg\MLG_DLLPB.INC"
<<<END>>>
' syntax:    FunctionName|par1
' par1 must be a string in quotes or a numeric value (long)
' must be actual function name in DLL !
' PB function names are converted to all CAPS when compiled.
<<<REGISTER>>>
   MLG_INIT
<<<END>>>
' Property Character|Style|Style Numeric Value
' or
' Property Character|Style Description|Style|Style Numeric Value
' maximum of 30 styles allowed
' extend styles must have [EX] before value
' Note: %WS_CHILD and %WS_VISIBLE are always assumed so don't define
<<<STYLES>>>
   F|Flat Border|%WS_BORDER|&H800000
   R|Raised Border|%WS_DLGFRAME|&H400000
   S|Sunken Border|%WS_EX_CLIENTEDGE|[EX]&H00000200
   T|Tabstop|%WS_TABSTOP|&H10000
<<<END>>>
<<<USECOLORMSG>>>
   NO
<<<END>>>
<<<USEFONTMSG>>>
   NO
<<<END>>
<<<DEFAULTTEXT>>>
   e3/r50/c8/b3/m1First,Second,Third
<<<END>>>
<<<NOTIFY>>>
<<<END>>>
<<<INITCODE>>>
   MLG_Init 
<<<END>>>
<<<CODE>>>

<<<END>>>

2
EZGUI 5 support forum / EZC file for Phoenix Grid
« on: February 25, 2024, 05:23:38 am »
Below is the contents of EZC file I use for Phoenix Grid:
I hope that it may be of use to some of you


<<<DESC>>>
   Phoenix Grid Control
<<<END>>>
<<<CLASS>>>
   Phnx_Grid_Class32
<<<END>>>
<<<DLL>>>
   Grid32Ex.dll
<<<END>>>
<<<INCLUDES>>>
   #INCLUDE "GRID32EX.INC"
<<<END>>>
<<<REGISTER>>>
    INITGRIDCONTROL
<<<END>>>
<<<STYLES>>>
     A|Has Caption|%GCS_CAPTION|&H0001??
     B|Show Horiz G Lines|%GCS_HORZGRIDLINES|&H0002??
     C|Show Vert G Lines|%GCS_VERTGRIDLINES|&H0004??
     D|Flat Header|%GCS_FLATHEADER|&H0008??
     E|Read Only|%GCS_READONLY|&H0010??
     F|Show Tool Tips|%GCS_TOOLTIPS|&H0020??
     G|Two Click Activation|%GCS_TWOCLICKACTIVATE|&H0040??
     H|Cycle State on Click|%GCS_CYCLESTATEONCLICK|&H0080??
     I|Drag Drop Edit|%GCS_DRAGDROPEDIT|&H0100??
     J|Allow Custom Edit|%GCS_CUSTOMEDITOR|&H0200??
     K|Disable Scroll Bars|%GCS_DISABLENOSCROLL|&H0400??
     L|Text Call Back|%GCS_TEXTCALLBACK|&H0800??
     M|Set Selection|%GCS_SETSELECTION|&H1000??
     N|Always Show Selection|%GCS_SHOWSELALWAYS|&H2000??
     O|No Beep|%GCS_SILENT|&H4000??
     P|Edit On Focus|%GCS_EX_LABELEDITONFOCUS|[EX]&H0001??
     Q|Clip Cell|%GCS_EX_CLIPCELL|[EX]&H0002??
     R|Auto Size Col|%GCS_EX_AUTOSIZEONEXPAND|[EX]&H0004??
     S|Busy Tip|%GCS_EX_BUSYTIP|[EX]&H0008??
     T|Grid Filled|%GCS_EX_GRIDFILLED|[EX]&H0010??
     U|Allow Only Single Select|%GCS_EX_SINGLESELECT|[EX]&H0020??
     V|Hide Focus Rectangle|%GCS_EX_NOFOCUSRECT|[EX]&H0040??
     W|Hide Node Lines|%GCS_EX_NONODELINES|[EX]&H0080??
     X|Fixed Width Edit|%GCS_EX_LABELEDITFIXED|[EX]&H0100??
     Y|Sort Drop List|%GCS_EX_LABELEDITSORT|[EX]&H0200??
     Z|End Edit On Drop Click|%GCS_EX_LABELEDITENDONCLICK|[EX]&H0400??
     #|Background Colour Border|%GCS_EX_BKGNDCOLORTOBORDER|[EX]&H0800??
   
<<<END>>>
<<<USECOLORMSG>>>
   YES
<<<END>>>
<<<USEFONTMSG>>>
   YES
<<<END>>>
<<<DEFAULTTEXT>>>
   50,100
<<<END>>>
<<<NOTIFY>>>
<<<END>>>
<<<INITCODE>>>
     INITGRIDCONTROL
<<<END>>>
<<<CODE>>>

<<<END>>>


Pages: [1]