Q: I am running Visual dBASE 5.7. For interface consistency reasons I need to replace the Borland icons in MSGBOX() with the equivalent Microsoft ones. Is this possible? How?
A: Yes, use the following code:
extern CINT MessageBox (
CHANDLE,CSTRING,CSTRING,CINT ) USER
msgbox("Borland style message","header",33)
messagebox(0,"Microsoft style message","header",33)
In your Include directory, look at WinApi.h. The sections on
should tell you what numbers correspond to which buttons, images, etc.