Yes, the module with the VBA code is seperate from the form with the labels that I want to update.
I tried to creat a module that simplay has the following code, but it is giving me an error on update.LB1.Capation = "In Progress"
Function DD()
Update.LB1.Capation = p
End Function
Do I need to tell the system where LB1 is located (i.e. identify the form in some way)?
Main Topics
Browse All Topics





by: egl1044Posted on 2009-09-18 at 05:51:56ID: 25365383
If your code isn't within scope of the form. Unless I completely mis-understood your question :)
Update.LB1.Caption = "Your message here"