Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

Newbie51

@Newbie51
About
Posts
7
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • KeyDown Event and Focus Command not working
    N Newbie51

    I think that is because on some of the subs, you tell it what to handle.

    txtMessage_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs)

    should be

    txtMessage_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) handles txtmessage_keydown

    Visual Basic csharp help question

  • Remote Desktop Application
    N Newbie51

    I just tried it out and put the name of the computer for server, WORKGROUP for the domain, since we are on a workgroup, me for username, and me for password. When I ran it, it didn't do anything. any suggestions greatly appreciated. also, how do I "accept" an answer? im kind of new here. Thanks I was able to get a remote desktop app that you can control the users computer, but the screen is all sideways and messed up, is there a way to fix that? It is using the AXrdpViewer. also, is there a way to make it to where I can disable being able to control the computer? I have tried putting a form over it, but that didn't work Here is the code for the client:

    Imports RDPCOMAPILib
    Imports System.Net.Sockets
    Public Class Form1
    Dim x As New RDPSession
    Dim clientSocket As New System.Net.Sockets.TcpClient()
    Dim serverStream As NetworkStream
    Dim readData As String
    Dim infiniteCounter As Integer
    Dim a As String
    Dim b As String
    Dim drag As Boolean
    Dim mousex As Integer
    Dim mousey As Integer
    Private Sub Incoming(ByVal Guest As Object)
    Dim MyGuest As IRDPSRAPIAttendee = Guest
    MyGuest.ControlLevel = CTRL_LEVEL.CTRL_LEVEL_INTERACTIVE
    End Sub
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    Dim strHostName As String

        strHostName = System.Net.Dns.GetHostName()
        a = System.Net.Dns.GetHostByName(strHostName).AddressList(0).ToString()
        b = 'Username
    
        readData = "Conected to Chat Server ..."
        clientSocket.Connect("IP ADDRESS", 8888)
        'Label1.Text = "Client Socket Program - Server Connected ..."
        serverStream = clientSocket.GetStream()
    
        Dim outStream As Byte() = \_
        System.Text.Encoding.ASCII.GetBytes(b + "$")
        serverStream.Write(outStream, 0, outStream.Length)
        serverStream.Flush()
        AddHandler x.OnAttendeeConnected, AddressOf Incoming
        x.Open()
        Dim Invitation As IRDPSRAPIInvitation = x.Invitations.CreateInvitation("Trial", "MyGroup", "", 10)
        outStream = System.Text.Encoding.ASCII.GetBytes("V" + "$")
        serverStream.Write(outStream, 0, outStream.Length)
        outStream = System.Text.Encoding.ASCII.GetBytes("V" + Invitation.ConnectionString + "$")
        serverStream.Write(outStream, 0, outStream.Length)
    End Sub
    

    End Class

    Here's is the code for the Viewer:

    Imports System.Net.Sockets

    Public Class Form1
    Dim c

    Visual Basic com help

  • Remote Desktop Application
    N Newbie51

    Thanks Very Much. I will try it out as soon as I get time.

    Visual Basic com help

  • How can I have a Tab with closing option ?
    N Newbie51

    You could have a context menu show when you right click that has close and then use that. Or, if you were advanced you could have the program draw the x bye the last tab. Hope this helps

    Visual Basic question help

  • Remote Desktop Application
    N Newbie51

    Thanks. What would the server, domain, username, and password be? Thanks again.

    Visual Basic com help

  • Remote Desktop Application
    N Newbie51

    I would like to make a remote desktop connection app in vb.net. Sorry for not being clear.

    Visual Basic com help

  • Remote Desktop Application
    N Newbie51

    Hi,

    I have searched all over the internet trying to find a remote desktop app. I found one that uses an activeX control, but the screen in all sideways and wierd. any help would be greatly appreciated

    Visual Basic com help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups