Hello,
I don't know whats wrong whit this picture
I've a encrypted and decrypted array called $usernames (this was whit _Crypt_EncryptData)
if ubound($userNames)> 0 then
for $i = 0 to ubound($usernames)-1
If $usernames[$i] = GUICtrlRead($combo_usr_select) Then
consolewrite("YES " & $i & " = " & $usernames[$i] & " | ctr = " & GUICtrlRead($combo_usr_select))
Else
consolewrite("NO " & $i & " = " & $usernames[$i] & " | ctr = " & GUICtrlRead($combo_usr_select))
EndIf
next
EndIf
When i try to look up the GUICtrlRead($combo_usr_select) in this array he can't find it :S
in every case the consolewrite say's NO instead of YES when $usernames[$i] And GUICtrlRead($combo_usr_select) are equal.
Did i do something wrong ???
please advice and thanks in advanced.