Hi, I need to multiply a number from a numericupdown control with the .text property of another label that will also show a numeric value.
how would I go about doing this.
Also I have a datagrid in one form (connects to a access db), when I select the row of the datagrid I need to open a new form and copy the values of the datarow into some labels on a second form. this needs to be done in the click of a button, (openin the form and copying the values onto the label)
I'm thinking its something along the lines of
Dim x As Integer = datagrid.CurrentRow.Index 'to get the values
I used something similar for a delete button but that was different as it was suppose to delete the whole row.
This is more complex as I have to take three values.
how would I go about doing this.
Also I have a datagrid in one form (connects to a access db), when I select the row of the datagrid I need to open a new form and copy the values of the datarow into some labels on a second form. this needs to be done in the click of a button, (openin the form and copying the values onto the label)
I'm thinking its something along the lines of
Dim x As Integer = datagrid.CurrentRow.Index 'to get the values
I used something similar for a delete button but that was different as it was suppose to delete the whole row.
This is more complex as I have to take three values.