Can you 'watch' form properties. I've tried this but it doesn't work.
frm1.text1.text="different value"
Printable View
Can you 'watch' form properties. I've tried this but it doesn't work.
frm1.text1.text="different value"
I don't think you can watch form properties directly. You can do something like this:
Private Sub Form1_Change()
'assign text to local string
Dim str As String
str = Text1.Text
End Sub
Add the watch for str in the Form1_Change scope and break on that.
Hope this helps,
Dan
Yes you can watch form properties.
It was as I put in my first post except that now for some reason its working!