Originally posted by Michael Kienast
Hello Michael, seems like you have reached the max number of private messages. Since im going out of town today, please allow me to answer over this forum.
You can create your own cursors with the editor that came included in PowerBASIC 7, or with an utility like Microangelo.
I assume you want to change the edge color of the Egrid32 cursor... Once you have the cursor you need, you can load it in Egrid32 using the cursor handle you get with the LoadCursor or LoadCursorFromFile API's, and then using this code:
Code:
Result = SendMessage(Hgrid, %EG_LOADCURSOR, %EG_MAINCELLCURSOR, HandleToCursor&)
For more detailed information you can see the help topics for:
EG_READCURSOR, EG_SETCELLCURSOR, EG_SETCOLUMNCURSOR, EG_RESTOREDEFAULTCURSOR

Comment