Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / Interop / August 2006

Tip: Looking for answers? Try searching our database.

CoInitialise has not been called? Attempt to use OleSetClipboard.....

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Robin Tucker - 12 Jul 2004 15:30 GMT
I need to use OleSetClipboard in my VB.NET application.  Unfortunately, when
I do the result returned is -2147221008 (CoInitialise has not been called).
As I am using OleSetClipboard from a thread I've created, I was under the
impression that .NET automatically called CoInitialise the first time I used
a COM object in that thread.  Is this the case?  What other reason can there
be for this problem?

Thanks for any help you can give (here is the code I use to import
OleSetClipboard - note COM.IDataObject is my VB wrapper around
IDataObject)....

Public Declare Auto Function OleSetClipboard Lib "OLE32.DLL" _
(<MarshalAs(UnmanagedType.Interface)> ByVal theDataObject As
COM.IDataObject) As Integer
Ben Rush - 12 Jul 2004 17:08 GMT
Robin,

What happens when you do call CoInitialize()? It is my understanding that it
does not in personally-created threads. You may still have to introduce that
thread to a particular apartment first.

> I need to use OleSetClipboard in my VB.NET application.  Unfortunately, when
> I do the result returned is -2147221008 (CoInitialise has not been called).
[quoted text clipped - 10 lines]
> (<MarshalAs(UnmanagedType.Interface)> ByVal theDataObject As
> COM.IDataObject) As Integer
Robin Tucker - 12 Jul 2004 17:40 GMT
I just tried it with:

   m_ComInitialized = DLLImports.CoInitializeEx(0,
DLLImports.COINIT.COINIT_APARTMENTTHREADED)

Which returns zero (which I believe is S_OK).

BUT: this still results in "CoInitialize has not been called." HRESULT from
the OleSetClipboard.  Note: my application is bracketed with <STAThread()> _
and my thread is created like this (ie. I do not specify an apartment model,
as I'm not to sure what it needs to be).

   m_Thread = New Thread(New ThreadStart(AddressOf _Start))
   If m_Thread Is Nothing Then
       Exit Sub
   End If

> Robin,
>
[quoted text clipped - 20 lines]
> > (<MarshalAs(UnmanagedType.Interface)> ByVal theDataObject As
> > COM.IDataObject) As Integer
Mattias Sj?gren - 12 Jul 2004 19:29 GMT
Robin,

>As I am using OleSetClipboard from a thread I've created, I was under the
>impression that .NET automatically called CoInitialise the first time I used
>a COM object in that thread.  Is this the case?

By default it makes it an MTA thread. Make sure you set the thread's
ApartmentState property to STA before starting the thread.

Mattias

Signature

Mattias Sjögren [MVP]  mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Lennart Myrehed - 09 Aug 2006 09:07 GMT
Call OleInitialize(NULL) / OleUninitialize() instead

From http://developmentnow.com/g/21_2004_7_0_0_106360/CoInitialise-has-not-been-calle
d-Attempt-to-use-OleSetClipboard---.ht


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.