Search:

Type: Posts; User: g00fy

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,296

    Re: VB 2010 Express. Opening URL

    Not sure if I understand your question, but just set the web browser's Visible property to false.
  2. Thread: Adding integers

    by g00fy
    Replies
    33
    Views
    2,475

    Re: Adding integers

    For i As Integer = 1 To 100
    ' Calc
    Next

    Google would have told you this...
  3. Thread: Adding integers

    by g00fy
    Replies
    33
    Views
    2,475

    Re: Adding integers

    Just use a for loop.
  4. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    So it was only after the third time that I brought it up that you actually checked? Come on now.
  5. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    You still haven't shown where HardwareID is set in your code.
  6. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    Yes, you can see strings in a compiled executable. And it sets the constant HWID to the string "248818887118237151"... pretty self explanatory. Just show us your code so we can show you where you...
  7. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    Ah true, I forgot I was in the VB6 section by mistake. Either way, my point is I don't think his HardwareID is properly set.
  8. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    Public Class Form1
    Const HWID As String = "248818887118237151"
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    TextBox1.Text...
  9. Replies
    6
    Views
    1,193

    Re: best version of .NET to use for performance

    VS2010 is noticeably slower than 2008 was for me.
  10. Replies
    19
    Views
    1,257

    Re: Why is this function not working?

    Well, what's HardwareID set to?
  11. Replies
    3
    Views
    1,008

    Re: Search internet page

    It's definitely possible with Basic. Look into the HTTPWebRequest class.
  12. Replies
    4
    Views
    3,301

    Re: how can i block websites with vb.net?

    Just use a streamwriter to write to the %SYSDIR%/drivers/etc/hosts file, really straightforward.
  13. Replies
    6
    Views
    1,821

    VS 2008 Re: Device Manager info

    This looks like a much better way, I think you can get it from there.
  14. Replies
    4
    Views
    617

    VS 2010 Re: Get info from webpage

    Here's an example of HTTPWebRequest.
  15. Replies
    12
    Views
    1,037

    Re: WebBrowser trafic

    Like I said, if you write some proxy code then you can middleman the traffic which is cleaner than using a raw socket imo. From there you're going to have to emulate the mouse clicks and key presses...
  16. Replies
    12
    Views
    1,037

    Re: WebBrowser trafic

    So then you are after the HTML. The one way I can think to do it is code a simple web proxy, then set the WebBrowser to use the proxy. That way your proxy object can view the HTML as it passes it...
  17. Replies
    6
    Views
    1,821

    VS 2008 Re: Device Manager info

    Here's an example of how to do it in C via WinAPI. If you need help translating it to VB, just let me know.
  18. Thread: Logoff and Logon

    by g00fy
    Replies
    3
    Views
    767

    Re: Logoff and Logon

    For the logging in, you can set your device to emulate a USB keyboard and have it send virtual keystrokes. Then (I'm not sure if this part is possible) you can have it disconnect and reconnect as a...
  19. Replies
    7
    Views
    7,031

    Re: Linux, yea..that OS

    I'd recommend Arch Linux. It comes bare bones, you have to set everything up yourself. This will get you a lot of experience with linux and it will also be highly optimized because you don't have...
  20. Replies
    12
    Views
    1,037

    Re: WebBrowser trafic

    So if you're not interested in the HTML, you're only after the GET, POST, etc. commands? I'm not sure there's a way to do this with the WebBrowser control, but I may be wrong.
  21. Thread: Remote HWID

    by g00fy
    Replies
    4
    Views
    1,149

    VS 2010 Re: Remote HWID

    The serial for the primary HDD is a pretty common thing to use as a unique identifier. It can be found with GetVolumeInformation() although there's probably a better way to do it with .NET. And no,...
  22. Replies
    4
    Views
    617

    VS 2010 Re: Get info from webpage

    I think the easiest way would be to use the HTTPWebRequest class to get the HTML of the page and then just parse out the info that you want.
Results 1 to 22 of 22



Click Here to Expand Forum to Full Width