|
-
Jun 11th, 2000, 07:56 PM
#1
Thread Starter
Lively Member
Can you 'watch' form properties. I've tried this but it doesn't work.
frm1.text1.text="different value"
-
Jun 11th, 2000, 08:39 PM
#2
Member
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
-
Jun 12th, 2000, 02:09 PM
#3
Thread Starter
Lively Member
Yes you can watch form properties.
It was as I put in my first post except that now for some reason its working!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|