方法';没有过载;(函数名称)';采取';0';论点

本文关键字:采取 论点 没有过 方法 函数 | 更新日期: 2023-09-27 18:27:50

在调试时,我得到了以下错误:"方法'STUDENTCOURSEDETAILS_Load'没有重载,需要'0'个参数"

STUDENTCOURSEDETAILS是一个Winform,STUDENTCOURSEDETAILS_Load是该表单的OnLoad事件。我试图在另一个函数中调用此事件,但出现了上述错误。如何在另一个函数中调用事件?调用此事件时如何传递参数?我不知道我必须通过什么样的参数考试。需要帮助。。。

private void STUDENTCOURSEDETAILS_Load(object sender, EventArgs e)
        {
            txtregno.Enabled        = false;
            txtstudentname.Enabled  = false;
            txtcoursid.Enabled      = false;
            txtcoursname.Enabled    = false;
            dtpdoj.Enabled          = false;
            txtfee.Enabled          = false;
            txtdiscountper.Enabled  = false;
            txtnarration.Enabled    = false;
            btnSave.Text            = "&Add";
        }
private void btnAdd_Click(object sender, EventArgs e)
        {
            switch (btnSave.Text)
            {
                case "&Add":
                    txtregno.Enabled        = true;
                    txtstudentname.Enabled  = true;
                    txtcoursid.Enabled      = true;
                    txtcoursname.Enabled    = true;
                    dtpdoj.Enabled          = true;
                    txtfee.Enabled          = true;
                    txtdiscountper.Enabled  = true;
                    txtnarration.Enabled    = true;
                    btnSave.Text            = "&Save";
                    break;
                case "&Save":
                    if (validation())
                    {
                        if (MessageBox.Show("sure to save?", CPublic.messagename, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                        {
                            selectstudentid();
                            cmd.Connection = CPublic.Comm_con;
                            cmd.Parameters.Clear();
                            cmd.Parameters.AddWithValue("@regno", txtregno.Text);
                            cmd.Parameters.AddWithValue("@studentid", id);
                            cmd.Parameters.AddWithValue("@studentname", txtstudentname.Text);
                            cmd.Parameters.AddWithValue("@courseid", txtcoursid.Text);
                            cmd.Parameters.AddWithValue("@coursename", txtcoursname.Text);
                            cmd.Parameters.AddWithValue("@doj", dtpdoj.Value.ToString(CGeneral.ServeDateFmt));
                            cmd.Parameters.AddWithValue("@fee", txtfee.Text);
                            cmd.Parameters.AddWithValue("@discount", txtdiscountper.Text);
                            cmd.Parameters.AddWithValue("@narration", txtnarration.Text);
                            cmd.CommandType = CommandType.StoredProcedure;
                            cmd.CommandText = "SP_INSERT_studentcoursedetails" + CPublic.g_firmcode;
                            cmd.ExecuteNonQuery();
                            MessageBox.Show("COURSE ADDED SUCCESSFULLY...", CPublic.messagename, MessageBoxButtons.OK, MessageBoxIcon.Information);
                            clearall();
                            btnSave.Enabled         = true;
                            btnSave.Text            = "&Add";
                            STUDENTCOURSEDETAILS_Load();
                         }
                    }
                            break;
            }
        }

方法';没有过载;(函数名称)';采取';0';论点

这是因为行

btnSave.Text            = "&Add";
STUDENTCOURSEDETAILS_Load();

你应该使用

STUDENTCOURSEDETAILS_Load(null, null);

显然,您可能会在运行时面临进一步的错误。

您可以这样调用方法:

STUDENTCOURSEDETAILS_Load(null, null);