c++.wxwindows - digital mars wxStyledtextControl
- chris elliott (9/9) Oct 22 2003 Hi
- Charles Sanders (7/16) Oct 22 2003 Did you try calling
- Charles Sanders (10/33) Oct 22 2003 Probably buried somewhere in the code is
- Walter (3/5) Oct 22 2003 #if __DMC__
- chris elliott (5/9) Oct 23 2003 Yes there was an ifdef around OleInitialize
Hi Building the wxStyledtextcontrol sample, with digital mars on the wxWindows branch gives an error when text is selected to go to the clipboard (cut or copy).paste is Ok. A message box pops up saying: Error -2147221008 coInitialize has not been called This does not happen with VC6, Borland, or gcc compilers Any ideas appreciated chris
Oct 22 2003
Did you try calling CoInitalize(0); // to initalize COM ? C "chris elliott" <chris ampleforth.u-net.com> wrote in message news:bn5um9$314v$1 digitaldaemon.com...Hi Building the wxStyledtextcontrol sample, with digital mars on thewxWindowsbranch gives an error when text is selected to go to the clipboard (cut or copy).paste is Ok. A message box pops up saying: Error -2147221008 coInitialize has not been called This does not happen with VC6, Borland, or gcc compilers Any ideas appreciated chris
Oct 22 2003
Probably buried somewhere in the code is #ifdef MSVC || BORLAND // miscrosoft specific CoInitialize(0); #endif I dont use wxWindows anymore but it would be cool to add a #ifdef DM ( Or whatever Digital Mars is defined as ) for that. C "Charles Sanders" <sanders-consulting comcast.net> wrote in message news:bn6fmf$nb4$1 digitaldaemon.com...Did you try calling CoInitalize(0); // to initalize COM ? C "chris elliott" <chris ampleforth.u-net.com> wrote in message news:bn5um9$314v$1 digitaldaemon.com...orHi Building the wxStyledtextcontrol sample, with digital mars on thewxWindowsbranch gives an error when text is selected to go to the clipboard (cutcopy).paste is Ok. A message box pops up saying: Error -2147221008 coInitialize has not been called This does not happen with VC6, Borland, or gcc compilers Any ideas appreciated chris
Oct 22 2003
"Charles Sanders" <sanders-consulting comcast.net> wrote in message news:bn6glg$oq9$1 digitaldaemon.com...I dont use wxWindows anymore but it would be cool to add a #ifdef DM ( Or whatever Digital Mars is defined as ) for that.#if __DMC__
Oct 22 2003