I want to be able to use .Net Remoting in order for a client to call a
remote object on a server, and then have the server update a control
in a form based on that call. From what I can tell, when an object
runs on the server it does not know anything about the application
that it is running in...
more >>
Private sub Capture()
dim altscan as short
dim snapparam as short
altscan = MapVirtualKey(VK_MENU, 0)
keybd_event(VK_SNAPSHOT, snapparam, 0, 0)
picturebox1.image = Clipboard.GetDataObject.GetData(DataFormats.Bitmap)
End Sub
this part of the code works fine...
more >>
Hi,
I have on the server a service with a .net remoting channel opened with
singlecall option.
Comunication is on TCP and with binary serialization.
There is a public function accessible via entrypoint like this
Function Test(ByVal Param as Dictionary(Of String, Object) ) As Object
....
...
more >>