hi, I found for the 1st time, a source-code where a guy uses "!" instead of "." to access the controls of a Form !

eg:

Code:
Msgbox Form1.Text1.Text
is the same as :

Code:
Msgbox Form1!Text1.text
(After making my tests, I noted that: use the "!" will point only to the controls, and not work with properties! (Me!Caption will not work))

But, i need more informations about that, is ther something else i dont know ?