www.digitalmars.com         C & C++   DMDScript  

c++.stlsoft - [VOLE] : need help

reply "Mario Lecafe" <m.lecafe free.fr> writes:
Hello,

I want to create a C++ program COM to drive Excel (like using Perl
Win32::OLE or Python

win32com.client) with the open-source C++ libraries
VOLE-0.4.4/stlsoft-1.9.46

My configuration :
Windows XP and the GNU GCC 3.4.2 compiler (mingw32)

I'm trying to use the example "Excel.driver.cpp" with my compiler
 G++ -I%VOLE%/include -I%STLSOFT%/include ....

but it makes error that I can't resolve (with VOLE 0.5.1/stlsoft-1.9.48 too)

Error :

vole::object  xlApp   =   vole::object::create(L"Excel.Application",
CLSCTX_LOCAL_SERVER);

error: no matching function for call to `vole::object::create(const
wchar_t[18], tagCLSCTX)'

C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|524|note: candidates are:
static vole::object

vole::object::create(const CLSID&)
C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|537|note:
static vole::object

vole::object::create(const CLSID&, DWORD,
vole::coercion_level::coercion_level)
C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|550|note:
static vole::object

vole::object::create(const WCHAR*)
C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|563|note:
static vole::object

vole::object::create(const WCHAR*, DWORD,
vole::coercion_level::coercion_level)
C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|577|note:
static vole::object

vole::object::create(const char*)
C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|582|note:
static vole::object

vole::object::create(const char*, DWORD,
vole::coercion_level::coercion_level)


Please Help me to continue.

Another question :
Is it possible to use VOLE/stlsoft libraries with cross-compiling for win32
under linux ?

Note :
I am a C++ beginner, I'm french and my English is not good, please answer me
in simple words.


Best,

Mario
Sep 14 2008
next sibling parent reply Matt Wilson <stlsoft gmail.com> writes:
Mario Lecafe Wrote:

 Hello,
 
 I want to create a C++ program COM to drive Excel (like using Perl
 Win32::OLE or Python win32com.client) with the open-source C++
 libraries VOLE-0.4.4/stlsoft-1.9.46
 
 My configuration :
 Windows XP and the GNU GCC 3.4.2 compiler (mingw32)
 
 I'm trying to use the example "Excel.driver.cpp" with my compiler
  G++ -I%VOLE%/include -I%STLSOFT%/include ....
 
 but it makes error that I can't resolve (with VOLE 0.5.1/stlsoft-1.9.48 too)
 
 Error :
 
 vole::object  xlApp   =   vole::object::create(L"Excel.Application",
 CLSCTX_LOCAL_SERVER);
 
 error: no matching function for call to `vole::object::create(const
 wchar_t[18], tagCLSCTX)'
 
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|524|note: candidates are:
 static vole::object
 
 vole::object::create(const CLSID&)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|537|note:
 static vole::object
 
 vole::object::create(const CLSID&, DWORD,
 vole::coercion_level::coercion_level)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|550|note:
 static vole::object
 
 vole::object::create(const WCHAR*)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|563|note:
 static vole::object
 
 vole::object::create(const WCHAR*, DWORD,
 vole::coercion_level::coercion_level)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|577|note:
 static vole::object
 
 vole::object::create(const char*)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|582|note:
 static vole::object
 
 vole::object::create(const char*, DWORD,
 vole::coercion_level::coercion_level)
 
 
 Please Help me to continue.
 
 Another question :
 Is it possible to use VOLE/stlsoft libraries with cross-compiling for win32
 under linux ?
 
 Note :
 I am a C++ beginner, I'm french and my English is not good, please answer me
 in simple words.
 
 
 Best,
 
 Mario
