Results 1 to 11 of 11
  1. #1
    -=ProUser=-'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Innocent

    [Help]Register thingy...

    heya all guys, I made 3 projects in vb8-> keygen(for reg. key) -> register app(to register the product) - > the main product(with trial).

    ~how can I do this:
    if I entered the reg. key then clicked the "submit" button then it'll show a msgbox about that ur registered. Then in the main product, it will not be a trial anymore

    ~this are 3 .exes? any help?and also when I clicked a button, it will start a program, is it like this:
    Code:
    process.start ("blabla.exe")
    ?correct me if i'm wrong. Thank you.

  2. #2
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    what the (censored) are you on about?
    i did not understand one word u said.

    You have 3 forms (by the sound of it)
    And u want to open up a exe from your computer?
    Last edited by Pixie; 01-07-2010 at 08:12 PM.

  3. #3
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    as far as a message box goes
    Code:
    If MsgBox("Would You Like To Register This Product", vbOKCancel, "Register?") = vbOK Then
        'dosomething
    End If
    as far as creating your own demo goes, your not even close...(if thats what you want to do)

    and yes process.start to programatically open a file.
    Last edited by NextGen1; 01-04-2010 at 06:26 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




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

    -=ProUser=- (01-04-2010)

  5. #4
    -=ProUser=-'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Innocent
    Quote Originally Posted by ac1d_buRn View Post
    what the fuck are you on about?
    i did not understand one word u said.

    You have 3 forms (by the sound of it)
    And u want to open up a exe from your computer?
    I said, i made 3 projects, so it's 3 programs (*.exe). Get me? Let's say
    program 1- main product with trial
    program 2- app. to register the main product(program 1)
    program 3- keygen //never mind this stuff

    When I run program 2, i'll paste the reg. key from program 3 to program 2 to make my program 1 registered, get me? so the program will be registered, not trial vr.

  6. #5
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    Quote Originally Posted by -=ProUser=- View Post
    I said, i made 3 projects, so it's 3 programs (*.exe). Get me? Let's say
    program 1- main product with trial
    program 2- app. to register the main product(program 1)
    program 3- keygen //never mind this stuff

    When I run program 2, i'll paste the reg. key from program 3 to program 2 to make my program 1 registered, get me? so the program will be registered, not trial vr.
    or you could just use a program that does that foir you?

    like themida or .net reactor or something. they pack your exe and also allow you to set up trials and register stuff very easily.

  7. The Following User Says Thank You to XGelite For This Useful Post:

    -=ProUser=- (01-04-2010)

  8. #6
    -=ProUser=-'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Innocent
    imma try those stuffs.

  9. #7
    Dreamer's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Seattle
    Posts
    8,745
    Reputation
    393
    Thanks
    1,481
    My Mood
    Bitchy
    why 3 .exe when you can add new forms?
    Resource Team: Feb/5/2012 - May/5/2012
    Middleman: April/25/2012 - September/16/12


  10. #8
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Well as far as the trial you could put a ten limit use on ur program?
    To do this you would have to make a label set the text at 10, a settings save then do this code:
    Code:
     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            If my.settings.trial = "0" Then
            msgbox("Your Trial Has Expired. Please Register") 
    Else
            label1.text = My.Settings.Trial
            Label1.text = label1.text - 1
            My.Settings.Trial = label1.text
        End Sub
    so basically if you set the text at 10, each time you use it the 10 will go down 1 so after running ten times it will not work.
    Last edited by Bombsaway707; 01-07-2010 at 07:23 PM.

  11. #9
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by bombsaway707 View Post
    Well as far as the trial you could put a ten limit use on ur program?
    To do this you would have to make a label set the text at 10, a settings save then do this code:
    Code:
     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            If my.settings.trial = "0" Then
            msgbox("Your Trial Has Expired. Please Register") 
    Else
            label1.text = My.Settings.Trial
            Label1.text = label1.text - 1
            My.Settings.Trial = label1.text
        End Sub
    so basically if you set the text at 10, each time you use it the 10 will go down 1 so after running ten times it will not work.
    We can post 100's of ways... He wants it data specific (or says specific)


     


     


     



    The Most complete application MPGH will ever offer - 68%




  12. #10
    hopefordope's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Herndon,VA
    Posts
    264
    Reputation
    9
    Thanks
    86
    My Mood
    Psychedelic
    i guess u neeed to make it again or copy tha code and make it again

  13. #11
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    If you want a real trial, search your favorite search engine, Microsoft has a Template (sample, starter kit) for Trials using Serial, take advantage of it and learn from it, If you can't use it in express, download 2010 beta, open it and use it to learn how to make one for your project in 2008 express....

    I think that will solve all of your issues.


     


     


     



    The Most complete application MPGH will ever offer - 68%




Similar Threads

  1. need help registering(system error)
    By ZBOBY in forum Combat Arms Help
    Replies: 6
    Last Post: 10-09-2010, 11:21 AM
  2. Need help registering for CA
    By snizox15 in forum Combat Arms Help
    Replies: 3
    Last Post: 06-30-2010, 01:33 AM
  3. [Help]Register Vb.net[Solved]
    By HaxPro in forum Visual Basic Programming
    Replies: 3
    Last Post: 03-24-2010, 10:45 AM
  4. help with register
    By EyalZamir in forum WarRock Korea Hacks
    Replies: 1
    Last Post: 05-12-2007, 11:45 AM
  5. help registering
    By Skurdz in forum WarRock - International Hacks
    Replies: 6
    Last Post: 07-13-2006, 07:26 PM