Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
GeneralRe: Forms overlapping Pin
Xmen Real 9-Aug-09 15:06
professional Xmen Real 9-Aug-09 15:06 
GeneralRe: Forms overlapping [SOLVED] Pin
Xmen Real 9-Aug-09 15:33
professional Xmen Real 9-Aug-09 15:33 
AnswerRe: Forms overlapping Pin
Luc Pattyn9-Aug-09 10:27
sitebuilderLuc Pattyn9-Aug-09 10:27 
GeneralRe: Forms overlapping Pin
Xmen Real 9-Aug-09 15:36
professional Xmen Real 9-Aug-09 15:36 
QuestionHelp needed in C# - Mobile App Development Pin
Member 1152439-Aug-09 4:44
Member 1152439-Aug-09 4:44 
AnswerRe: Help needed in C# - Mobile App Development Pin
Not Active9-Aug-09 4:54
mentorNot Active9-Aug-09 4:54 
QuestionMenuStrip sub item added event Pin
Xmen Real 9-Aug-09 4:37
professional Xmen Real 9-Aug-09 4:37 
AnswerRe: MenuStrip sub item added event Pin
Richard Blythe9-Aug-09 9:20
Richard Blythe9-Aug-09 9:20 
Hmm, interesting. I've never needed to trap such an event so I don't know what's going on under the hood. Have you considered creating a custom event:

public class CustomMenuStrip : MenuStrip
{
//use this method instead of: DropDownItems.Add()
public void AddDropItem()
{
this.DropDownItems.Add();
OnDropDownItemAdded();
}

public event EventHandler DropDownItemAdded;
protected void OnDropDownItemAdded()
{
if (this.DropDownItemAdded != null)
this.DropDownItemAdded(this, null);
}
}

This maybe a shot in the dark but it may help you out.

Cheers,
Richard

If my answer has helped you, one of my articles may also be a help. Also remember that your best friend's name is google.

GeneralRe: MenuStrip sub item added event Pin
Xmen Real 9-Aug-09 14:56
professional Xmen Real 9-Aug-09 14:56 
QuestionNTFS & FAT direct access Pin
Mark Brend9-Aug-09 3:39
Mark Brend9-Aug-09 3:39 
AnswerRe: NTFS & FAT direct access Pin
Henry Minute9-Aug-09 5:01
Henry Minute9-Aug-09 5:01 
GeneralRe: NTFS & FAT direct access Pin
Mark Brend10-Aug-09 1:44
Mark Brend10-Aug-09 1:44 
QuestionC# and SQL deployment issue Pin
labdakos9-Aug-09 3:22
labdakos9-Aug-09 3:22 
AnswerRe: C# and SQL deployment issue Pin
pelnor9-Aug-09 5:04
pelnor9-Aug-09 5:04 
AnswerRe: C# and SQL deployment issue Pin
pelnor9-Aug-09 5:11
pelnor9-Aug-09 5:11 
QuestionRead XML File and load result in datagridview Pin
Member 47429229-Aug-09 2:31
Member 47429229-Aug-09 2:31 
AnswerRe: Read XML File and load result in datagridview Pin
Eddy Vluggen9-Aug-09 4:52
professionalEddy Vluggen9-Aug-09 4:52 
QuestionHow to Export Contents of DataTable and DataGridView in Excel without using Excel object. Pin
sharad Pyakurel9-Aug-09 1:36
sharad Pyakurel9-Aug-09 1:36 
AnswerRe: How to Export Contents of DataTable and DataGridView in Excel without using Excel object. Pin
Infarkt9-Aug-09 3:31
Infarkt9-Aug-09 3:31 
AnswerRe: How to Export Contents of DataTable and DataGridView in Excel without using Excel object. Pin
sharad Pyakurel10-Aug-09 1:55
sharad Pyakurel10-Aug-09 1:55 
Questionproblem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:28
reilak9-Aug-09 1:28 
AnswerRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 1:33
sitebuilderLuc Pattyn9-Aug-09 1:33 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:45
reilak9-Aug-09 1:45 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 1:47
sitebuilderLuc Pattyn9-Aug-09 1:47 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:50
reilak9-Aug-09 1:50 

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.