Page 2 of 2

Re: Remote Desktop Controlling

Posted: Mon Aug 16, 2010 10:32 pm
by mandai
You might want to check you can access the port you are running the server on.

Re: Remote Desktop Controlling

Posted: Mon Aug 16, 2010 10:47 pm
by NecroPhis
plz add me and help me
but tomorrow plz g2g soon here my e-mail
metamorphosis_95@hotmail.com

Re: Remote Desktop Controlling

Posted: Fri Aug 20, 2010 4:02 pm
by Axel
what tha.... in visual basic ? great !

Re: Remote Desktop Controlling

Posted: Sat Sep 25, 2010 8:27 am
by tom_inc
Sub acc(ByVal iar As IAsyncResult)
Dim listener As Socket = iar.AsyncState
If stopping Then
Return 'stops crashing after clicking stop
End If
Dim incoming As Socket = listener.EndAccept(iar)

buffers.Add("")
clients.Add(incoming)
ListView1.Items.Add(New ListViewItem(New String() {incoming.RemoteEndPoint.ToString(), ""}))

Try
incoming.BeginReceive(data, 0, data.Length, SocketFlags.None, New AsyncCallback(AddressOf br), incoming)
Catch ex As Exception

End Try
listener.BeginAccept(New AsyncCallback(AddressOf acc), listener)
End Sub


thid error occus in it any suggestions
Cross-thread operation not valid: Control 'ListView1' accessed from a thread other than the thread it was created on.

Re: Remote Desktop Controlling

Posted: Sat Sep 25, 2010 8:31 am
by tom_inc
Hey mandai can you send the whole project with .sln file plz

Re: Remote Desktop Controlling

Posted: Sat Sep 25, 2010 8:37 am
by Axel
tom_inc wrote:
Hey mandai can you send the whole project with .sln file plz
i would call it a solution file not .sln because not every solution would be .sln

Re: Remote Desktop Controlling

Posted: Sat Sep 25, 2010 4:20 pm
by mandai
Why do you need the whole solution? The 3 needed source files are included in the download.

@tom_inc I updated this to resolve the cross-thread issues.

Re: Remote Desktop Controlling

Posted: Sun Sep 26, 2010 2:21 pm
by tom_inc
ok can you give me the code for the YOU-TUbe downloader plz and file tranfer from client to server??

Re: Remote Desktop Controlling

Posted: Sun Sep 26, 2010 2:31 pm
by mandai
YouTube downloaders aren't really my thing, though I did make a file transfer system some time back - see: viewtopic.php?f=21&t=3530&p=24583#p24583