Click here to Skip to main content
15,890,438 members
Home / Discussions / C#
   

C#

 
GeneralRe: Custom Busy Window. Pin
The_Collector8-Mar-10 17:12
The_Collector8-Mar-10 17:12 
GeneralRe: Custom Busy Window. Pin
The Man from U.N.C.L.E.8-Mar-10 23:22
The Man from U.N.C.L.E.8-Mar-10 23:22 
AnswerRe: Custom Busy Window. Pin
Kevin Marois5-Mar-10 13:03
professionalKevin Marois5-Mar-10 13:03 
GeneralRe: Custom Busy Window. Pin
The_Collector8-Mar-10 17:13
The_Collector8-Mar-10 17:13 
Questionhow to disable/enable toolstrip menu item [modified] Pin
crisjala2-Mar-10 21:27
crisjala2-Mar-10 21:27 
AnswerMessage Closed Pin
2-Mar-10 22:09
stancrm2-Mar-10 22:09 
GeneralRe: how to disable/enable toolstrip menu item Pin
crisjala3-Mar-10 14:06
crisjala3-Mar-10 14:06 
QuestionEvents from c# DLL not visible in VB7 project (Visual Studio 2008) Pin
hoernchenmeister2-Mar-10 21:22
hoernchenmeister2-Mar-10 21:22 
Good morning,
I just stubled into a decent problem.
We develop DLL's with C# and VB7. Now my colleague wanted to use one of my C# dll's in his VB7 project.
Unfortunately the IDE does not bring up the events...
Here is the code of the event implementation:


public delegate void EmailAttachmentAmountChangedHandler();

[Browsable(true)]
public event EmailAttachmentAmountChangedHandler EmailAttachmentAmountChanged;

protected virtual void OnEmailAttachmentAmountChanged()
{
if (EmailAttachmentAmountChanged != null)
{
EmailAttachmentAmountChanged();
}
}

Nothing decent...
Please would somebody be so kind and tell me why the event is not visible?
Is that a mistake I made or just VS2008...

Thanks a lot in advance,
kind regards
Hoernchenmeister
AnswerRe: Events from c# DLL not visible in VB7 project (Visual Studio 2008) Pin
Dave Kreskowiak3-Mar-10 3:37
mveDave Kreskowiak3-Mar-10 3:37 
GeneralRe: Events from c# DLL not visible in VB7 project (Visual Studio 2008) Pin
hoernchenmeister3-Mar-10 5:49
hoernchenmeister3-Mar-10 5:49 
QuestionUnicode Pin
Maninandan2-Mar-10 21:18
Maninandan2-Mar-10 21:18 
QuestionFind a word using regular expression in c# Pin
PeriyasamyRamachandran2-Mar-10 19:48
PeriyasamyRamachandran2-Mar-10 19:48 
AnswerRe: Find a word using regular expression in c# Pin
sanforjackass2-Mar-10 19:51
sanforjackass2-Mar-10 19:51 
AnswerRe: Find a word using regular expression in c# Pin
Arindam Tewary2-Mar-10 20:26
professionalArindam Tewary2-Mar-10 20:26 
GeneralRe: Find a word using regular expression in c# Pin
PeriyasamyRamachandran2-Mar-10 20:28
PeriyasamyRamachandran2-Mar-10 20:28 
Questiondatagridviewrow conversion Pin
Member 5903102-Mar-10 19:28
Member 5903102-Mar-10 19:28 
Questionhow to write to a specific range in excel ? [modified] Pin
tonyonlinux2-Mar-10 19:15
tonyonlinux2-Mar-10 19:15 
AnswerRe: how to write to a specific range in excel ? Pin
tonyonlinux3-Mar-10 8:22
tonyonlinux3-Mar-10 8:22 
QuestionC# win application with web-browser control HANGS after some time Pin
BalajiRamasamy2-Mar-10 18:55
BalajiRamasamy2-Mar-10 18:55 
AnswerRe: C# win application with web-browser control HANGS after some time Pin
Saksida Bojan2-Mar-10 19:06
Saksida Bojan2-Mar-10 19:06 
GeneralRe: C# win application with web-browser control HANGS after some time Pin
BalajiRamasamy2-Mar-10 19:19
BalajiRamasamy2-Mar-10 19:19 
AnswerRe: C# win application with web-browser control HANGS after some time Pin
Luc Pattyn3-Mar-10 1:57
sitebuilderLuc Pattyn3-Mar-10 1:57 
Questiondatagridview insertion Pin
Member 5903102-Mar-10 18:21
Member 5903102-Mar-10 18:21 
AnswerMessage Closed Pin
2-Mar-10 18:35
stancrm2-Mar-10 18:35 
GeneralRe: datagridview insertion Pin
Member 5903102-Mar-10 18:37
Member 5903102-Mar-10 18:37 

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.