Record fill-ups for all your cars and monitor your car’s efficiency.
Need to track business mileage? Just start auto trip and we will track all your trips in the background whenever you are on the move.
Don’t lose sight of your maintenance and services. Log your services and we will remind you when its due.
Know your vehicle's running costs and plan for your expenses.
Sign into the cloud and get easy access to all your data from anywhere and any device.
Run your reports or schedule them weekly or monthly to know more about your fill-ups , mileage and expenses.
Try ' Insert into Invoice Master Dim masterCmd As New SqlCommand("INSERT INTO tbl_Invoice_Master (InvoiceNo, InvoiceDate, CustomerID, SubTotal, TotalCGST, TotalSGST, GrandTotal) VALUES (@invNo, @date, @custId, @sub, @cgst, @sgst, @grand)", conn, transaction) masterCmd.Parameters.AddWithValue("@invNo", txtInvoiceNo.Text) masterCmd.Parameters.AddWithValue("@date", Convert.ToDateTime(txtInvoiceDate.Text)) masterCmd.Parameters.AddWithValue("@custId", cmbCustomer.SelectedValue) masterCmd.Parameters.AddWithValue("@sub", CDec(lblSubtotal.Text)) masterCmd.Parameters.AddWithValue("@cgst", CDec(lblTotalCGST.Text)) masterCmd.Parameters.AddWithValue("@sgst", CDec(lblTotalSGST.Text)) masterCmd.Parameters.AddWithValue("@grand", CDec(lblGrandTotal.Text)) masterCmd.ExecuteNonQuery()
transaction.Commit() MessageBox.Show("Invoice Saved Successfully!") Me.Close() Catch ex As Exception transaction.Rollback() MessageBox.Show("Error: " & ex.Message) End Try End Using End Sub End Class Add a PrintDocument and PrintPreviewDialog control to the form. Then handle the PrintPage event. vbnet+billing+software+source+code
BillingSoftware/ ├── Forms/ │ ├── frmLogin.vb │ ├── frmProducts.vb │ ├── frmCustomers.vb │ └── frmInvoice.vb ├── Modules/ │ └── DatabaseHelper.vb ├── Reports/ │ └── InvoiceReport.rdlc └── app.config This module handles all SQL connections and commands using SqlClient . Try ' Insert into Invoice Master Dim masterCmd
Private Sub InitializeDetailsGrid() dtDetails.Columns.Add("ProductID", GetType(Integer)) dtDetails.Columns.Add("ProductName", GetType(String)) dtDetails.Columns.Add("Quantity", GetType(Decimal)) dtDetails.Columns.Add("Rate", GetType(Decimal)) dtDetails.Columns.Add("TaxableValue", GetType(Decimal)) dtDetails.Columns.Add("CGST", GetType(Decimal)) dtDetails.Columns.Add("SGST", GetType(Decimal)) dgvDetails.DataSource = dtDetails End Sub Private Sub InitializeDetailsGrid() dtDetails
Try ' Insert into Invoice Master Dim masterCmd As New SqlCommand("INSERT INTO tbl_Invoice_Master (InvoiceNo, InvoiceDate, CustomerID, SubTotal, TotalCGST, TotalSGST, GrandTotal) VALUES (@invNo, @date, @custId, @sub, @cgst, @sgst, @grand)", conn, transaction) masterCmd.Parameters.AddWithValue("@invNo", txtInvoiceNo.Text) masterCmd.Parameters.AddWithValue("@date", Convert.ToDateTime(txtInvoiceDate.Text)) masterCmd.Parameters.AddWithValue("@custId", cmbCustomer.SelectedValue) masterCmd.Parameters.AddWithValue("@sub", CDec(lblSubtotal.Text)) masterCmd.Parameters.AddWithValue("@cgst", CDec(lblTotalCGST.Text)) masterCmd.Parameters.AddWithValue("@sgst", CDec(lblTotalSGST.Text)) masterCmd.Parameters.AddWithValue("@grand", CDec(lblGrandTotal.Text)) masterCmd.ExecuteNonQuery()
transaction.Commit() MessageBox.Show("Invoice Saved Successfully!") Me.Close() Catch ex As Exception transaction.Rollback() MessageBox.Show("Error: " & ex.Message) End Try End Using End Sub End Class Add a PrintDocument and PrintPreviewDialog control to the form. Then handle the PrintPage event.
BillingSoftware/ ├── Forms/ │ ├── frmLogin.vb │ ├── frmProducts.vb │ ├── frmCustomers.vb │ └── frmInvoice.vb ├── Modules/ │ └── DatabaseHelper.vb ├── Reports/ │ └── InvoiceReport.rdlc └── app.config This module handles all SQL connections and commands using SqlClient .
Private Sub InitializeDetailsGrid() dtDetails.Columns.Add("ProductID", GetType(Integer)) dtDetails.Columns.Add("ProductName", GetType(String)) dtDetails.Columns.Add("Quantity", GetType(Decimal)) dtDetails.Columns.Add("Rate", GetType(Decimal)) dtDetails.Columns.Add("TaxableValue", GetType(Decimal)) dtDetails.Columns.Add("CGST", GetType(Decimal)) dtDetails.Columns.Add("SGST", GetType(Decimal)) dgvDetails.DataSource = dtDetails End Sub
Simply Fleet is a simple and affordable software to help you track, monitor and analyse your fleet’s operations.