Results 1 to 6 of 6
  1. #1
    Liquidjdog's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Australia
    Posts
    141
    Reputation
    10
    Thanks
    871
    My Mood
    Fine

    Randomized Form Title - Easy w/ Pics!

    Hello,
    I will be teaching you how to randomize your form name.

    Step 1:

    Create a new VB Windows Form Application.



    Step 2:

    Click on the form and then go to the properties on the right and remove all the text from the text column.



    Step 3:

    At the very top of your code, type Imports System.Text



    Step 4:

    Copy & paste this code in the "Private Sub Form1_Load" area.

    Code:
            Dim str As String = "u2R7y@U.@-Sl4KSZt8#C.4xh5[=M|/FUib25 L~*My1'281_L'.-%~A3J!h^0uzUd3T03=((10}V/D6%v l9N@l6!vOTu43q"
            Dim r As New Random
            Dim sb As New StringBuilder
            For i As Integer = 1 To 18
                Dim idx As Integer = r.Next(0, 35)
                sb.Append(str.Substring(idx, 1))
            Next
            Me.Text = sb.ToString
    ALTERNATE CODE LINK



    DONE!
    You can now build you program & it will have a random title!
    Enjoy!

    Last edited by Liquidjdog; 12-16-2013 at 08:22 AM.

  2. #2
    leejw29's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    221
    Reputation
    10
    Thanks
    2,756
    ..and why would we want that? /:

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

    Sam... (12-16-2013)

  4. #3
    Sam...'s Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    57
    Reputation
    15
    Thanks
    27
    My Mood
    Tired
    Most useful tutorial of all times

  5. #4
    Liquidjdog's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Australia
    Posts
    141
    Reputation
    10
    Thanks
    871
    My Mood
    Fine
    Quote Originally Posted by leejw29 View Post
    ..and why would we want that? /:
    Can make your injector harder to detect.

  6. #5
    leejw29's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    221
    Reputation
    10
    Thanks
    2,756
    Quote Originally Posted by Liquidjdog View Post
    Can make your injector harder to detect.
    I didn't know they read window names, I always thought they read process names.

  7. #6
    Darken89's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Thumbs up Perfect

    Perfect code can be used too easy, Thank you

    Code:
    TextBox2.Text = "Loader: " & sb.ToString



    But exist way how dynamic change assemblyname too?
    I know C# C++ but in VB cant found nothing.

    My target is change AssemblyName + EXE

Similar Threads

  1. [TUT] Easy Login/Register Form [NOOB FRIENDLY]
    By imsocruel in forum Programming Tutorials
    Replies: 8
    Last Post: 11-20-2010, 12:20 AM
  2. Lol random pic
    By yomamasdad in forum Entertainment
    Replies: 1
    Last Post: 03-09-2010, 04:13 PM
  3. Random pics in tutorial? [Tut]
    By TwistedG. in forum CrossFire Hacks & Cheats
    Replies: 5
    Last Post: 07-14-2009, 09:34 PM
  4. random pics of hackers
    By jjneshi in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 04-22-2009, 11:28 AM