mcdhappy80
Registered User.
- Local time
- Today, 14:08
- Joined
- Jun 22, 2009
- Messages
- 347
Maybe it's just me but I think there is some kind of problem with the database I started developing a month ago.
The first version of database is finished and I made a backup of that copy.
Now I want to modify something and this is what I've tried:
1) I've added one more table in which I will store some settings options;
2) I've added another form and I made it a Display form;
3) I've bound that form to tblSettings;
4) I've put the following code in that forms OnLoad event:
Here's what is strange to me:
When I add breakpoint to the bolded line of code, and open the form I don't enter the debug mode. It's like I never put the break point in the first place.
I don't remember I had this problem during the development process eve with the OnLoad event.
Can someone tell what may be causing this?
Thank You
The first version of database is finished and I made a backup of that copy.
Now I want to modify something and this is what I've tried:
1) I've added one more table in which I will store some settings options;
2) I've added another form and I made it a Display form;
3) I've bound that form to tblSettings;
4) I've put the following code in that forms OnLoad event:
Code:
Private Sub Form_Load()
Dim licenca As String
[B]licenca = Forms![frmLicenca]![txtLicenca][/B]
If IsNull(licenca) Then
Me.lblLicenca.Visible = True
End If
When I add breakpoint to the bolded line of code, and open the form I don't enter the debug mode. It's like I never put the break point in the first place.
I don't remember I had this problem during the development process eve with the OnLoad event.
Can someone tell what may be causing this?
Thank You