Imports System.Data.SqlClient Public Class Form1 Dim connectionString As String = "Data Source=(local);Initial Catalog=InventoryDB;Integrated Security=True" Dim connection As New SqlConnection(connectionString) Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load LoadProducts() End Sub Private Sub LoadProducts() Dim command As New SqlCommand("SELECT * FROM Products", connection) Dim adapter As New SqlDataAdapter(command) Dim table As New DataTable() adapter.Fill(table) DataGridView1.DataSource = table End Sub Private Sub btnAddProduct_Click(sender As Object, e As EventArgs) Handles btnAddProduct.Click Dim productName As String = txtProductName.Text Dim quantity As Integer = Integer.Parse(txtQuantity.Text) Dim price As Decimal = Decimal.Parse(txtPrice.Text) Dim command As New SqlCommand("INSERT INTO Products (ProductName, Quantity, Price) VALUES (@ProductName, @Quantity, @Price)", connection) command.Parameters.AddWithValue("@ProductName", productName) command.Parameters.AddWithValue("@Quantity", quantity) command.Parameters.AddWithValue("@Price", price) connection.Open() command.ExecuteNonQuery() connection.Close() LoadProducts() End Sub Private Sub btnSellProduct_Click(sender As Object, e As EventArgs) Handles btnSellProduct.Click Dim productName As String = txtProductNameToSell.Text Dim quantityToSell As Integer = Integer.Parse(txtQuantityToSell.Text) Dim command As New SqlCommand("UPDATE Products SET Quantity = Quantity @QuantityToSell WHERE ProductName = @ProductName", connection) command.Parameters.AddWithValue("@ProductName", productName) command.Parameters.AddWithValue("@QuantityToSell", quantityToSell) connection.Open() command.ExecuteNonQuery() connection.Close() LoadProducts() End Sub End Class
在这个示例中,我们使用了SQL Server数据库来存储产品信息,我们需要创建一个名为InventoryDB
的数据库,并在其中创建一个名为Products
的表,包含以下字段:ProductID
(自动递增的主键)、ProductName
(产品名称)、Quantity
(库存数量)和Price
(价格)。
在Form1
类中,我们定义了一个connectionString
变量来存储数据库连接字符串,我们创建了一个SqlConnection
对象来连接到数据库。
LoadProducts
方法用于从数据库中获取所有产品信息并将其显示在DataGridView1
控件中。btnAddProduct_Click
方法用于向数据库中添加新产品,而btnSellProduct_Click
方法用于销售产品并更新库存数量。
这个示例没有包含错误处理和输入验证,在实际项目中,你需要确保对用户输入进行适当的验证,并处理可能出现的异常。
以上内容就是解答有关vb进销存源码的详细内容了,我相信这篇文章可以为您解决一些疑惑,有任何问题欢迎留言反馈,谢谢阅读。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/1090582.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复