I am using Oracle managed driver and Entity 5x. I have a winforms VB project and am seeing the strangest thing. When the data source of the Binding Source is filled, then the form shrinks about 50%, on a 4K monitor. Any thoughts?
Here is the code:
db = New RadsEntityConnStr4() ' entity context
db.SetDatabase()
If (mViewAddEdit = ViewAddEditEnum.Add) Then
Me.bsPhantom.AddNew()
Return
End If
Dim query = From ps In db.PHANTOM_SESSION Where (ps.PHNTM_SESSION_NO = CDbl(mPhntmSessionNum))
bsPhantom.DataSource = query.ToList() ' resize occurs here