Re: question about List text colors
- Posted by "Cuny, David at DSS" <David.Cuny at DSS.CA.GOV> Jan 24, 2000
- 472 views
Brian Jackson wrote: > What I don't understand is how to access > the InsertItem function within the TreeView > class in Euphoria. I seem to be missing something here. The *native* Win32 API is just C calls, but you can talk to it with C, C++, Assembler, BASIC, Euphoria - whatever. The C++ stuff (especially MFC) is just a wrapper around the C calls. InsertItem is implemented with a SendMessage( hListView, LVM_INSERTITEM, 0, hItem ). -- David Cuny