CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 27

Threaded View

  1. #10
    Join Date
    Jul 2009
    Posts
    12

    Re: Form Load Event never fired

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    
    namespace thePolicyHunters
    {
        public partial class LifeInsurance : Form
        {
            public LifeInsurance(string lRecordKey)
            {
                InitializeComponent();
                tmp.Text = lRecordKey.ToString();
                
            }
    
            private void commissionPendingLabel_Click(object sender, EventArgs e)
            {
    
            }
    
            private void commissionPendingTextBox_TextChanged(object sender, EventArgs e)
            {
    
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
            }
    
            private void groupBox1_Enter(object sender, EventArgs e)
            {
    
            }
    
            private void fillByToolStripButton_Click(object sender, EventArgs e)
            {
    
    
            }
    
            private void filterLifeToolStripButton_Click(object sender, EventArgs e)
            {
                
              
            }
    
            private void insuranceCommentsDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
            {
    
            }
    
            private void insuranceCommentsDataGridView_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e)
            {
                e.Row.Cells["RecordKey"].Value = recIDTextBox.Text;
                e.Row.Cells["CommentType"].Value = "Life";
            }
    
            private void LifeInsurance_Load(object sender, EventArgs e)
            {
                MessageBox.Show("Loading...");
    
            }
    
        }
    }
    Last edited by Shuja Ali; July 5th, 2009 at 06:03 AM. Reason: Added code tags

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured