Below is my code for one of form load.
I have multiple databind controls so I have multiple lines of code that fills my datagrids and databind combobox. The problem is when I debug step by step, my application performs 3 lines of codes but rest of them are skipped. Someone please tell me what causing my program to skip lines of code.
Private Sub frmShp_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Me.TblCarrierTableAdapter.FillComboBox(Me.GCR_IC_LGT_DataSet.tblCarrier)
Me.ViewOutstandingParcelTableAdapter.Fil(Me.GCR_IC_LGT_DataSet.ViewOutstandingParcel)
Me.ViewOutboundShipmentTableAdapter.Fill(Me.GCR_IC_LGT_DataSet.ViewOutboundShipment)
Me.ViewObjectByTypeTableAdapter.Fill(Me.GCR_IC_LGT_DataSet.ViewObjectByType, "Shipping")
dtpShipDate.Value = Now()
End Sub