我收到错误消息
输入字符串的格式不正确。
public partial class Fiche_Ordre : DevExpress.XtraEditors.XtraForm
{
public string ClientID = "", OderId = "", TempId = "";
.....
public Fiche_Ordre()
{
InitializeComponent();
Constuct_Page();
}
public Fiche_Ordre(string OrderID)
{
InitializeComponent();
Constuct_Page();
Pers_Ordre oPersOrdr = oOrder_BL.Get_OrdreOne_BL(ClientID, Convert.ToInt32(OderId), false);
textEdit_RaisonSoc.Text = oPersOrdr.RaisonSoc;
}
当我从其他形式调用构造函数时:
private void GoToFiche(object sender, EventArgs e)
{
try
{
Fiche_Ordre f_Fiche = new Fiche_Ordre("1");
// Fiche_Ordre f_Fiche = new Fiche_Ordre(gridView_Liste_Ordres.GetRowCellValue(0, "NO_ORDRE").ToString());
f_Fiche.Show();
}
catch (Exception excThrown)
{
MessageBox.Show(excThrown.Message);
}
我有构造函数:public Fiche_Ordre(string OrderID)
答案 0 :(得分:2)
public Fiche_Ordre(string OrderID)
{
InitializeComponent();
Constuct_Page();
Pers_Ordre oPersOrdr = oOrder_BL.Get_OrdreOne_BL(ClientID, Convert.ToInt32(OderId), false);
textEdit_RaisonSoc.Text = oPersOrdr.RaisonSoc;
}
您正在传递OrderID
并使用OderId
。
注意你的案例和拼写。