Click here to Skip to main content
15,892,927 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Streaming WAV files from SQL Server into a Web Page Pin
bynagari23-Apr-10 8:14
bynagari23-Apr-10 8:14 
GeneralRe: Streaming WAV files from SQL Server into a Web Page Pin
Michel Godfroid23-Apr-10 8:22
Michel Godfroid23-Apr-10 8:22 
AnswerRe: Streaming WAV files from SQL Server into a Web Page Pin
cmk23-Apr-10 14:12
cmk23-Apr-10 14:12 
QuestionForm Load Groupbox Question Pin
gmhanna23-Apr-10 4:52
gmhanna23-Apr-10 4:52 
AnswerRe: Form Load Groupbox Question Pin
Luc Pattyn23-Apr-10 5:04
sitebuilderLuc Pattyn23-Apr-10 5:04 
GeneralRe: Form Load Groupbox Question Pin
gmhanna23-Apr-10 5:38
gmhanna23-Apr-10 5:38 
GeneralRe: Form Load Groupbox Question Pin
Luc Pattyn23-Apr-10 5:55
sitebuilderLuc Pattyn23-Apr-10 5:55 
GeneralRe: Form Load Groupbox Question Pin
gmhanna23-Apr-10 6:38
gmhanna23-Apr-10 6:38 
Hi Luc,

Yes, the event is showing in the properties window under "Load", and I do see it wired in. When I set a break point at the entry to the event, I can see that it never hits, the form loads and we never hit the break point.

If I comment out the two GroupBoxes above and change nothing else, rerun the application with the debugger, I stop at the Load Event.

I thought I lost my mind at first, wondering how the load event is not hitting when the form is getting loaded.

I tried creating a simple Hello World form, placed a GroupBox on the form, added a label within the GroupBox, added a MessageBox.Show to the Load Event and it works.

So I then added a MessageBox.Show to my Class Reunion application and it doesn't give me a message box.

Here is the code that setups the form. I eliminated the code for the controls.
//
// ClassReunionPlay
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(683, 344);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.classmatesBindingNavigator);
this.Name = "ClassReunionPlay";
this.Text = "ClassReunion";
this.Load += new System.EventHandler(this.ClassReunionPlay_Load);
((System.ComponentModel.ISupportInitialize)(this.classmatesBindingNavigator)).EndInit();
this.classmatesBindingNavigator.ResumeLayout(false);
this.classmatesBindingNavigator.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.classmatesBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.kTReunionDataSet)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picturePictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();


I think you are also right on moving the bindingNavigator because if I call the Load Event, the bindingNavigator shows I have 433 records, when I click the next record button, I do not see any data in the controls.

Thank you,
Glenn

QuestionGAC! [modified] [solved-ish] Pin
PIEBALDconsult22-Apr-10 15:56
mvePIEBALDconsult22-Apr-10 15:56 
AnswerRe: GAC! Pin
Not Active22-Apr-10 18:04
mentorNot Active22-Apr-10 18:04 
GeneralRe: GAC! Pin
PIEBALDconsult22-Apr-10 18:40
mvePIEBALDconsult22-Apr-10 18:40 
GeneralRe: GAC! Pin
Not Active23-Apr-10 2:11
mentorNot Active23-Apr-10 2:11 
QuestionChanging VSTO Add-In 's Application Domain Pin
acarre3122-Apr-10 3:34
acarre3122-Apr-10 3:34 
AnswerRe: Changing VSTO Add-In 's Application Domain Pin
acarre3123-Apr-10 0:27
acarre3123-Apr-10 0:27 
QuestionRelationship of C# Version to .NET Version Pin
Patrick Skelton21-Apr-10 22:34
Patrick Skelton21-Apr-10 22:34 
AnswerRe: Relationship of C# Version to .NET Version Pin
Michel Godfroid22-Apr-10 0:18
Michel Godfroid22-Apr-10 0:18 
AnswerRe: Relationship of C# Version to .NET Version Pin
Gregory Gadow22-Apr-10 3:57
Gregory Gadow22-Apr-10 3:57 
GeneralRe: Relationship of C# Version to .NET Version Pin
The Man from U.N.C.L.E.23-Apr-10 7:02
The Man from U.N.C.L.E.23-Apr-10 7:02 
GeneralRe: Relationship of C# Version to .NET Version Pin
Gideon Engelberth23-Apr-10 7:24
Gideon Engelberth23-Apr-10 7:24 
GeneralRe: Relationship of C# Version to .NET Version Pin
Gregory Gadow23-Apr-10 7:57
Gregory Gadow23-Apr-10 7:57 
GeneralRe: Relationship of C# Version to .NET Version Pin
Patrick Skelton24-Apr-10 23:17
Patrick Skelton24-Apr-10 23:17 
GeneralRe: Relationship of C# Version to .NET Version Pin
Patrick Skelton24-Apr-10 23:33
Patrick Skelton24-Apr-10 23:33 
AnswerRe: Relationship of C# Version to .NET Version [modified] Pin
Scott Dorman22-Apr-10 15:31
professionalScott Dorman22-Apr-10 15:31 
GeneralRe: Relationship of C# Version to .NET Version Pin
Patrick Skelton22-Apr-10 23:50
Patrick Skelton22-Apr-10 23:50 
AnswerRe: Relationship of C# Version to .NET Version Pin
Peace ON22-Apr-10 20:18
Peace ON22-Apr-10 20:18 

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.