Hello there,
In Access i have made several forms. But there is one form that stays on the foreground all the time, called frmGeopend. On that form i have a label, called lblInventarisatie. That label is invisible. Now i want that label to be visible as soon as i opened the form frmInventarisatie. And when i close lblInventarisatie the label on frmGeopend must be invisible again. I tried te follow code:
frmInventarisatie:
VB Code:
Private Sub Form_Load() Form_frmGeopend.lblInventarisatie.visible = true End Sub Private Sub Form_unLoad() Form_rmGeopend.lblInventarisatie.visible = false
Too bad that this code doesn't work
does somenody know how to solve this problem.
thanx
Bubani




Reply With Quote