I am trying to display out of stock items and bills to today's orders in a listbox from an access database with the click of a button.
When I click the bill button i need to display the customer name, address, items ordered with costs and the total cost as well.
This is what I have so far, and I already made the BINDING SOURCE connections to the access database and created the forms. Please help me figure out how to do this or at least get me started. Attached is my code and a picture of what it needs to look like.
Thanks so much!
Imports System.Data.OleDb
Public Class frmMicroland
Dim dbConnection As OleDbConnection
Private Sub btnStockItems_Click(sender As System.Object, e As System.EventArgs) Handles btnStockItems.Click
lstOutput.Items.Add("Here are the items taht are out of inventory or must be reordered.")
lstOutput.Items.Add("The numbers shown give the minimum reorder quantity required.")
End Sub
Private Sub btnTodaysOrders_Click(sender As System.Object, e As System.EventArgs) Handles btnTodaysOrders.Click
End Sub
End Class

New Topic/Question
Reply



MultiQuote




|