ja pouzivam sice VB6, ale malo by to fungovať podobne.
Kód:
Option Explicit
Dim text As String
Private Sub Form_Load()
text = Text1.text
End Sub
Private Sub Command1_Click()
If Text1.text <> text Then
MsgBox ("Text sa zmenil.")
text = Text1.text
End If
End Sub
takto isto to zrejme vo VB 2008 nebude, ale získal si aspoň inšpiráciu v akom duchu to písať (teda ak si chcel to)