How to overload a windows c-sharp form constructor ?

whoopdeedo5555

New member
I have a form that I would like to pass an array and an integer upon instantiating it. Do I get rid of the regular constructor? Do I use initilizeComponent in my overloaded constructor ?

Code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace PointTracker
{
public partial class frmDailyLog : Form
{
public frmDailyLog()
{
InitializeComponent();
}


private void frmDailyLog_Load(object sender, EventArgs e)
{

}
}
}
 
Back
Top