My First VB Program menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Nate1111's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    My First VB Program

    Hey guys i'm completely new to vb but i made this program as a prank and thought i would get some feedback on it. Just so you guys know I'm kinda new i came from ac-web cause i felt they couldn't provide information or a mature community anymore.

    this is the form1 source code:
    Code:
    You will need 1 label and 1 button for this form
    Code:
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Form2.ShowDialog()
    
        End Sub
    
        Private Sub Form1_FormClosing1(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
            e.Cancel = True
    
        End Sub
    
        Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click
    
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    End Class

    This is the source code for form2:

    Code:
    For this form you will need:
    1 progress bar
    1 label
    1 button
    1 time with interval set to 4
    Code:
    Public Class Form2
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            MsgBox("Can't Close Do To: Process Search And Destroy In Progress", MsgBoxStyle.Critical, "Virus")
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Dim TheRandom As New Random
            Timer1.Interval = TheRandom.Next(10, 11)
            On Error Resume Next
            If ProgressBar1.Value >= ProgressBar1.Maximum Then
                MsgBox("Unable To Find Virus!", MsgBoxStyle.Critical, "Virus")
            Else
                ProgressBar1.Value += TheRandom.Next(1, 3)
    
            End If
        End Sub
    
    
        Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
            Timer1.Start()
    
        End Sub
    
        Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProgressBar1.Click
    
        End Sub
    
        Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
            e.Cancel = True
    
        End Sub
    
        Private Sub Form2_Load_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer1.start
        End Sub
    End Class
    If you guys wana use my learning project for other use here is the dl to the un-published project.


    download unpublished vb learning project
    Password: mmowned>acweb
    ==========================================================
    Download Published ExE.
    Password:mmowned>acweb
    ==========================================================

    Thanks for reading guys hope to contribute much more to the community in the future!
    Last edited by Apoc; 08-15-2009 at 02:10 PM. Reason: Don't ask for rep.

    My First VB Program
  2. #2
    Erase's Avatar Banned
    Reputation
    229
    Join Date
    Jun 2008
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A batch file could do the same thing :b
    But as your new, it's fine.
    Try go a bit more advanced, get ideas, make them real, and have fun making them.

  3. #3
    Nate1111's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im trying but im new to it so i still need to learn the full capibilitys of VB

  4. #4
    Erase's Avatar Banned
    Reputation
    229
    Join Date
    Jun 2008
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try read some tutorials, or watch video tutorials on youtube. Some of them are kinda cool.

  5. #5
    Nate1111's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats how i have been learning so far Thanks for the advice though!

  6. #6
    Wowowned14's Avatar Member
    Reputation
    35
    Join Date
    Aug 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good luck with the learning, pm me if you need help with anything
    Join Eliminator Wow NOW!!
    Patch 3.2 with 99% Uptime, join at www.eliminatorwow.com

  7. #7
    Wowowned14's Avatar Member
    Reputation
    35
    Join Date
    Aug 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    especially phishers
    Join Eliminator Wow NOW!!
    Patch 3.2 with 99% Uptime, join at www.eliminatorwow.com

  8. #8
    Nate1111's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want to be a whitehat hacker.. I want to learn how to make a trojan and would contact you but still need more post to PM

  9. #9
    Erase's Avatar Banned
    Reputation
    229
    Join Date
    Jun 2008
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There is a thread in this section, telling you how to make a scam program, and a keylogger. And they are very simple and easy to follow.

Similar Threads

  1. [First VB Program] Quick Realm
    By nikomo in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 11-20-2008, 03:08 PM
  2. Your first python program!
    By reaxonz in forum Programming
    Replies: 2
    Last Post: 06-18-2008, 10:28 AM
  3. My first helpful AutoIt program
    By jdismeuc in forum World of Warcraft Bots and Programs
    Replies: 21
    Last Post: 05-14-2008, 10:14 AM
  4. My first AutoIt program
    By REDACTEDSEPHI in forum Community Chat
    Replies: 3
    Last Post: 06-15-2007, 06:29 AM
All times are GMT -5. The time now is 02:24 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search