'I want to add all the checked boxes into the listview in vb.net
I am not using CheckedListBox, I am using seperate check boxes.
eg- I want to add sandwiches, burger, pasta into the ListView next to the menu

Solution 1:[1]
This code may help you rtbResoconto Is RichTextBox:
Private Sub btnGenerareRicevuta_Click(sender As Object, e As EventArgs) Handles btnGeneraRicevuta.Click
rtbResoconto.AppendText("Calcolatore del Sistema di Gestione del Prestito" + vbNewLine)
rtbResoconto.AppendText("------------------------------------------------------------------------" + vbNewLine)
rtbResoconto.AppendText("Inserisci Ammontare Del Prestito" + vbTab + txtImportoPrestito.Text + vbNewLine)
rtbResoconto.AppendText("Inserisci Numero degli Anni" + vbTab + txtAnniPrestito.Text + vbNewLine)
rtbResoconto.AppendText("Inserisci gli Interessi Rate" + vbTab + vbTab + txtInteressiRate.Text + vbNewLine)
rtbResoconto.AppendText("Pagamento Mensile" + vbTab + vbTab + lblPagamentoMensile.Text + vbNewLine)
rtbResoconto.AppendText("Pagamento Totale" + vbTab + vbTab + vbTab + lblTotalePagamento.Text + vbNewLine)
rtbResoconto.AppendText("-------------------------------------------------------------------------" + vbNewLine)
rtbResoconto.AppendText("----------------------------Grazie---------------------------------------" + vbNewLine)
End Sub
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Michele Signorile |
