Hello,
I have code on labels that when moused over one lable it opens up another subset of lables to choose from. In addition, it changes the font from blue to yellow when moused over and makes sure that every other label remains blue. The problem is that there is an abundance of flickering going on that I don't know how to stop. It is out of control.
Here is example of code from one of the 5 side menu lables (keep in mind that each of these opens up a subset of labels which can be anywhere from 1 to 7 lables to the side of it.)
Thank you in advance for any assistance you may offer me on this,
Sherry
I have code on labels that when moused over one lable it opens up another subset of lables to choose from. In addition, it changes the font from blue to yellow when moused over and makes sure that every other label remains blue. The problem is that there is an abundance of flickering going on that I don't know how to stop. It is out of control.
Here is example of code from one of the 5 side menu lables (keep in mind that each of these opens up a subset of labels which can be anywhere from 1 to 7 lables to the side of it.)
Code:
Private Sub lblMenu_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
'Change forecolors of lables
Me.lblHandheld.ForeColor = 16777164 'blue
Me.lblMenu.ForeColor = 65535 'yellow
Me.lblDBAdmin.ForeColor = 16777164
Me.lblReports.ForeColor = 16777164
Me.lblComments.ForeColor = 16777164
Me.lblEquipmentChanges.ForeColor = 16777164
Me.lblLocationChanges.ForeColor = 16777164
Me.lblResolveOutstandingComments.ForeColor = 16777164
Me.lblReviewOpenWork.ForeColor = 16777164
Me.lblWorkOrderChanges.ForeColor = 16777164
Me.lblGeneratePMs.ForeColor = 16777164
Me.lblExitDatabase.ForeColor = 16777164
'Hide label options for handheld
Me.BoxHandhelds.Visible = False
Me.lblReviewHandheldData.Visible = False
Me.lblUploadFromHandheld.Visible = False
Me.lblDownloadtoHandheld.Visible = False
Me.LineHandheld.Visible = False
'Unhide label options for Main Menu
Me.BoxMainMenu.Visible = True
Me.lblComments.Visible = True
Me.lblEquipmentChanges.Visible = True
Me.lblLocationChanges.Visible = True
Me.lblResolveOutstandingComments.Visible = True
Me.lblReviewOpenWork.Visible = True
Me.lblWorkOrderChanges.Visible = True
Me.lblGeneratePMs.Visible = True
Me.LineMainmenu.Visible = True
'Hide label options for DB Admin
Me.BoxDBAdmin.Visible = False
Me.lblActionRegister.Visible = False
Me.lblEmployees.Visible = False
Me.lblESHInstructions.Visible = False
Me.LineDBAdmin.Visible = False
'Hide label options for Reports
Me.LineReports.Visible = False
Me.BoxReports.Visible = False
Me.lblSummaryReports.Visible = False
Thank you in advance for any assistance you may offer me on this,
Sherry