Quantcast
Channel: AutoIt v3 - General Help and Support
Viewing all articles
Browse latest Browse all 12506

Help with stringreplace

$
0
0
I am writting a crypter \ decrypter but this crypt part isn t working fine.
It replace the string but after that it displays the unecripted string too.
What s the error?
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <String.au3>
#Region ### START Koda GUI section ### Form=
$Form3 = GUICreate("Test string", 405, 294, 202, 132)
$Button1 = GUICtrlCreateButton("Crypt", 168, 256, 75, 25)
$Edit1 = GUICtrlCreateEdit("", 104, 48, 185, 89)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$texto = GUICtrlRead( $Edit1 )
$4 = StringReplace( $texto, "a", "1H890", 1, 1 )
$5 = StringReplace( $texto, "b", "A9D8o", 1, 1 )
GUICtrlSetData( $Edit1, $5 & $4 )
EndSwitch
WEnd


Viewing all articles
Browse latest Browse all 12506

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>