in A form i have 3 textbox, text1,text2,text3. And my code as below :
Is it have any others shortcut instead of using & ?
Code:
for i =1 to 3
cObject = "text"+str(i,1)
cMsg = "ERR_MSG"+STR(i,1)+"_LOC"
With &cObject
IF .value <= 0
MESSAGEBOX(&cMSG,0+48,ERR_TTL_LOC)
.SetFocus()
RETURN
ENDIF
Endwith
endfor
Is it have any others shortcut instead of using & ?