Hello good afternoon Family. a query how can I pass value from a combobox to another label of another form? I'm doing this code in my first form:
Private Sub DtgImportar_CellDoubleClick(sender As Object, e As DataGridViewCellEventArgs) Handles DtgImportar.CellDoubleClick
Try
ivIncidencia = 0
ivIncidencia = DtgImportar.Rows(e.RowIndex).Cells(1).Value()
Me.Close()
FrmAtencion.Show()
CboUsuario.Text = FrmAtencion.lblusuarioanterior.Text
Catch ex As Exception
MsgBox(Err.Description, MsgBoxStyle.Critical, "..:: Aviso del Sistema ::..")
Exit Try
End Try
End Sub
but when I go to my other form that label is empty