I am trying to create an editable Windows listview in WinBlitz 3d (like here: http://www.codeproject.com/listctrl/listeditor.asp ). I have the listview, but I don't know how to make it editable.
I think that the constant I want to pass to it as a style parameter is LVS_EDITLABELS. I did find the constant. The only place I could find the actual number (rather than just its name) after a 30 minute search all over the Internet was here: http://vbnet.mvps.org/index.html?code/comctl/lvmembers.htm
Now. VB has the constant written as Const LVS_EDITLABELS = &H200. Blitz does not understand the H part (already changed the & to $). How can I make it so that Blitz knows what it's doing?
Anyway, here's the main question so you don't forget in the midst of my ramblings: How do I turn a regular listview into an editable listview? I think that it is with the use of the LVS_EDITLABELS, but I can't find out the value for that flag that Blitz would use.
If Win32 just took strings... or normal numbers... none of this rubbish would happen.
I think that the constant I want to pass to it as a style parameter is LVS_EDITLABELS. I did find the constant. The only place I could find the actual number (rather than just its name) after a 30 minute search all over the Internet was here: http://vbnet.mvps.org/index.html?code/comctl/lvmembers.htm
Now. VB has the constant written as Const LVS_EDITLABELS = &H200. Blitz does not understand the H part (already changed the & to $). How can I make it so that Blitz knows what it's doing?
Anyway, here's the main question so you don't forget in the midst of my ramblings: How do I turn a regular listview into an editable listview? I think that it is with the use of the LVS_EDITLABELS, but I can't find out the value for that flag that Blitz would use.
If Win32 just took strings... or normal numbers... none of this rubbish would happen.