Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Property of OLE field when empty

Status
Not open for further replies.

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?
 
It's the same Null, try this:

If IsNull(Me!YourBoundOLEControlName) Then
MsgBox "Is Null"
Else
MsgBox "Is Not Null"
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top