ANSI-Binary, il mio primo programma utile

« Older   Newer »
  Share  
stoke
CAT_IMG Posted on 24/6/2009, 11:27     +1   -1




un ANSI-Binnary convertitior che a qualcuno potrebbe servire (io lo uso per cryptare messaggi) come sempre le caratteristiche

  • Graficamente ottimo

  • completamente funzionante e senza bug di nessun genere

  • la mia prima applicazione utile XDXDXDXDXDXDXD


passiamo al download

mediafire:

http://www.mediafire.com/?sharekey=151e460...e018c8114394287

sorcio:

SPOILER (click to view)
#include <buttonconstants.au3>
#include <editconstants.au3>
#include <guiconstantsex.au3>
#include <staticconstants.au3>
#include <windowsconstants.au3>
#include <skincrafter.au3>

SkinStartLibrary()
$Form1 = GUICreate("Convertitor", 633, 380, 192, 124)
AddSkin($Form1,"skin.skf")
$Label1 = GUICtrlCreateLabel("Binary to ANSI", 272, 24, 81, 17)
$Input1 = GUICtrlCreateInput("Binary", 40, 64, 561, 21)
$Label2 = GUICtrlCreateLabel("ANSI to Bynary", 264, 168, 92, 17)
$Input2 = GUICtrlCreateInput("ANSI", 40, 216, 561, 21)
GUICtrlSetCursor (-1, 5)
$Button1 = GUICtrlCreateButton("Binary to ANSI", 152, 104, 305, 41, 0)
$Button2 = GUICtrlCreateButton("ANSI to Binary", 152, 272, 305, 41, 0)
$Label3 = GUICtrlCreateLabel("Copyright di Stoke non è possibile copiarlo, distribuirlo o venderlo senza il permesso dell'autore", 104, 352, 445, 17)
GUISetState(@SW_SHOW)


While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$a=GUICtrlRead($Input1)
$ba=BinaryToString($a)
msgbox(0,"binary to ANSI",$ba)
Case $Button2
$b=GUICtrlRead($Input2)
$ab=StringToBinary($b)
msgbox(0,"ANSI to Binary",$ab)
EndSwitch
WEnd


permettetemi un piccolo spoiler

SPOILER (click to view)
@antru: sei contento adesso? XDXDXDXD
 
Top
antru
CAT_IMG Posted on 24/6/2009, 12:39     +1   -1




Ahahahahah.... finalmente si! xD Comunque le grafiche sono troppo belle! Ma come le fai? Io ho provato s scaricare skin crafter ma non riesco a farlo funzare... mi potresti aiutare?
 
Top
stoke
CAT_IMG Posted on 24/6/2009, 12:46     +1   -1




ok ti mando un pm dopo
 
Top
antru
CAT_IMG Posted on 24/6/2009, 12:59     +1   -1




Ok, grazie!
 
Top
erma96
CAT_IMG Posted on 25/6/2009, 07:32     +1   -1




Potrei saperlo anchio? Mi interesserebbe veramente molto.
 
Top
|=Z3z!=|
CAT_IMG Posted on 29/6/2009, 21:26     +1   -1




E' semplice fare la grafiuca con skin crafter x°D
 
Top
erma96
CAT_IMG Posted on 30/6/2009, 11:05     +1   -1




il problema è che non mi funziona :(
 
Top
stoke
CAT_IMG Posted on 9/7/2009, 18:16     +1   -1




la guida per skincrafter l'ho scritta in guide
 
Top
eyobi
CAT_IMG Posted on 31/7/2009, 11:31     +1   -1




grazie
 
Top
8 replies since 24/6/2009, 11:27   156 views
  Share