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:
  1. Private Sub Form_Load()
  2. Form_frmGeopend.lblInventarisatie.visible = true
  3.  
  4. End Sub
  5.  
  6. Private Sub Form_unLoad()
  7. Form_rmGeopend.lblInventarisatie.visible = false

Too bad that this code doesn't work

does somenody know how to solve this problem.

thanx

Bubani