View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default Use late binding to get at the FORMS library

xp,

There is a discussion here that may be of use:

http://www.mrexcel.com/forum/showthread.php?t=192500

HTH,
Bernie
MS Excel MVP


"xp" wrote in message
...
Using Excel 2007;

I'm trying to use late binding to create a reference to the Forms library so
I don't have to reference it in my code. The following does NOT work:

Dim oData As Object
Set oData = CreateObject("MSForms.DataObject")

Can someone please correct the above form me so I can get at the
"DataObject" library?

Thanks.