Results 1 to 3 of 3
  1. #1
    crazygamer53's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Massachusetts
    Posts
    210
    Reputation
    10
    Thanks
    23
    My Mood
    Psychedelic

    How to make a URL open invisibly VB.NET (Current code supplied)

    I want to know how I could change this code to make it invisible (page opens without the user seeing) I'm using it to create a silent page viewer me and my friends are running on our computers. I used MPGH as an example in the code

    Here's the current code to do so visibly

    Code:
    Imports System
    Imports System.Drawing
    Imports System.Data
    Imports System****
    Imports System.Collections
    Imports System.Windows.Forms
    Imports System.Drawing.Printing
    
    Public Class MainClass
        Shared Sub Main()
            System.Diagnostics.Process.Start("www.mpgh.net")
        End Sub
    End Class
    It's censoring part of the code for some reason, but I'm sure the good coders here will understand what it should show...
    Last edited by crazygamer53; 11-18-2011 at 07:11 PM.
    Quote Originally Posted by liquidforce View Post

    chuck norris is not affraid of death, death is afraid of chuck norris

    Don't be afraid to click thanks if I helped.

    P.S. I only bite on Wednesdays

    Goals = complete = not yet
    Get banned once
    Get banned three times
    Get banned 10 times
    Get a legit ultrakill
    Get a legit Fantastic
    Get a legit Unbelievable
    Own A vip hacker
    Get VIP
    Make my own mod
    Make my own hack

  2. #2
    Son Goku's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,184
    Reputation
    7
    Thanks
    215
    My Mood
    Yeehaw
    You could just make a webbrowser and move it off the screen, and locking the screen size.

    and Implement something like this.

    Code:
    form1.load sub
    dim x as integer = 0
    timer1.start
    timer1.interval = 1000 '1 second
    if x = 5 then
    webbrowser1.enabled = true 'you can chose the url in config
    timer1.stop
    
    timer1.tick sub
    x = x + 1
    Last edited by Son Goku; 11-18-2011 at 08:36 PM.


    ----------------------------------------

    Join The Starcraft 2 Section Here!

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

    crazygamer53 (11-18-2011)

  4. #3
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Use HttpWebRequests/Responses to send page requests. You can also modify them to use a Proxy etc.

    Code:
    Private Sub SendPageRequest(ByVal URL As String, Optional ByVal proxy As Net.WebProxy = Nothing)
        Dim webReq As Net.HttpWebRequest = CType(Net.WebRequest.Create(URL), Net.HttpWebRequest)
        If proxy IsNot Nothing Then webReq.Proxy = proxy
        Using webResp As Net.HttpWebResponse = CType(webReq.GetResponse(), Net.HttpWebResponse)
            'Get the response, then close it as we don't actually need anything but to send the request.
        End Using
    End Sub

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  5. The Following User Says Thank You to Jason For This Useful Post:

    crazygamer53 (11-22-2011)

Similar Threads

  1. Who knows how to make avatar have a invisible background?
    By Im Too Cool in forum Suggestions, Requests & General Help
    Replies: 20
    Last Post: 08-19-2011, 04:04 PM
  2. [Tutorial] How To : Make Pro Crossfire Launcher Program VB.NET
    By Dark Side in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 10
    Last Post: 08-07-2011, 03:42 PM
  3. [Tutorial] How To : Make Pro Crossfire Launcher Program VB.NET
    By Dark Side in forum CrossFire Tutorials
    Replies: 6
    Last Post: 08-04-2011, 12:39 PM
  4. Mincraft-How to make a private/open Sever free! OnlineGenius
    By FullStatic in forum Minecraft Tutorials
    Replies: 20
    Last Post: 04-07-2011, 04:58 PM
  5. How to make an invisible folder for hiding Stuff.
    By mostwanted in forum Programming Tutorials
    Replies: 36
    Last Post: 04-19-2009, 05:08 AM

Tags for this Thread