Idee e consigli sui programmi

« Older   Newer »
 
  Share  
.
  1.  
    .
    Avatar
    Group
    Member
    Posts
    1,822

    Status
    Postate qui se avete qualche proposta sulla realizzazione di un programma da parte di MiG...
    già che passate di qua, se avete abilità grafiche o di programmazione potete entrare nel progetto (Topic Reclutamento)

    A voi le Idee.....
     
    Top
    .
  2. W-la-congrega
     
    .

    User deleted


    Mp3 player è chiedere troppo ?
     
    Top
    .
  3.  
    .
    Avatar
    Group
    Member
    Posts
    1,822

    Status
    è una buona idea... vedrò cosa riesco a fare...

    Se qualche programmatore magari si prende l'impegno, perchè io sto ancora lavorando sull'editor, altrimenti richiederà un po' + di tempo...
     
    Top
    .
  4.  
    .
    Avatar
    Group
    Member
    Posts
    1,822

    Status
    Anzi, ho deciso di farlo...:P c'è la Shit Version nel topic a lui dedicato... intanto l'editor resta un caso aperto...
     
    Top
    .
  5. Ckids97
     
    .

    User deleted


    Sistema Operativo
     
    Top
    .
  6. W-la-congrega
     
    .

    User deleted


    CITAZIONE (Ckids97 @ 24/9/2009, 17:54)
    Sistema Operativo

    De piùùù xDDDD
    Invece che dite di una skin per XP, magari anche un boot screen ed un login screen ?
    Un mega wallpaper per lo sfondo ?
     
    Top
    .
  7. Ckids97
     
    .

    User deleted


    CITAZIONE (W-la-congrega @ 24/9/2009, 19:39)
    CITAZIONE (Ckids97 @ 24/9/2009, 17:54)
    Sistema Operativo

    De piùùù xDDDD
    Invece che dite di una skin per XP, magari anche un boot screen ed un login screen ?
    Un mega wallpaper per lo sfondo ?

    Creiamo u computer? xD
    Comunque mi sembra banalina una skin :)
     
    Top
    .
  8. Omniano93
     
    .

    User deleted


    Io sto facendo un text editor...
     
    Top
    .
  9. W-la-congrega
     
    .

    User deleted


    CITAZIONE (Ckids97 @ 24/9/2009, 20:09)
    CITAZIONE (W-la-congrega @ 24/9/2009, 19:39)
    De piùùù xDDDD
    Invece che dite di una skin per XP, magari anche un boot screen ed un login screen ?
    Un mega wallpaper per lo sfondo ?

    Creiamo u computer? xD
    Comunque mi sembra banalina una skin :)

    Banale, ma si inzia da quella poi si và avanti, cioè toccherebbe avere pure la skin :D.

    CITAZIONE (Omniano93 @ 24/9/2009, 20:09)
    Io sto facendo un text editor...

    Non ce n'era già un altro in sviluppo ??
     
    Top
    .
  10. ((((MAC))))
     
    .

    User deleted


    raga io sto svillupando un cripter in autoit ;) un programma per encriptare parole ecc ec ;) vi sposto il source ;)

    SPOILER (click to view)
    CODICE
    #cs**********************************************************
    ********************Title:Encrypter*************************
    ********************Vers:1.0*********************************
    ********************created by MAC*************************
    #ce**********************************************************
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <String.au3>
    Opt("MustDeclareVars", 1)
    _Main()

    Func _Main()
    local $Form1,$Edit1,$Encrypt,$Decrypt,$Inputpass, $string
    $Form1 = GUICreate("Encrypter", 475, 436, 199, 124)
    $Edit1 = GUICtrlCreateEdit("", 0, 0, 473, 345)
    $Encrypt = GUICtrlCreateButton("Encrypt", 8, 352, 201, 33)
    $Decrypt = GUICtrlCreateButton("Decrypt", 256, 352, 201, 33)
    $Inputpass = GUICtrlCreateInput("Input", 16, 400, 201, 21)
    GUISetState(@SW_SHOW)


    While 1
           switch GuiGetMSG()
           Case $GUI_EVENT_CLOSE
                           Exit
           Case $Encrypt
                   $string = GUICtrlRead($Edit1)
               GUICtrlSetData($Edit1, _StringEncrypt(1, $string ,guictrlread($Inputpass)))
           Case $Decrypt
                   $string = Guictrlread($Edit1)
                   Guictrlsetdata($Edit1, _StringEncrypt(0, $string, guictrlread($Inputpass)))
                   EndSwitch
           
    WEnd
    Endfunc
     
    Top
    .
  11. W-la-congrega
     
    .

    User deleted


    CITAZIONE (((((MAC)))) @ 24/9/2009, 20:55)
    raga io sto svillupando un cripter in autoit ;) un programma per encriptare parole ecc ec ;) vi sposto il source ;)

    SPOILER (click to view)
    CODICE
    #cs**********************************************************
    ********************Title:Encrypter*************************
    ********************Vers:1.0*********************************
    ********************created by MAC*************************
    #ce**********************************************************
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <String.au3>
    Opt("MustDeclareVars", 1)
    _Main()

    Func _Main()
    local $Form1,$Edit1,$Encrypt,$Decrypt,$Inputpass, $string
    $Form1 = GUICreate("Encrypter", 475, 436, 199, 124)
    $Edit1 = GUICtrlCreateEdit("", 0, 0, 473, 345)
    $Encrypt = GUICtrlCreateButton("Encrypt", 8, 352, 201, 33)
    $Decrypt = GUICtrlCreateButton("Decrypt", 256, 352, 201, 33)
    $Inputpass = GUICtrlCreateInput("Input", 16, 400, 201, 21)
    GUISetState(@SW_SHOW)


    While 1
           switch GuiGetMSG()
           Case $GUI_EVENT_CLOSE
                           Exit
           Case $Encrypt
                   $string = GUICtrlRead($Edit1)
               GUICtrlSetData($Edit1, _StringEncrypt(1, $string ,guictrlread($Inputpass)))
           Case $Decrypt
                   $string = Guictrlread($Edit1)
                   Guictrlsetdata($Edit1, _StringEncrypt(0, $string, guictrlread($Inputpass)))
                   EndSwitch
           
    WEnd
    Endfunc

    Ottimo lavoro, bravo ! ;)
    Molto utile.
    Ricorda di mettere l'about al geniv. :D
     
    Top
    .
  12.  
    .
    Avatar
    Group
    Member
    Posts
    1,822

    Status
    esatto, stavo pensando a un programma per nascondere file dietro altri file...
    risulterebbe utile?
     
    Top
    .
  13. W-la-congrega
     
    .

    User deleted


    CITAZIONE (expert95 @ 25/9/2009, 20:17)
    esatto, stavo pensando a un programma per nascondere file dietro altri file...
    risulterebbe utile?

    A me sarebbe utile, agli altri non so.
     
    Top
    .
  14. Omniano93
     
    .

    User deleted


    CITAZIONE (expert95 @ 25/9/2009, 20:17)
    esatto, stavo pensando a un programma per nascondere file dietro altri file...
    risulterebbe utile?

    Si può fare, basta fare una steganografia.
     
    Top
    .
  15.  
    .
    Avatar
    Group
    Member
    Posts
    1,822

    Status
    CITAZIONE (Omniano93 @ 25/9/2009, 22:08)
    CITAZIONE (expert95 @ 25/9/2009, 20:17)
    esatto, stavo pensando a un programma per nascondere file dietro altri file...
    risulterebbe utile?

    Si può fare, basta fare una steganografia.

    Parliamo la stessa lingua noi!!!
     
    Top
    .
50 replies since 21/9/2009, 14:16   1820 views
  Share  
.