Click here to Skip to main content
15,916,379 members
Home / Discussions / C#
   

C#

 
AnswerRe: A question about the "checkboxlist" Pin
Stefan Troschuetz21-Sep-05 3:55
Stefan Troschuetz21-Sep-05 3:55 
GeneralRe: A question about the "checkboxlist" Pin
shanzy21-Sep-05 4:16
shanzy21-Sep-05 4:16 
GeneralRe: A question about the "checkboxlist" Pin
Stefan Troschuetz21-Sep-05 4:29
Stefan Troschuetz21-Sep-05 4:29 
GeneralRe: A question about the "checkboxlist" Pin
shanzy21-Sep-05 4:17
shanzy21-Sep-05 4:17 
Questionhidden info in text files Pin
akshayswaroop21-Sep-05 3:25
akshayswaroop21-Sep-05 3:25 
AnswerRe: hidden info in text files Pin
Dario Solera21-Sep-05 6:29
Dario Solera21-Sep-05 6:29 
QuestionGet access to the current method-context? Pin
Uwe Keim21-Sep-05 2:31
sitebuilderUwe Keim21-Sep-05 2:31 
AnswerRe: Get access to the current method-context? Pin
Andy Brummer21-Sep-05 4:10
sitebuilderAndy Brummer21-Sep-05 4:10 
GeneralRe: Get access to the current method-context? Pin
Uwe Keim21-Sep-05 4:53
sitebuilderUwe Keim21-Sep-05 4:53 
GeneralRe: Get access to the current method-context? Pin
Andy Brummer21-Sep-05 5:35
sitebuilderAndy Brummer21-Sep-05 5:35 
QuestionCapture with Windows Media Encoder SDK Pin
shmarov21-Sep-05 1:48
shmarov21-Sep-05 1:48 
QuestionAvoid stuck while reading a large textfile Pin
Seraphin21-Sep-05 0:14
Seraphin21-Sep-05 0:14 
AnswerRe: Avoid stuck while reading a large textfile Pin
Guffa21-Sep-05 0:41
Guffa21-Sep-05 0:41 
GeneralRe: Avoid stuck while reading a large textfile Pin
Seraphin21-Sep-05 0:48
Seraphin21-Sep-05 0:48 
GeneralRe: Avoid stuck while reading a large textfile Pin
Guffa21-Sep-05 1:24
Guffa21-Sep-05 1:24 
GeneralRe: Avoid stuck while reading a large textfile Pin
Seraphin21-Sep-05 1:49
Seraphin21-Sep-05 1:49 
GeneralRe: Avoid stuck while reading a large textfile Pin
Dan Neely21-Sep-05 1:53
Dan Neely21-Sep-05 1:53 
GeneralRe: Avoid stuck while reading a large textfile Pin
Guffa21-Sep-05 3:37
Guffa21-Sep-05 3:37 
Question.net remoting Pin
Geert van Horrik21-Sep-05 0:04
Geert van Horrik21-Sep-05 0:04 
AnswerRe: .net remoting Pin
S. Senthil Kumar21-Sep-05 4:28
S. Senthil Kumar21-Sep-05 4:28 
GeneralRe: .net remoting Pin
Geert van Horrik21-Sep-05 4:40
Geert van Horrik21-Sep-05 4:40 
Thanks for you answer. This is my code now:

<br />
// Create channels<br />
tcpServerChannel = new TcpChannel(8080);<br />
<br />
// Register channels<br />
ChannelServices.RegisterChannel(tcpServerChannel);<br />
<br />
// Register interface<br />
RemotingConfiguration.RegisterWellKnownServiceType(<br />
	typeof(IMyClass),<br />
	"MyClass",<br />
	WellKnownObjectMode.Singleton);<br />
<br />
// Create object<br />
myobject = new MyClass();<br />
<br />
// Set delegate<br />
myobject.UpdateServerData += new UpdateServerDataHandler(UpdateData);<br />
<br />
// Register our object<br />
RemotingServices.Marshal(myobject, "tcp://localhost:8080/MyObject", typeof(IMyObject));<br />


As you see, I want to be triggered when the server data changes. However, the UpdateServerData of the server object is <undefined> when I use a breakpoint at the point it should throw the event.

Any ideas?

Geert

Want to spread the newest version of your software automatically for free? Use Updater!
Visit my website: www.gvhsoftware.org
Questionenconding style ERROR Pin
Campaniço20-Sep-05 23:44
Campaniço20-Sep-05 23:44 
Questionwindows service Pin
Mridang Agarwalla20-Sep-05 21:54
Mridang Agarwalla20-Sep-05 21:54 
Questionhow to make it work?? Pin
shanzy20-Sep-05 21:52
shanzy20-Sep-05 21:52 
AnswerRe: how to make it work?? Pin
Guffa20-Sep-05 21:55
Guffa20-Sep-05 21:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.