Results 1 to 6 of 6
  1. #1
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful

    Question [Help]Agreements[Solved]

    Hey guys quick question. I have an agreement form pop up before the user can run my app. Once they click i agree and open the app, the agreement form stays up and if i try to close it, it also closes the app.

    how do i fix it?
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  2. #2
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    [php]
    Me.hide
    [/php]

    should work, if you dispose the main form, it may close the program


     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. The Following User Says Thank You to NextGen1 For This Useful Post:

    zmansquared (03-15-2010)

  4. #3
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    OK ill try thanks
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  5. #4
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    Yep that works, thanks
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  6. The Following User Says Thank You to zmansquared For This Useful Post:

    NextGen1 (03-15-2010)

  7. #5
    |-|3|_][({}PT3R12's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    UnkwOwnS
    Posts
    449
    Reputation
    12
    Thanks
    472
    My Mood
    Twisted
    Hmm what i like to do is somthing like this (Free Handed):

    'Main Form:
    if(My.Settings.newuser = 1) Then 'User settings... 1 = new user, 2 = already accepted
    Me.Enabled = false 'Shows the form, but its grayed out and un-clickable
    Terms.Show() 'Show the agreement form
    End If

    'Agreement Form(On agree clicked):
    My.Settings.newuser = 2
    My.Settings.Save() 'Not needed, but a good idea ;D
    Form1.Enabled = true

    'Agreement Form(On Disagree Clicked):
    Form1.Close
    Me.close

    Somthing like that could be an alternative to NextGen's

  8. #6
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    i already have the button dim out code

    If checkbox1.Checked = True then
    Button1.Enabled = True
    else
    Button1.Enabled = False
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  9. The Following User Says Thank You to zmansquared For This Useful Post:

    NextGen1 (03-15-2010)

Similar Threads

  1. [Help Request] Please help me solve the hackers!
    By j148148 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 2
    Last Post: 07-05-2011, 12:39 PM
  2. [help]MSGBOX[Solved]
    By Kollie8ice in forum Visual Basic Programming
    Replies: 8
    Last Post: 03-16-2010, 03:30 AM
  3. [Help]CheckBox[Solved]
    By ppl2pass in forum Visual Basic Programming
    Replies: 1
    Last Post: 03-07-2010, 10:54 PM
  4. [Help]PictureBox[Solved]
    By zmansquared in forum Visual Basic Programming
    Replies: 6
    Last Post: 03-07-2010, 10:52 PM
  5. [Help]Progressbar[Solved]
    By Shocker2010 in forum Visual Basic Programming
    Replies: 2
    Last Post: 03-06-2010, 02:03 PM