I was reviewing some older posts dealing with handling Excel spreadsheets. One of those had these statements:
Set xlApp = GetObject(, "Excel.Application")
...
xlApp.UserControl = True
...
My question is, what does the UserControl property mean?
Printable View
I was reviewing some older posts dealing with handling Excel spreadsheets. One of those had these statements:
Set xlApp = GetObject(, "Excel.Application")
...
xlApp.UserControl = True
...
My question is, what does the UserControl property mean?
Did you lookup help ?Quote:
Originally posted by krtxmrtz
I was reviewing some older posts dealing with handling Excel spreadsheets. One of those had these statements:
Set xlApp = GetObject(, "Excel.Application")
...
xlApp.UserControl = True
...
My question is, what does the UserControl property mean?
I sure did but it wasn't there, at least not in the index. I don't know what topic this comes under.Quote:
Originally posted by jhermiz
Did you lookup help ?
well, just for the hell of it, I looked it up...
http://msdn.microsoft.com/library/de...tartupcode.asp
http://msdn.microsoft.com/library/de...automation.asp
http://www.mvps.org/access/general/gen0017.htm
Apparantly, it's a pretty important property at times:afrog: :bigyello: :D
I looked up the built-in help but just forgot about MSDN being out there.Quote:
Originally posted by ahara
well, just for the hell of it, I looked it up...
Thanks.