Ejemplo:
Código: Seleccionar todo
If $Var= "" Then
	MsgBox(0,'Error', 'Error')
	Exit
EndIfCódigo: Seleccionar todo
If $Var= "" Then
	MsgBox(0,'Error', 'Error')
	Exit
EndIfCódigo: Seleccionar todo
$Var=""
If $Var = "" Then Msg()
Func Msg()
MsgBox(0,'Error', 'Error')
exit
EndFunc

Dany escribió:Por lo momentos no se puede. pero algo así te serviría.
saludosCódigo: Seleccionar todo
$Var="" If $Var = "" Then Msg() Func Msg() MsgBox(0,'Error', 'Error') exit EndFunc