How 2 disable Auto calculation In VB?
I got problem with VB .... which making auto space for calculating the number's and the symbols .... Like " + = / - "
and my problem is i want to make an if statment for recordset like and one of the fields have "-" between the words .... and i got problem with VB that saparate the words like substract them ...
this is an example what I am facing :confused: :
IF rstStudent!student - id = txtLoginID.text Then
Do this Function ....
Else
Do this Function ....
End IF
Note : You can see how VB Making Space between Student and "-" and id ??? and it should be like this :
IF rstStudent!student-id = txtLoginID.text Then
How to avoid this in VB ??
Thanks
BMH