Couple things:
1).
.Contacts txtCust.Text ' My Parameter
Contacts is a user-coded property, I think.
So check if data type of txtCust.Text matches passing parameter of property.

2).
If TextBox property MAX is set to something then it is Fixed Length String, wich is different Data Type than Variable length string. Check if this is the case.
By the way there are limitation of passing Fixed length Strings to the functions, subs and ....


3).
Some times Statament With does not work properly if before WEND you have other statamens using END keyword ( such as If_EndIF). It is getting worse with User-Defined Classes as Properties.

Hope it will help you, Let me know.


[This message has been edited by LG (edited 02-14-2000).]