小编ran*_*ish的帖子

如何使用VBNet将数据插入SQL Server

我是新手,vb.net我需要使用vb.net在表中插入数据,请任何人帮助

我试过这个

在这里我尝试了示例代码

我得到了这个例外,Column name or number of supplied values does not match table definition. 谢谢你

Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As  System.EventArgs)  Handles btnSave.Click

    Dim strName As String = txtName.Text
    Dim strId As String = txtID.Text
    Dim strPhone As String = txtPhone.Text
    Dim strBranch As String = cmboxBranch.SelectedItem.ToString()
    Dim  strCourse As String = cmbboxCourse.SelectedItem.ToString()
    Dim dblFee As Double = Double.Parse(txtFee.Text) 

    Dim strCommand As String = "insert into student values('" & strName & "','" …
Run Code Online (Sandbox Code Playgroud)

vb.net sql-server

14
推荐指数
1
解决办法
11万
查看次数

如何将数组字符串复制到list <string>?

可能重复:
将字符串数组转换为List <string>

我是C#的新手如何将整个数组字符串复制到List?

我试过这个,但我没有得到任何解决方案.

 List<string> lstArray  = strArray.toList<string>;

    or           
 List<string> lstArray = new List<string>();
 strArray.copyTo(lstArray,0);
Run Code Online (Sandbox Code Playgroud)

c# string list winforms

8
推荐指数
1
解决办法
3万
查看次数

如何在C#/ Windows窗体中翻转/旋转标签?

如何在C#Windows窗体中翻转/旋转标签?

我将背景图像设置为我的标签.

在每个时间间隔,它将三个像素移动到右侧.当它到达表格结束位置时,我需要翻转并转回标签.

我尝试了以下方式,但我没有得到解决方案.

private void timer1_Tick(object sender, EventArgs e){

    if (label2.Location.X < this.Width)
        label2.Location = new Point(label2.Location.X + incr, label2.Location.Y);
    else
    {
        incr = -2;
        label2.Location = new Point(label2.Location.X - 50, label2.Location.Y);
        label1.Image.RotateFlip();
    }
    this.Refresh();
}
Run Code Online (Sandbox Code Playgroud)

c# rotation image-rotation

4
推荐指数
1
解决办法
1万
查看次数

如何将屏蔽文本框值设置为十进制数?

我是C#的新手.我在这里使用masked textbox并将面具设置为00.0.并且在数据库中相应的字段存储在decimal(3,1) 检索到屏蔽文本框时它将给出不准确的值,如果我存储12.3,23.8,45.7这些类型的值我得到解决方案但是如果我们使用1.3,3.5,5.6而不是这些我进入了我的屏蔽文本框为13.0,35.0,56.0 ....如何处理此异常?抱歉..!因为我的英语不好预感谢

c# decimal maskedtextbox winforms

4
推荐指数
1
解决办法
2万
查看次数