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

C#

 
AnswerRe: Csharp .Net doubt Pin
Luc Pattyn7-Jan-10 3:39
sitebuilderLuc Pattyn7-Jan-10 3:39 
AnswerRe: Csharp .Net doubt Pin
Lutosław7-Jan-10 12:28
Lutosław7-Jan-10 12:28 
GeneralRe: Csharp .Net doubt Pin
djsproject12-Jan-10 17:28
djsproject12-Jan-10 17:28 
Questiona problem about string Pin
Erdinc277-Jan-10 2:22
Erdinc277-Jan-10 2:22 
AnswerRe: a problem about string [modified] Pin
harold aptroot7-Jan-10 2:33
harold aptroot7-Jan-10 2:33 
GeneralRe: a problem about string Pin
Erdinc277-Jan-10 2:58
Erdinc277-Jan-10 2:58 
GeneralRe: a problem about string Pin
harold aptroot7-Jan-10 3:01
harold aptroot7-Jan-10 3:01 
GeneralRe: a problem about string [modified] Pin
Erdinc277-Jan-10 3:16
Erdinc277-Jan-10 3:16 
GeneralRe: a problem about string Pin
harold aptroot7-Jan-10 3:31
harold aptroot7-Jan-10 3:31 
GeneralRe: a problem about string Pin
harold aptroot7-Jan-10 3:33
harold aptroot7-Jan-10 3:33 
GeneralRe: a problem about string Pin
Erdinc277-Jan-10 3:42
Erdinc277-Jan-10 3:42 
GeneralRe: a problem about string Pin
harold aptroot7-Jan-10 3:45
harold aptroot7-Jan-10 3:45 
AnswerRe: a problem about string Pin
Ben Fair7-Jan-10 2:58
Ben Fair7-Jan-10 2:58 
GeneralRe: a problem about string Pin
Erdinc277-Jan-10 3:25
Erdinc277-Jan-10 3:25 
GeneralRe: a problem about string Pin
Ben Fair7-Jan-10 4:25
Ben Fair7-Jan-10 4:25 
QuestionDoes the IPv6 protocol deal with UDP datagrams ??? Pin
3bood.ghzawi7-Jan-10 2:08
3bood.ghzawi7-Jan-10 2:08 
AnswerRe: Does the IPv6 protocol deal with UDP datagrams ??? Pin
Dimitri Witkowski7-Jan-10 2:21
Dimitri Witkowski7-Jan-10 2:21 
AnswerRe: Does the IPv6 protocol deal with UDP datagrams ??? Pin
harold aptroot7-Jan-10 2:25
harold aptroot7-Jan-10 2:25 
QuestionGetting invalid IP address............. Pin
3bood.ghzawi7-Jan-10 1:51
3bood.ghzawi7-Jan-10 1:51 
AnswerRe: Getting invalid IP address............. Pin
SeMartens7-Jan-10 2:46
SeMartens7-Jan-10 2:46 
GeneralRe: Getting invalid IP address............. Pin
Luc Pattyn7-Jan-10 3:51
sitebuilderLuc Pattyn7-Jan-10 3:51 
Question.net event in Excel Pin
zecodela7-Jan-10 0:08
zecodela7-Jan-10 0:08 
AnswerRe: .net event in Excel Pin
Dave Kreskowiak7-Jan-10 0:42
mveDave Kreskowiak7-Jan-10 0:42 
GeneralRe: .net event in Excel Pin
zecodela7-Jan-10 1:02
zecodela7-Jan-10 1:02 
I am not sure about the Excel Object Model.

I want to have a C# library I can call a C# function, which i have done with help of below article.

http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx

I also want to have setup callback, event in the C# space and i can get the callback/event inside Excel.

eg. i have an event like below, i can get the event with AlarmEventHandler. I just want to have such event happening in Excel.

(below code copied from msdn)

public class AlarmClock
{
    public event AlarmEventHandler Alarm;

    protected virtual void OnAlarm(AlarmEventArgs e)
    {
       if (Alarm != null)
       {
          // Invokes the delegates.
          Alarm(this, e);
       }
    }
}
public static void Main (string[] args)
{
       // Instantiates the event receiver.
       WakeMeUp w= new WakeMeUp();

       // Instantiates the event source.
       AlarmClock clock = new AlarmClock();

       // I want to able to get this event inside Excel VBA space.
      <big> clock.Alarm += new AlarmEventHandler(w.AlarmRang);</big>

       clock.Start();
 }

GeneralRe: .net event in Excel Pin
dojohansen7-Jan-10 1:45
dojohansen7-Jan-10 1:45 

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.