Ejemplo:
Código: Seleccionar todo
If $Var= "" Then
MsgBox(0,'Error', 'Error')
Exit
EndIf
Código: Seleccionar todo
If $Var= "" Then
MsgBox(0,'Error', 'Error')
Exit
EndIf
Có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