Search:

Type: Posts; User: steffanp

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    574

    Re: How to get all local IPaddresses

    it can only find my computer. It cant find the rest
  2. Replies
    2
    Views
    574

    How to get all local IPaddresses

    How to get IPaddresses from all computers connected to a local network? in other words, if there are to computers connected to my local network, is there a way to get their ip addresses?
  3. Replies
    2
    Views
    604

    Re: [2005] Improving socket performance

    hmm.. I get an error message then.. The Client code:


    Dim tcpClient As New System.Net.Sockets.TcpClient()
    tcpClient.Connect("80.197.90.33", 8000)
    Dim networkStream As...
  4. Replies
    2
    Views
    604

    [2005] Improving socket performance

    Hi
    I am writing a server application, but i have a performance problem. When a client connects to my server, it is suppost to get the a string from the server saying: "Connected to server."... This...
  5. Replies
    3
    Views
    560

    Re: [2005] Socket Engine

    I am not porgramming an XBOX game. I am using XNA to build a PC game
  6. Replies
    3
    Views
    560

    [2005] Socket Engine

    Hi
    I am making a game with the XNA framework, and would like to ad a multiplayer function. I know that net programming is done using Sockets, but i find using sockets very hard. Has enyone made a...
  7. Replies
    2
    Views
    746

    [2005] how to get DIR?

    Hi
    Is their away to list a dir in an array?
    ex.
    Array() = GetDir("c:/")

    and this would then fill up Array() with the folders and files in "c:/" (in my case: Windows and porgramfiles
  8. Replies
    1
    Views
    645

    [2005] VB.NET Game Engine

    Hi
    Does enybody know a good game engine for VB.NET 2005 express?
  9. Re: Ram filling up with ScreenCapture.vb: ContextSwitchDeadlock was detected

    forgot to mention, that if i delete the "some code.." so that i get:


    Dim SIR As New SteffansImageRec()
    Dim SC As New ScreenShot.ScreenCapture

    Dim ColorBuffer As...
  10. Ram filling up with ScreenCapture.vb: ContextSwitchDeadlock was detected

    Hi
    I have this code (i am using the screenshot class ScreenCapture.vb):


    Dim SIR As New SteffansImageRec()
    Dim SC As New ScreenShot.ScreenCapture

    Dim ColorBuffer As...
  11. Replies
    3
    Views
    658

    MouseClick on desktop

    Hi
    How do i check if the mouse is clicked outside of my form (ex. on my desktop)?
  12. Replies
    5
    Views
    577

    Re: [2005] Really easy question

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

    Call SomeFunction()

    End Sub
  13. Re: Easy Screen Capture Class - Capture Screen, Desktop Region, Form, or Controls

    Hi i have been using your class but i have little problem. I have this loop that takes a sceenshot, and then analyzes it. every time i use the class to take a screenshot, it filles my RAM with 6...
  14. Replies
    2
    Views
    529

    [RESOLVED] [2005] Textbox and "return"

    Hi
    I have a textbox in my main form, and when someone types somthing in the textbox and hits "Return", then the text is to by saved in the string Str:


    Private Sub Command_KeyPress(ByVal...
  15. Replies
    3
    Views
    650

    Re: [2005] Executing VB code in run-time

    Ok, how do i compile VB code at runtime. The reason for this is: i have a console, and in that console you should be able to make instances of classes (where the user specify the name of the instance...
  16. Replies
    3
    Views
    650

    [2005] Executing VB code in run-time

    Is it posible to execute VB code in Run-time?
    Ex: You have a simple console. If you write a line in the console (Lets say "messagebox.show("Hallo)"), then this line will be executed as code, and a...
  17. Replies
    3
    Views
    667

    Re: [2005] Scalling an image

    # Wossname -
    Sorry, but my english is not that good :(, so i was very hard for me to explain the problem (and yes, i whantet the content of the small triangle :))

    # Gigemboy -
    Thanks your class...
  18. Replies
    3
    Views
    667

    [RESOLVED] [2005] Scalling an image

    Hi
    I have a 1024*768 image (it is a screenshot). But i only need some of the image. The problem is, that i need a 100 width 200 high regtancle of the image at the posistion 300,200. It's a bit hard...
  19. Replies
    3
    Views
    1,726

    Re: [2005] simulate mouse click

    This can is done using an API call


    Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Integer
    Public Declare Auto Function...
  20. Replies
    9
    Views
    11,879

    Re: Auto mouse move

    Thanks it all works great now :)
  21. Replies
    9
    Views
    11,879

    Re: Auto mouse move

    I have tried to use the API but it does not work:


    Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Long
    Public Declare Auto...
  22. Replies
    9
    Views
    11,879

    Re: Auto mouse move

    Thanks it works fine :).. Now, if want make the program "click" a mouse button, how would i do that?
  23. Replies
    9
    Views
    11,879

    [RESOLVED] Auto mouse move

    Hi
    I would like to know if there is a way to move the mousecurser on the screen with VB code. I know you can in Java (Using the awt.Robot class) but how to do it in VB? I have serched and did not...
  24. Re: [2005] Installing a .NET app to the "program files" folder

    Ok, thanks :). Think i am gona USE INNO then.
  25. Re: [2005] Installing a .NET app to the "program files" folder

    I am using Vb.NET Express, so... That "INNO setup" program looks nice :). Can i make my installer download the .NET framework (if necessary) from microsoft, like the ClickOnce installer?
  26. [RESOLVED] [2005] Installing a .NET app to the "program files" folder

    Hi

    I have compiled a .NET application, using the publish wizzard. This gives me a lot of files, including a Setup.exe file. When i run the Setup.exe file, and install my application, i can find it...
  27. Replies
    2
    Views
    487

    Re: [2005] making a DLL

    Thanks for the fast answer (it works :))
  28. Replies
    2
    Views
    487

    [RESOLVED] [2005] making a DLL

    Hi
    I need to make a DLL file that contains classes and mothods. I know how to make an empty VB.NET DLL project.. But then what? Do i just star defining classes?

    So, lets say that i have made this...
  29. Replies
    8
    Views
    782

    Re: Text Download in VB 2005

    m not sure that i understand your problem, but maby this code will help. It downloads the HTML code from a website, so if that is the HTML text you need this should work. However, if it is a .txt...
  30. Replies
    6
    Views
    812

    Re: [2005] Color in RichTextBox

    Thanks, it works great :D
  31. Replies
    6
    Views
    812

    Re: [2005] Color in RichTextBox

    Sorry, but the "\n" does not make a new line :(... I know it does it a C++ console, but apparently it does not work in a VB RichTextBox
  32. Replies
    6
    Views
    812

    [RESOLVED] [2005] Color in RichTextBox

    Hi
    I have a RichTextBox control in my program. It has to line of text (line 1 and 2). Now, how do i make line 1 have another forecolor then line 2? (line1 = red, line2 = blue)

    Also, how du i...
  33. Re: [2005] Calling Javascript function in WebBrower

    It worked :D.. Thnaks man
  34. Re: [2005] Calling Javascript function in WebBrower

    The purpos of my HTML parser, is to extract data that my program is going to use (i am not making a browser). At first i had a socket that downloaded the HTML code. But then i thought that if i...
  35. [RESOLVED] [2005] Calling Javascript function in WebBrower

    Hi

    I am working on a primitive HTML parser, that is going to parse HTML code from this site:
    http://www.lectio.dk/lectio/185/SkemaGenerator.aspx?type=elev&id=1364172808

    I download the HTML...
Results 1 to 35 of 35



Click Here to Expand Forum to Full Width