I think the problem is simply that the create() method changed to have three (non-default) arguments in version 0.2.1. Clearly I have forgotten to update the example, for which I apologise. Please look at test/scratch/Excel.driver.test. HTH Matt
Sep 15 2008
parent reply "Mario Lecafe" <m.lecafe free.fr> writes:
"Matt Wilson" <stlsoft gmail.com> a écrit dans le message de news:
galnu4$1e04$1 digitalmars.com...
 Mario Lecafe Wrote:

 Hello,

 I want to create a C++ program COM to drive Excel (like using Perl
 Win32::OLE or Python win32com.client) with the open-source C++
 libraries VOLE-0.4.4/stlsoft-1.9.46

 My configuration :
 Windows XP and the GNU GCC 3.4.2 compiler (mingw32)

 I'm trying to use the example "Excel.driver.cpp" with my compiler
  G++ -I%VOLE%/include -I%STLSOFT%/include ....

 but it makes error that I can't resolve (with VOLE 0.5.1/stlsoft-1.9.48
 too)

 Error :

 vole::object  xlApp   =   vole::object::create(L"Excel.Application",
 CLSCTX_LOCAL_SERVER);

 error: no matching function for call to `vole::object::create(const
 wchar_t[18], tagCLSCTX)'

 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|524|note: candidates
 are:
 static vole::object

 vole::object::create(const CLSID&)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|537|note:
 static vole::object

 vole::object::create(const CLSID&, DWORD,
 vole::coercion_level::coercion_level)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|550|note:
 static vole::object

 vole::object::create(const WCHAR*)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|563|note:
 static vole::object

 vole::object::create(const WCHAR*, DWORD,
 vole::coercion_level::coercion_level)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|577|note:
 static vole::object

 vole::object::create(const char*)
 C:\opensrc\vole\vole-0.4.4\include\vole\object.hpp|582|note:
 static vole::object

 vole::object::create(const char*, DWORD,
 vole::coercion_level::coercion_level)


 Please Help me to continue.

 Another question :
 Is it possible to use VOLE/stlsoft libraries with cross-compiling for
 win32
 under linux ?

 Note :
 I am a C++ beginner, I'm french and my English is not good, please answer
 me
 in simple words.


 Best,

 Mario
I think the problem is simply that the create() method changed to have three (non-default) arguments in version 0.2.1. Clearly I have forgotten to update the example, for which I apologise. Please look at test/scratch/Excel.driver.test. HTH Matt
Hello Matt, Thank's for your answers, I have used the test/scratch/Excel.driver.test.cpp with the good create() methode. The errors have disappeared, but there are many others "undefined reference to..." I have used this command line with Dev-Cpp or MingW : G++ -I%VOLE%/include -I%STLSOFT%/include -o myTest.exe C:\opensrc\vole\vole-0.4.4\test\Excel.driver.test\Excel.driver.test.cpp Can you help me again ? Best, Mario begin 666 Errors-25092008.txt M=6UE;G1S(&%N9"!3971T:6YG<UQ5=&EL:7-A=&5U<CYC9%P-" T*0SI</F-D M:6X^1RLK("U))59/3$4E+VEN8VQU9&4 +4DE4U1,4T]&5"4O:6YC;'5D92 M M;R!M>51E<W0N97AE($,Z7&]P96YS<F-<=F]L95QV;VQE+3 N-"XT7'1E<W1< M3T-5345^,5Q55$E,25-^,5Q,3T-!3%-^,5Q496UP+V-C84=A86%A+F\H+G1E M*3I%>&-E;"YD<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 M25-^,5Q,3T-!3%-^,5Q496UP+V-C84=A86%A+F\H+G1E>'0D7UI.-W-T;'-O M9G0Q-&-O;7-T;%]P<F]J96-T-W9A<FEA;G1$,45V6W-T;'-O9G0Z.F-O;7-T M<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8%9A<FEA M<"]C8V%'86%A82YO*"YT97AT)%]:3DLT=F]L939O8FIE8W0V26YV;VME16QT M:EMV;VQE.CIO8FIE8W0Z.DEN=F]K92AL;VYG+"!U;G-I9VYE9"!S:&]R="P M=&%G1$E34%!!4D%-4RHL('1A9U9!4DE!3E0J+"!T86=%6$-%4$E.1D\J+"!U M;G-I9VYE9"!I;G0J*2!C;VYS=%TK,'AD-RDZ17AC96PN9')I=F5R+G1E<W0N M3T-5345^,5Q55$E,25-^,5Q,3T-!3%-^,5Q496UP+V-C84=A86%A+F\H+G1E M>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P<F]J96-T,31E<G)O<FEN9F]?9&5S M8T0Q179;<W1L<V]F=#HZ8V]M<W1L7W!R;VIE8W0Z.F5R<F]R:6YF;U]D97-C M.CI^97)R;W)I;F9O7V1E<V,H*5TK,' T-2DZ17AC96PN9')I=F5R+G1E<W0N M+F\H+G1E>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P<F]J96-T,31E<G)O<FEN M9F]?9&5S8T0Q179;<W1L<V]F=#HZ8V]M<W1L7W!R;VIE8W0Z.F5R<F]R:6YF M;U]D97-C.CI^97)R;W)I;F9O7V1E<V,H*5TK,' U-BDZ17AC96PN9')I=F5R M84=A86%A+F\H+G1E>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P<F]J96-T,31E M<G)O<FEN9F]?9&5S8S(P8VAE8VM?9&5S8W)I<'1I;VY?85]%=EMS=&QS;V9T M.CIC;VUS=&Q?<')O:F5C=#HZ97)R;W)I;F9O7V1E<V,Z.F-H96-K7V1E<V-R M:7!T:6]N7V%?*"E=*S!X8C$I.D5X8V5L+F1R:79E<BYT97-T+F-P<#H =6YD M969I;F5D(')E9F5R96YC92!T;R! 0V]487-K365M06QL;V- -"<-"D,Z7$1/ M0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A86$N;R N=&5X M0S%%=EMS=&QS;V9T.CIC;VUS=&Q?<')O:F5C=#HZ97)R;W)I;F9O7V1E<V,Z M.F5R<F]R:6YF;U]D97-C*"E=*S!X,S(I.D5X8V5L+F1R:79E<BYT97-T+F-P M<#H M.EQ$3T-5345^,5Q55$E,25-^,5Q,3T-!3%-^,5Q496UP+V-C84=A86%A+F\H M+G1E>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P<F]J96-T,31E<G)O<FEN9F]? M9&5S8S$U9V5T7V1E<V-R:7!T:6]N15 Q,$E%<G)O<DEN9F]24'=2:EMS=&QS M;V9T.CIC;VUS=&Q?<')O:F5C=#HZ97)R;W)I;F9O7V1E<V,Z.F=E=%]D97-C M<FEP=&EO;BA)17)R;W));F9O*BP =V-H87)?="HF+"!U;G-I9VYE9"!I;G0F M*5TK,' T,2DZ17AC96PN9')I=F5R+G1E<W0N8W!P.B!U;F1E9FEN960 <F5F M97)E;F-E('1O(&!3>7-3=')I;F=,96Y -"<-"D,Z7$1/0U5-17XQ7%5424Q) M4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A86$N;R N=&5X="1?6DXW<W1L<V]F M96-T.CIE<G)O<FEN9F]?9&5S8SHZ9V5T7V1E<V-R:7!T:6]N*$E%<G)O<DEN M9F\J+"!W8VAA<E]T*B8L('5N<VEG;F5D(&EN="8I72LP>&$V*3I%>&-E;"YD M<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8%-Y<T%L M,5Q496UP+V-C84=A86%A+F\H+G1E>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P M<F]J96-T,31E<G)O<FEN9F]?9&5S8S$U9V5T7V1E<V-R:7!T:6]N15 Q,$E% M<G)O<DEN9F]24'=2:EMS=&QS;V9T.CIC;VUS=&Q?<')O:F5C=#HZ97)R;W)I M;F9O7V1E<V,Z.F=E=%]D97-C<FEP=&EO;BA)17)R;W));F9O*BP =V-H87)? M="HF+"!U;G-I9VYE9"!I;G0F*5TK,'AC9"DZ17AC96PN9')I=F5R+G1E<W0N M;&4Z.F]B:F5C=#HZ1V5T241/9DYA;64H=V-H87)?="!C;VYS="HI(&-O;G-T M72LP>&(X*3I%>&-E;"YD<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E M<F5N8V4 =&\ 8$=5241?3E5,3"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/ M<W1L7W!R;VIE8W0W=F%R:6%N=$,Q179;<W1L<V]F=#HZ8V]M<W1L7W!R;VIE M8W0Z.G9A<FEA;G0Z.G9A<FEA;G0H*5TK,' Q."DZ17AC96PN9')I=F5R+G1E M<W0N8W!P.B!U;F1E9FEN960 <F5F97)E;F-E('1O(&!687)I86YT26YI=$ T M871E7VEN<W1A;F-E23E)1&ES<&%T8VA%16Q02W=04%1?;5ML;VYG('-T;'-O M9G0Z.F-O;7-T;%]P<F]J96-T.CIC;U]C<F5A=&5?:6YS=&%N8V4\241I<W!A M=&-H/BAW8VAA<E]T(&-O;G-T*BP 241I<W!A=&-H*BHL('5N<VEG;F5D(&QO M1&ES<&%T8VA%16Q02W=04%1?;5ML;VYG('-T;'-O9G0Z.F-O;7-T;%]P<F]J M96-T.CIC;U]C<F5A=&5?:6YS=&%N8V4\241I<W!A=&-H/BAW8VAA<E]T(&-O M;"YD<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8$-, M?C%<5&5M<"]C8V%'86%A82YO*"YT97AT)%]:3C=S=&QS;V9T,31C;VUS=&Q? M1U5)1%!05%]M6VQO;F< <W1L<V]F=#HZ8V]M<W1L7W!R;VIE8W0Z.F-O7V-R M96%T95]I;G-T86YC93Q)1&ES<&%T8V ^*%]'54E$(&-O;G-T)BP 241I<W!A M="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8$-O0W)E871E26YS=&%N M84=A86%A+F\H+G1E>'0D7UI.-W-T;'-O9G0Q-&-O;7-T;%]P<F]J96-T,3!) M241?=')A:71S23E)1&ES<&%T8VA%,VEI9$5V6W-T;'-O9G0Z.F-O;7-T;%]P M<F]J96-T.CI)241?=')A:71S/$E$:7-P871C:#XZ.FEI9 M8V5L+F1R:79E<BYT97-T+F-P<#H =6YD969I;F5D(')E9F5R96YC92!T;R! M24E$7TE$:7-P871C:"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ M;VIE8W0R,$]L94EN:71I86QI>F5?<&]L:6-Y-&EN:71%=EMS=&QS;V9T.CIC M;VUS=&Q?<')O:F5C=#HZ3VQE26YI=&EA;&EZ95]P;VQI8WDZ.FEN:70H*5TK M,'AE*3I%>&-E;"YD<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N M8V4 =&\ 8$]L94EN:71I86QI>F5 -"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ M8V]M<W1L7W!R;VIE8W0R,$]L94EN:71I86QI>F5?<&]L:6-Y-G5N:6YI=$5V M6W-T;'-O9G0Z.F-O;7-T;%]P<F]J96-T.CI/;&5);FET:6%L:7IE7W!O;&EC M>3HZ=6YI;FET*"E=*S!X-RDZ17AC96PN9')I=F5R+G1E<W0N8W!P.B!U;F1E M9FEN960 <F5F97)E;F-E('1O(&!/;&55;FEN:71I86QI>F5 ,"<-"D,Z7$1/ M0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A86$N;R N=&5X M<V]F=#HZ8V]M<W1L7W!R;VIE8W0Z.G9A<FEA;G0Z.G9A<FEA;G0H:6YT*5TK M,' Q."DZ17AC96PN9')I=F5R+G1E<W0N8W!P.B!U;F1E9FEN960 <F5F97)E M8W0Q,F=E=%]P<F]P97)T>4E.4U\Q,&-O;&QE8W1I;VY%14547TY37S=O9E]T M>7!E25,S7T5%;%MV;VQE.CIC;VQL96-T:6]N('9O;&4Z.F]B:F5C=#HZ9V5T M7W!R;W!E<G1Y/'9O;&4Z.F-O;&QE8W1I;VX^*'9O;&4Z.F]F7W1Y<&4\=F]L M97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8%9A<FEA;G1) M24Y37S$P8V]L;&5C=&EO;D5%151?3E-?-V]F7W1Y<&5)4S-?145L6W9O;&4Z M.F-O;&QE8W1I;VX =F]L93HZ;V)J96-T.CIG971?<')O<&5R='D\=F]L93HZ M8V]L;&5C=&EO;CXH=F]L93HZ;V9?='EP93QV;VQE.CIC;VQL96-T:6]N/BP M;&]N9RD 8V]N<W1=*S!X-3DI.D5X8V5L+F1R:79E<BYT97-T+F-P<#H =6YD M345^,5Q55$E,25-^,5Q,3T-!3%-^,5Q496UP+V-C84=A86%A+F\H+G1E>'0D M7UI.-'9O;&4Q-V-O;5]R971U<FY?=')A:71S24Y37S9O8FIE8W1%13=C;VYV M;VY?;&5V96Q%6W9O;&4Z.F-O;5]R971U<FY?=')A:71S/'9O;&4Z.F]B:F5C M=#XZ.F-O;G9E<G0H=&%G5D%224%.5"!C;VYS="8L('9O;&4Z.F-O97)C:6]N M7VQE=F5L.CIC;V5R8VEO;E]L979E;"E=*S!X838I.D5X8V5L+F1R:79E<BYT M97-T+F-P<#H =6YD969I;F5D(')E9F5R96YC92!T;R! 24E$7TE$:7-P871C M:"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A M86$N;R N=&5X="1?6DY+-'9O;&4V;V)J96-T,3)G971?<')O<&5R='E)4S!? M14547TY37S=O9E]T>7!E25,R7T5%;%MV;VQE.CIO8FIE8W0 =F]L93HZ;V)J M96-T.CIG971?<')O<&5R='D\=F]L93HZ;V)J96-T/BAV;VQE.CIO9E]T>7!E M/'9O;&4Z.F]B:F5C=#XL M97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8%9A<FEA;G1) M25,P7T5%5%].4U\W;V9?='EP94E3,E]%16Q;=F]L93HZ;V)J96-T('9O;&4Z M.F]B:F5C=#HZ9V5T7W!R;W!E<G1Y/'9O;&4Z.F]B:F5C=#XH=F]L93HZ;V9? M='EP93QV;VQE.CIO8FIE8W0^+"!L;VYG*2!C;VYS=%TK,' U.2DZ17AC96PN M9')I=F5R+G1E<W0N8W!P.B!U;F1E9FEN960 <F5F97)E;F-E('1O(&!687)I M86YT0VQE87) -"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E M;7 O8V-A1V%A86$N;R N=&5X="1?6DY+-'9O;&4V;V)J96-T,3)G971?<')O M<&5R='E)4S!?03=?8T5%5%].4U\W;V9?='EP94E3,U]%16Q22U0P7UMV;VQE M.CIO8FIE8W0 =F]L93HZ;V)J96-T.CIG971?<')O<&5R='D\=F]L93HZ;V)J M96-T+"!C:&%R(%LW73XH=F]L93HZ;V9?='EP93QV;VQE.CIO8FIE8W0^+"!L M<FEV97(N=&5S="YC<' Z('5N9&5F:6YE9"!R969E<F5N8V4 =&\ 8%9A<FEA M<G1Y25,P7T$W7V-%151?3E-?-V]F7W1Y<&5)4S-?145L4DM4,%];=F]L93HZ M;V)J96-T('9O;&4Z.F]B:F5C=#HZ9V5T7W!R;W!E<G1Y/'9O;&4Z.F]B:F5C M="P 8VAA<B!;-UT^*'9O;&4Z.F]F7W1Y<&4\=F]L93HZ;V)J96-T/BP ;&]N M9RP 8VAA<B!C;VYS=" H)BD 6S==*2!C;VYS=%TK,' X,RDZ17AC96PN9')I M=F5R+G1E<W0N8W!P.B!U;F1E9FEN960 <F5F97)E;F-E('1O(&!687)I86YT M0VQE87) -"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O M=F%R:6%N=$,Q15!+8VE;<W1L<V]F=#HZ8V]M<W1L7W!R;VIE8W0Z.G9A<FEA M;G0Z.G9A<FEA;G0H8VAA<B!C;VYS="HL(&EN="E=*S!X,3 I.D5X8V5L+F1R M:79E<BYT97-T+F-P<#H =6YD969I;F5D(')E9F5R96YC92!T;R! 5F%R:6%N M=$EN:71 -"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O M-6-O;7-T;%]?8G-T<E]C<F5A=&5?;&5N7V%%4$MC:EMS=&QS;V9T.CIC;VUS M=&Q?<')O:F5C=#HZ8V]M<W1L7U]B<W1R7V-R96%T95]L96Y?82AC:&%R(&-O M;G-T*BP =6YS:6=N960 :6YT*5TK,' T,2DZ17AC96PN9')I=F5R+G1E<W0N M7U]B<W1R7V-R96%T95]L96Y?84502V-J6W-T;'-O9G0Z.F-O;7-T;%]P<F]J M96-T.CIC;VUS=&Q?7V)S=')?8W)E871E7VQE;E]A*&-H87( 8V]N<W0J+"!U M;G-I9VYE9"!I;G0I72LP>&%A*3I%>&-E;"YD<FEV97(N=&5S="YC<' Z('5N M9&5F:6YE9"!R969E<F5N8V4 =&\ 8$-O5&%S:TUE;49R965 -"<-"D,Z7$1/ M0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A86$N;R N=&5X M<F5A=&5?;&5N7W=%4$MW:EMS=&QS;V9T.CIC;VUS=&Q?<')O:F5C=#HZ8V]M M<W1L7U]B<W1R7V-R96%T95]L96Y?=RAW8VAA<E]T(&-O;G-T*BP =6YS:6=N M960 :6YT*5TK,' W,2DZ17AC96PN9')I=F5R+G1E<W0N8W!P.B!U;F1E9FEN M96%T95]A15!+8UMS=&QS;V9T.CIC;VUS=&Q?<')O:F5C=#HZ8V]M<W1L7U]B M<W1R7V-R96%T95]A*&-H87( 8V]N<W0J*5TK,' S,2DZ17AC96PN9')I=F5R M8V]M<W1L7U]B<W1R7V-R96%T95]A15!+8UMS=&QS;V9T.CIC;VUS=&Q?<')O M:F5C=#HZ8V]M<W1L7U]B<W1R7V-R96%T95]A*&-H87( 8V]N<W0J*5TK,'AA M8BDZ17AC96PN9')I=F5R+G1E<W0N8W!P.B!U;F1E9FEN960 <F5F97)E;F-E M3T-!3%-^,5Q496UP+V-C84=A86%A+F\H+G1E>'0D7UI.-W-T;'-O9G0Q-&-O M;7-T;%]P<F]J96-T,C%C;VUS=&Q?7V)S=')?8W)E871E7W=%4$MW6W-T;'-O M9G0Z.F-O;7-T;%]P<F]J96-T.CIC;VUS=&Q?7V)S=')?8W)E871E7W<H=V-H M87)?="!C;VYS="HI72LP>&0I.D5X8V5L+F1R:79E<BYT97-T+F-P<#H =6YD M969I;F5D(')E9F5R96YC92!T;R! 4WES06QL;V-3=')I;F= -"<-"D,Z7$1/ M0U5-17XQ7%5424Q)4WXQ7$Q/0T%,4WXQ7%1E;7 O8V-A1V%A86$N;R N=&5X M6W-T;'-O9G0Z.F-O;7-T;%]P<F]J96-T.CIV87)I86YT.CIV87)I86YT*'-T M;'-O9G0Z.F-O;7-T;%]P<F]J96-T.CIV87)I86YT(&-O;G-T)BE=*S!X,3 I M.D5X8V5L+F1R:79E<BYT97-T+F-P<#H =6YD969I;F5D(')E9F5R96YC92!T M;R! 5F%R:6%N=$EN:71 -"<-"D,Z7$1/0U5-17XQ7%5424Q)4WXQ7$Q/0T%, M7W!R;VIE8W0W=F%R:6%N=$,Q15)+4S%?6W-T;'-O9G0Z.F-O;7-T;%]P<F]J M96-T.CIV87)I86YT.CIV87)I86YT*'-T;'-O9G0Z.F-O;7-T;%]P<F]J96-T M.CIV87)I86YT(&-O;G-T)BE=*S!X,S,I.D5X8V5L+F1R:79E<BYT97-T+F-P M<#H =6YD969I;F5D(')E9F5R96YC92!T;R! 5F%R:6%N=$-O<'E ."<-"F-O '<'!<8FEN/ `` ` end
Sep 25 2008
parent reply "Matthew Wilson" <matthew hat.stlsoft.dot.org> writes:
<snip>

 Hello Matt,

 Thank's for your answers, I have used the test/scratch/Excel.driver.test.cpp
 with the good create() methode.
 The errors have disappeared, but there are many others "undefined reference
 to..."

 I have used this command line with Dev-Cpp or MingW :
 G++ -I%VOLE%/include -I%STLSOFT%/include -o myTest.exe
 C:\opensrc\vole\vole-0.4.4\test\Excel.driver.test\Excel.driver.test.cpp

 Can you help me again ?
