Jan 10, 2003 #1 clivepot Technical User Jan 10, 2003 3 GB When a text field in a table is empty it has a null value. Does anyone know what properties an empty OLE field in a table has?
When a text field in a table is empty it has a null value. Does anyone know what properties an empty OLE field in a table has?
Jan 10, 2003 #2 BillPower Programmer Nov 28, 2002 1,434 GB It's the same Null, try this: If IsNull(Me!YourBoundOLEControlName) Then MsgBox "Is Null" Else MsgBox "Is Not Null" End If Upvote 0 Downvote
It's the same Null, try this: If IsNull(Me!YourBoundOLEControlName) Then MsgBox "Is Null" Else MsgBox "Is Not Null" End If