RobHVB6Sql
Programmer
I have looked at several posts here but no answer.
I have a simple 8 bit BMP image on a command button that works fine on some forms, but not others. Initial forms are OK, but once the user has navigated via SSTab and this code it shows the image behind it, but it works fine. Is the code here causing this? Properties of the CommandButton? or Form? How can I show the image /button again.
PS A PictureBox works fine, but I would rather use a CommandButton.
Rob Hasard
Data Manager -Genetic Services
(VB6 /SQL 7.0)
I have a simple 8 bit BMP image on a command button that works fine on some forms, but not others. Initial forms are OK, but once the user has navigated via SSTab and this code it shows the image behind it, but it works fine. Is the code here causing this? Properties of the CommandButton? or Form? How can I show the image /button again.
PS A PictureBox works fine, but I would rather use a CommandButton.
Code:
Dim cx As CCreateHook
Set cx = New CCreateHook
'Create the Teebo ComboBoxes and make changes
Load frmGDiagnosis
' We are done hooking. Because the form is modal, we will remove the hook before we show the form.
Set cx = Nothing
'display procedures add/edit screen
frmGDiagnosis.Show vbModal
Rob Hasard
Data Manager -Genetic Services
(VB6 /SQL 7.0)