RE: COMING REAL SOON !
Bernie Ryan wrote:
> -- Second if I find no built-in description for LPITEM
> -- structure in the library
> -- I can add the structure discription to the library through
> -- the piston.ew file Or I can create it immediately
> -- just for this one program like this.
> --
> lvitem = struc(
> "uint : mask : 1 "&
> "int : iItem : 1 "&
> "int : iSubItem : 1 "&
> "uint : state : 1 "&
> "uint : stateMask : 1 "&
> "pointer : pszText : 1 "&
> "int : cchTextMax : 1 "&
> "int : iImage : 1 "&
> "dword : lParam : 1 "&
> "int : iIndent : 1 ")
CORRECTION THIS CODE SHOULD HAVE READ
-- Second I find no built-in description for LVITEM
-- structure in the library
-- I can add this permanetly to the library through
-- the piston.ew file Or I can create it immediately
-- just for this one program like this.
--
lvitem = struc(
"mask :uint : 1 "&
"iItem :int : 1 "&
"iSubItem :int : 1 "&
"state :uint : 1 "&
"stateMask :uint : 1 "&
"pszText :pointer : 1 "&
"cchTextMax :int : 1 "&
"iImage :int : 1 "&
"lParam :dword : 1 "&
"iIndent :int : 1 ")
Bernie
|
Not Categorized, Please Help
|
|