Question help how to charge monthly fee of multiple customer

trialer

Well-known member
Joined
Oct 4, 2010
Messages
64
Programming Experience
1-3
how can i add the newbal to datagridview with databound already?


VB.NET:
 Private Sub cal()
        i1 = PrevBal
        i2 = MF
        calc = i1 + i2
        NewBal = calc.ToString
    End Sub

VB.NET:
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Call cal()
        With DataGridView1
            .Rows.Add()
            .Rows.Item(.Rows.Count - 1).Cells("NewBal").Value = NewBal
        End With
    End Sub


help... thanks..
 

Attachments

  • bill.jpg
    bill.jpg
    52.6 KB · Views: 24
Back
Top