You'll have to link to liboleaut32.a and libole32.a I can't remember how off the top of my head, but I think if you try "g++ <... other linker options ...> -lole32 -loleaut32" it might be all that you need. HTH Matt
Sep 26 2008
parent reply Mario Lecafe <m.lecafe free.fr> writes:
Le 26/09/2008, Matthew Wilson a supposé :
 <snip>

 Hello Matt,
 
 Thank's for your answers, I have used the test/scratch/Excel.driver.test.cpp
 with the good create() methode.
 The errors have disappeared, but there are many others "undefined reference
 to..."
 
 I have used this command line with Dev-Cpp or MingW :
 G++ -I%VOLE%/include -I%STLSOFT%/include -o myTest.exe
 C:\opensrc\vole\vole-0.4.4\test\Excel.driver.test\Excel.driver.test.cpp
 
 Can you help me again ?
You'll have to link to liboleaut32.a and libole32.a I can't remember how off the top of my head, but I think if you try "g++ <... other linker options ...> -lole32 -loleaut32" it might be all that you need. HTH Matt
Hello Matt, Thanks for all your answers, I have tried the command line with the specified libraries. I had some errors links. After some searches on the web, I finally found another missing library (libuuid.a) Now the command line "G++ -I%VOLE%/include -I%STLSOFT%/include -o myTest.exe C:\opensrc\vole\vole-0.4.4\test\Excel.driver.test\Excel.driver.test.cpp -lole32 -loleaut32 -luuid" compiles the example code. Thanks again for your help Best, Mario
Oct 13 2008
parent "Matthew Wilson" <matthew hat.stlsoft.dot.org> writes:
 Thanks for all your answers,

 I have tried the command line with the specified libraries.
 I had some errors links.
 After some searches on the web, I finally found another missing library
 (libuuid.a)

 Now the command line "G++ -I%VOLE%/include -I%STLSOFT%/include -o
 myTest.exe
 C:\opensrc\vole\vole-0.4.4\test\Excel.driver.test\Excel.driver.test.cpp
 -lole32 -loleaut32 -luuid" compiles the example code.

 Thanks again for your help


 Best,

 Mario
You're most welcome. Matt
Oct 15 2008
prev sibling parent "Matthew Wilson" <matthew hat.stlsoft.dot.org> writes:
 Another question :
 Is it possible to use VOLE/stlsoft libraries with cross-compiling for win32
 under linux ?
Yes for STLSoft No for VOLE, because COM is a Windows-specific thing. HTH Matt
Sep 16 2008