.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Event Handlers
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
100 Views, 2 Replies
06-08-2005 01:27 PM
I am writing an application that will capture an event (Begin.Save) and perform some operations.
For the user to execute this, he/she is forced to type (at the command line)
Netload myproject ' This loads the .Net application
LoadEventHandler 'This is a routine that adds the event handler
I have tried to add a "new" method to my class but that does not work.
Is there a way to add the event handlers when the .dll is loaded (using netload)?
For the user to execute this, he/she is forced to type (at the command line)
Netload myproject ' This loads the .Net application
LoadEventHandler 'This is a routine that adds the event handler
I have tried to add a "new" method to my class but that does not work.
Is there a way to add the event handlers when the .dll is loaded (using netload)?
Re: Event Handlers
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-08-2005 01:48 PM in reply to:
Chris Ludtke
Look at the Initialize method of IExtensionApplication.
Re: Event Handlers
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-08-2005 02:49 PM in reply to:
Chris Ludtke
Thanks for your help, got it working
