+ Reply to Thread
Results 1 to 4 of 4

Thread: Blocking GUI Movement escaping ur app

  1. #1
    MXTECH is offline Learning Programmer
    Join Date
    Jan 2008
    Posts
    46
    Rep Power
    15

    Thumbs up Blocking GUI Movement escaping ur app

    Hey peoples this is my first post, this is how u well make a virus basicly haha
    but for all purposes we'll make a simple app to show a message and the user has to read the message and only then can they escape the app, unless they use tastmanager but if u wanna make a virus then put a timer in and block the taskmanger app and presto! they are screwed ha ha it ever blocks ALT-F4 combo's enjoy!

    First add a text box (txt_enter)
    Add a Richtextbox (rtb_read)
    Add a Button (btn_go)

    now this is in VB-Studio 2008 so waht you want it to is
    put a random wods in the richtextbox and put in there
    "this is the password to leave" and then under the txt_enter
    is where they have to put that word.

    other code u need to do:
    -set your main form to maximise on start.
    -disabled maximise and minimise buttions on GUI.
    -Set Form1.topmost =true 'to make it the top screen

    so the code for button is:
    -----------------------------------------------------------------------
    Private Sub btn_go_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_go.Click
    If txt_enter.Text = "Word" Then
    End
    Else
    MsgBox("Nope that ain't it buddy")
    End If
    End Sub
    -----------------------------------------------------------------------
    Now you need to external code files named (included in .zip and .rar demos)
    -FormImmobiliser.vb
    -SystemMenuManager.vb
    these files make the following code effective.

    add this code to the main form:
    -----------------------------------------------------------------------
    Private myMenuManager As New SystemMenuManager(Me, False,SystemMenuManager.MenuItemState.Greyed)
    Private immobiliser As New FormImmobiliser(Me)
    ------------------------------------------------------------------------
    now run it and your app is indistructable!
    enjoy.

    Jared Woodruff
    <i>Stinger Software Systems Lead Designer</i>
    Attached Files Attached Files

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Blocking GUI Movement escaping ur app

    Uh huh, but it could be formatted better. For example, wrap code around HIGHLIGHT tags, like so:

    [ highlight=VB] MessageBox.Show("Hello World") [/HIGHLIGHT]

    It looks like this:


    [HIGHLIGHT=VB]MessageBox.Show("Hello World")[/HIGHLIGHT]

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  4. #3
    Join Date
    May 2008
    Posts
    2,126
    Blog Entries
    1
    Rep Power
    33

    Re: Blocking GUI Movement escaping ur app

    What the ****? That has nothing to do with being a virus. In order for something to be a virus, it has to have an infector. Not allowing someone to get out of a window or some **** like that is just some stupid basic malware.

    My Edit... Also there are much more elegant ways of going about blocking user input such as BlockInput() and EnableWindow(). Might want to check those out...
    Last edited by MeTh0Dz; 06-29-2008 at 12:45 PM.

  5. #4
    Deathcry's Avatar
    Deathcry is offline Learning Programmer
    Join Date
    Feb 2007
    Posts
    69
    Rep Power
    0

    Re: Blocking GUI Movement escaping ur app

    Quote Originally Posted by MXTECH View Post
    Hey peoples this is my first post, this is how u well make a virus basicly haha
    but for all purposes we'll make a simple app to show a message and the user has to read the message and only then can they escape the app, unless they use tastmanager but if u wanna make a virus then put a timer in and block the taskmanger app and presto! they are screwed ha ha it ever blocks ALT-F4 combo's enjoy!
    ....
    haha i remember making prank programs when i first started prorgramming. thanks for the contribution but try to make the code look better as others have said before me. horrible to follow.
    the code is with you

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. MySQL escaping
    By phillw in forum Database & Database Programming
    Replies: 1
    Last Post: 02-14-2010, 03:12 AM
  2. stl maps blocking?
    By manux in forum C and C++
    Replies: 7
    Last Post: 05-29-2009, 10:21 PM
  3. Blocking TV
    By AmbitionAtWork in forum General Programming
    Replies: 3
    Last Post: 07-17-2008, 09:58 PM
  4. AJAX - Escaping (
    By Lop in forum JavaScript and CSS
    Replies: 4
    Last Post: 08-18-2007, 06:01 AM
  5. AJAX - Escaping (
    By Lop in forum AJAX
    Replies: 4
    Last Post: 08-18-2007, 06:01 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts