Hi Guys,
I have a custom control that I add to a flowlayout panel on a form:
but when I call a function to update the bindings on the control, it doesn't display the updated values; But if I add the same control directly to the form and call the same function, the updated values are displayed.
Anyone have any ideas what could cause this?
I have a custom control that I add to a flowlayout panel on a form:
Code:
Dim newIntake1 As New NewIntake
Private Sub Button1_Click(sender As Object, e As EventArgs)
searchFlowPanel.Controls.Add(newIntake1)
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
newIntake1.loadEdit(1)
End Sub
Anyone have any ideas what could cause this?