M
Mike Thomas
Access 2000
In a VBA module which imports data I am trying to display a splash form
which provides info as the routine progresses.
For some reason the form is transparent. I can see the form's border and
the caption, but the body of the form and the caption therein are
tranparent.
Here is the code:
Public Function ManageImportfromJVK() As Integer
ManageImportfromJVK = 1
DoCmd.OpenForm "splash"
Forms!splash.lblMain.Caption = "Bringing in JKV Data"
Forms!splash.Visible = True
.........
Is there a setting in the form I can change, or a parameter I can use when
opening the form which will make the body of the form visible?
Many thanks
Mike Thomas
In a VBA module which imports data I am trying to display a splash form
which provides info as the routine progresses.
For some reason the form is transparent. I can see the form's border and
the caption, but the body of the form and the caption therein are
tranparent.
Here is the code:
Public Function ManageImportfromJVK() As Integer
ManageImportfromJVK = 1
DoCmd.OpenForm "splash"
Forms!splash.lblMain.Caption = "Bringing in JKV Data"
Forms!splash.Visible = True
.........
Is there a setting in the form I can change, or a parameter I can use when
opening the form which will make the body of the form visible?
Many thanks
Mike Thomas