IdentifiantMot de passe
Loading...
Mot de passe oubli� ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les r�ponses en temps r�el, voter pour les messages, poser vos propres questions et recevoir la newsletter

C++Builder Discussion :

Objet COM sous builderC++2007


Sujet :

C++Builder

  1. #1
    Membre �clair� Avatar de sylvain.cool
    Profil pro
    �tudiant
    Inscrit en
    Janvier 2006
    Messages
    242
    D�tails du profil
    Informations personnelles :
    �ge : 41
    Localisation : France, Haute Garonne (Midi Pyr�n�es)

    Informations professionnelles :
    Activit� : �tudiant

    Informations forums :
    Inscription : Janvier 2006
    Messages : 242
    Par d�faut Objet COM sous builderC++2007
    Bonjour,

    J'essaye actuellement de cr�er un objet COM avec c++builder2007... et je n'y arrive pas.

    C'est un truc tout simple qui doit juste me renvoyer un nombre.

    Voici mon interface
    Code : S�lectionner tout - Visualiser dans une fen�tre � part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    interface ITestServeurCOM: IUnknown
    {
      [
      propget, 
      id(0x00000065)
      ]
      HRESULT _stdcall Name([out, retval] float * sName );
    };
    Code : S�lectionner tout - Visualiser dans une fen�tre � part
    1
    2
    3
    4
    5
     
    coclass TTestServeurCOM
    {
      [default] interface ITestServeurCOM;
    };
    Voila ce que ca me donne en C++
    Code : S�lectionner tout - Visualiser dans une fen�tre � part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
     
    #ifndef   testServeurCOM_TLBH
    #define   testServeurCOM_TLBH
     
    #pragma option push -b -w-inl
     
    #if !defined(__UTILCLS_H)
    #include <utilcls.h>
    #endif
    #if !defined(__UTILCLS_H_VERSION) || (__UTILCLS_H_VERSION < 0x0700)
    //
    // The code generated by the TLIBIMP utility or the Import|TypeLibrary
    // and Import|ActiveX feature of C++Builder rely on specific versions of
    // the header file UTILCLS.H found in the INCLUDE\VCL directory. If an
    // older version of the file is detected, you probably need an update/patch.
    //
    #error "This file requires a newer version of the header UTILCLS.H" \
    	   "You need to apply an update/patch to your copy of C++Builder"
    #endif
    #include <olectl.h>
    #include <ocidl.h>
    #if defined(USING_ATLVCL) || defined(USING_ATL)
    #if !defined(__TLB_NO_EVENT_WRAPPERS)
    #include <atl/atlmod.h>
    #endif
    #endif
     
     
    // *********************************************************************//
    // Forward reference of some VCL types (to avoid including STDVCL.HPP)    
    // *********************************************************************//
    namespace Stdvcl {class IStrings; class IStringsDisp;}
    using namespace Stdvcl;
    typedef TComInterface<IStrings> IStringsPtr;
    typedef TComInterface<IStringsDisp> IStringsDispPtr;
     
    namespace Testserveurcom_tlb
    {
     
    // *********************************************************************//
    // HelpString: testServeurCOM Library
    // Version:    1.0
    // *********************************************************************//
     
     
    // *********************************************************************//
    // GUIDS declared in the TypeLibrary. Following prefixes are used:        
    //   Type Libraries     : LIBID_xxxx                                      
    //   CoClasses          : CLSID_xxxx                                      
    //   DISPInterfaces     : DIID_xxxx
    //   Non-DISP interfaces: IID_xxxx                                        
    // *********************************************************************//
    extern __declspec (package) const GUID LIBID_testServeurCOM;
    extern __declspec (package) const GUID IID_ITestServeurCOM;
    extern __declspec (package) const GUID CLSID_TTestServeurCOM;
     
    // *********************************************************************//
    // Forward declaration of types defined in TypeLibrary                    
    // *********************************************************************//
    interface DECLSPEC_UUID("{758138FD-2BE7-4751-AD81-B19FD6E560FE}") ITestServeurCOM;
    typedef TComInterface<ITestServeurCOM, &IID_ITestServeurCOM> ITestServeurCOMPtr;
     
     
    // *********************************************************************//
    // Declaration of CoClasses defined in Type Library                       
    // (NOTE: Here we map each CoClass to its Default Interface)              
    //                                                                        
    // The LIBID_OF_ macro(s) map a LIBID_OF_CoClassName to the GUID of this
    // TypeLibrary. It simplifies the updating of macros when CoClass name    
    // change.                                                                
    // *********************************************************************//
    typedef ITestServeurCOM TTestServeurCOM;
    typedef ITestServeurCOMPtr TTestServeurCOMPtr;
     
    #define LIBID_OF_TTestServeurCOM (&LIBID_testServeurCOM)
    // *********************************************************************//
    // Interface: ITestServeurCOM
    // Flags:     (320) Dual OleAutomation
    // GUID:      {758138FD-2BE7-4751-AD81-B19FD6E560FE}
    // *********************************************************************//
    interface ITestServeurCOM  : public IUnknown
    {
    public:
      virtual HRESULT STDMETHODCALLTYPE get_Nombre(float* fNum/*[out,retval]*/) = 0; // [101]
     
    #if !defined(__TLB_NO_INTERFACE_WRAPPERS)
     
      float __fastcall get_Nombre(void)
      {
        float fNum;
        OLECHECK(this->get_Nombre((float*)&fNum));
    	return fNum;
      }
     
     
      __property   float           Nombre = {read = get_Nombre};
     
    #endif //   __TLB_NO_INTERFACE_WRAPPERS
     
    };
     
    #if !defined(__TLB_NO_INTERFACE_WRAPPERS)
    // *********************************************************************//
    // SmartIntf: TCOMITestServeurCOM
    // Interface: ITestServeurCOM
    // *********************************************************************//
    template <class T /* ITestServeurCOM */ >
    class TCOMITestServeurCOMT : public TComInterface<ITestServeurCOM>, public TComInterfaceBase<IUnknown>
    {
    public:
      TCOMITestServeurCOMT() {}
      TCOMITestServeurCOMT(ITestServeurCOM *intf, bool addRef = false) : TComInterface<ITestServeurCOM>(intf, addRef) {}
      TCOMITestServeurCOMT(const TCOMITestServeurCOMT& src) : TComInterface<ITestServeurCOM>(src) {}
      TCOMITestServeurCOMT& operator=(const TCOMITestServeurCOMT& src) { Bind(src, true); return *this;}
     
      HRESULT         __fastcall get_Nombre(float* fNum/*[out,retval]*/);
      float           __fastcall get_Nombre(void);
     
      __property   float           Nombre = {read = get_Nombre};
    };
    typedef TCOMITestServeurCOMT<ITestServeurCOM> TCOMITestServeurCOM;
     
    // *********************************************************************//
    // DispIntf:  ITestServeurCOM
    // Flags:     (320) Dual OleAutomation
    // GUID:      {758138FD-2BE7-4751-AD81-B19FD6E560FE}
    // *********************************************************************//
    template<class T>
    class ITestServeurCOMDispT : public TAutoDriver<ITestServeurCOM>
    {
    public:
      ITestServeurCOMDispT(){}
     
      ITestServeurCOMDispT(ITestServeurCOM *pintf)
      {
        TAutoDriver<ITestServeurCOM>::Bind(pintf, false);
      }
     
      ITestServeurCOMDispT(ITestServeurCOMPtr pintf)
      {
        TAutoDriver<ITestServeurCOM>::Bind(pintf, true);
      }
     
      ITestServeurCOMDispT& operator=(ITestServeurCOM *pintf)
      {
    	TAutoDriver<ITestServeurCOM>::Bind(pintf, false);
        return *this;
      }
     
      ITestServeurCOMDispT& operator=(ITestServeurCOMPtr pintf)
      {
    	TAutoDriver<ITestServeurCOM>::Bind(pintf, true);
        return *this;
      }
     
      HRESULT BindDefault()
      {
    	return OLECHECK(Bind(CLSID_TTestServeurCOM));
      }
     
      HRESULT BindRunning()
      {
        return BindToActive(CLSID_TTestServeurCOM);
      }
     
      HRESULT         __fastcall get_Nombre(float* fNum/*[out,retval]*/);
      float           __fastcall get_Nombre(void);
     
      __property   float           Nombre = {read = get_Nombre};
    };
    typedef ITestServeurCOMDispT<ITestServeurCOM> ITestServeurCOMDisp;
     
    // *********************************************************************//
    // SmartIntf: TCOMITestServeurCOM
    // Interface: ITestServeurCOM
    // *********************************************************************//
    template <class T> HRESULT __fastcall
    TCOMITestServeurCOMT<T>::get_Nombre(float* fNum/*[out,retval]*/)
    {
      return (*this)->get_Nombre(fNum);
    }
     
    template <class T> float __fastcall
    TCOMITestServeurCOMT<T>::get_Nombre(void)
    {
      float fNum;
      OLECHECK(this->get_Nombre((float*)&fNum));
      return fNum;
    }
     
    // *********************************************************************//
    // DispIntf:  ITestServeurCOM
    // Flags:     (320) Dual OleAutomation
    // GUID:      {758138FD-2BE7-4751-AD81-B19FD6E560FE}
    // *********************************************************************//
    template <class T> HRESULT __fastcall
    ITestServeurCOMDispT<T>::get_Nombre(float* fNum/*[out,retval]*/)
    {
      _TDispID _dispid(*this, OLETEXT("Nombre"), DISPID(101));
      TAutoArgs<0> _args;
      return OutRetValSetterPtr(fNum /*[VT_R4:1]*/, _args, OlePropertyGet(_dispid, _args));
    }
     
    template <class T> float __fastcall
    ITestServeurCOMDispT<T>::get_Nombre(void)
    {
      float fNum;
      this->get_Nombre((float*)&fNum);
      return fNum;
    }
     
    // *********************************************************************//
    // The following typedefs expose classes (named CoCoClassName) that       
    // provide static Create() and CreateRemote(LPWSTR machineName) methods   
    // for creating an instance of an exposed object. These functions can     
    // be used by client wishing to automate CoClasses exposed by this        
    // typelibrary.                                                           
    // *********************************************************************//
     
    // *********************************************************************//
    // COCLASS DEFAULT INTERFACE CREATOR
    // CoClass  : TTestServeurCOM
    // Interface: TCOMITestServeurCOM
    // *********************************************************************//
    typedef TCoClassCreatorT<TCOMITestServeurCOM, ITestServeurCOM, &CLSID_TTestServeurCOM, &IID_ITestServeurCOM> CoTTestServeurCOM;
    #endif  //   __TLB_NO_INTERFACE_WRAPPERS
     
     
    };     // namespace Testserveurcom_tlb
     
    #if !defined(NO_IMPLICIT_NAMESPACE_USE)
    using  namespace Testserveurcom_tlb;
    #endif
     
    #pragma option pop
     
    #endif // testServeurCOM_TLBH
    Derriere ca, je cr�e une classe qui implemente la fonction get_Nombre:
    .h
    Code : S�lectionner tout - Visualiser dans une fen�tre � part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
     
    /---------------------------------------------------------------------------
     
    #ifndef testServeurH
    #define testServeurH
    //---------------------------------------------------------------------------
     
    #include <string>
    #include "testServeurCOM_TLB.h"
     
    class ATL_NO_VTABLE testServeur :
      public CComObjectRootEx<CComSingleThreadModel>,
      public CComCoClass<TTestServeurCOM, &CLSID_TTestServeurCOM>,
      public ITestServeurCOM
      {
    public:
    	testServeur(){}
     
    	// Data used when registering Object
    	DECLARE_THREADING_MODEL(otApartment);
    	DECLARE_PROGID("testServerCOM.TTestServerCOM");
    	DECLARE_DESCRIPTION("The testServeur object");
     
    	// Function invoked to (un)register object
    	static HRESULT WINAPI UpdateRegistry(BOOL bRegister)
    	{
    		TTypedComServerRegistrarT<testServeur>
    		regObj(GetObjectCLSID(), GetProgID(), GetDescription());
    		return regObj.UpdateRegistry(bRegister);
    	}
     
    	BEGIN_COM_MAP(testServeur)
    		COM_INTERFACE_ENTRY(ITestServeurCOM)
    	END_COM_MAP()
     
    public:
    	STDMETHOD (get_Nombre(float*));
    };
     
    #endif
    .cpp
    Code : S�lectionner tout - Visualiser dans une fen�tre � part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
     
    //---------------------------------------------------------------------------
     
     
    #pragma hdrstop
     
    #include "testServeur.h"
     
    //---------------------------------------------------------------------------
     
    #pragma package(smart_init)
     
    STDMETHODIMP testServeur::get_Nombre(float* fNum){
    	*sNun = 8.1;
    }
    J'avoue ne pas tout (rien) comprendre � ce qu'il y a dans le code. Il a �t� g�n�rer automatiquement.

    Quand j'essaye de compiler, j'ai une erreur:
    [BCC32 Erreur] atlcom.h(1879): E2352 Impossible de cr�er une instance de la classe abstraite 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(1879): E2353 La classe 'CComObject<ITestServeurCOM>' est abstraite parce que '__stdcall ITestServeurCOM::get_Nombre(float *) = 0'

    Il me semble bien l'avoir d�fini cette methode get_Nombre.

    Quelqu'un aurait-il une id�e?

  2. #2
    Expert �minent
    Avatar de M�dinoc
    Homme Profil pro
    D�veloppeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 397
    D�tails du profil
    Informations personnelles :
    Sexe : Homme
    �ge : 41
    Localisation : France

    Informations professionnelles :
    Activit� : D�veloppeur informatique
    Secteur : High Tech - �diteur de logiciels

    Informations forums :
    Inscription : Septembre 2005
    Messages : 27 397
    Par d�faut
    1. Wow on peut utiliser ATL sous Borland ?
    2. Je trouve la ligne STDMETHOD (get_Nombre(float*)); suspecte. N'est-ce pas suppos� �tre STDMETHOD (get_Nombre)(float*); ?
    SVP, pas de questions techniques par MP. Surtout si je ne vous ai jamais parl� avant.

    "Aw, come on, who would be so stupid as to insert a cast to make an error go away without actually fixing the error?"
    Apparently everyone.
    -- Raymond Chen.
    Traduction obligatoire: "Oh, voyons, qui serait assez stupide pour mettre un cast pour faire disparaitre un message d'erreur sans vraiment corriger l'erreur?" - Apparemment, tout le monde. -- Raymond Chen.

  3. #3
    Membre �clair� Avatar de sylvain.cool
    Profil pro
    �tudiant
    Inscrit en
    Janvier 2006
    Messages
    242
    D�tails du profil
    Informations personnelles :
    �ge : 41
    Localisation : France, Haute Garonne (Midi Pyr�n�es)

    Informations professionnelles :
    Activit� : �tudiant

    Informations forums :
    Inscription : Janvier 2006
    Messages : 242
    Par d�faut
    J'ai trouv� un tuto qui dis comment faire avec C++builder5: http://www.blong.com/Conferences/ICo...C++Builder.htm

    Par contre, j'ai le 2007 au lieu du 5.
    Sur le tuto, il file un code que j'ai r�ussit a compiler.
    Je m'en suis donc inspir� pour �crire �a.

    Sauf que dans mon cas, �a marche pas.

    Pour en revenir � ta r�ponse, j'ai essay� et �a change rien. J'ai la m�me erreur.

    Le truc c'est que �a peut venir de plus loin, vu les erreurs qui sont apr�s:
    [BCC32 Erreur] atlcom.h(1879): E2352 Impossible de cr�er une instance de la classe abstraite 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(1879): E2353 La classe 'CComObject<ITestServeurCOM>' est abstraite parce que '__stdcall ITestServeurCOM::get_Nombre(float *) = 0'
    [BCC32 Erreur] atlcom.h(1882): E2316 'SetVoid' n'est pas un membre de 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(1883): E2316 'InternalFinalConstructAddRef' n'est pas un membre de 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(1884): E2316 'FinalConstruct' n'est pas un membre de 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(1885): E2316 'InternalFinalConstructRelease' n'est pas un membre de 'CComObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(2735): E2404 Le qualificateur de type d�pendant 'ITestServeurCOM' n'a aucun type membre nomm� '_ThreadModel'
    [BCC32 Erreur] atlcom.h(2735): E2402 Type de classe de base incorrect : type formel 'CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>' r�solu en 'CComObjectRootEx<typename contained::_ThreadModel::ThreadModelNoCS>'
    [BCC32 Erreur] atlcom.h(1879): E2450 Structure 'CComAggObject<ITestServeurCOM>' non d�finie
    [BCC32 Erreur] atlcom.h(1882): E2315 'SetVoid' n'est pas un membre de 'CComAggObject<ITestServeurCOM>', parce que le type n'est pas encore d�fini
    [BCC32 Erreur] atlcom.h(1883): E2315 'InternalFinalConstructAddRef' n'est pas un membre de 'CComAggObject<ITestServeurCOM>', parce que le type n'est pas encore d�fini
    [BCC32 Erreur] atlcom.h(1885): E2315 'InternalFinalConstructRelease' n'est pas un membre de 'CComAggObject<ITestServeurCOM>', parce que le type n'est pas encore d�fini
    [BCC32 Erreur] atlcom.h(2510): E2451 Symbole 'm_dwRef' non d�fini
    [BCC32 Erreur] atlcom.h(2511): E2268 Appel � une fonction non d�finie 'FinalRelease'
    [BCC32 Erreur] atlcom.h(2749): E2090 Le qualificateur '_ThreadModel' n'est pas une classe ou un nom de domaine d'appellation
    [BCC32 Erreur] atlcom.h(2749): E2299 Impossible de cr�er la sp�cialisation template depuis 'CComObjectRootEx<ThreadModel>'
    [BCC32 Erreur] atlcom.h(2749): E2270 > attendu
    [BCC32 Erreur] atlcom.h(2749): E2379 ; manquant dans l'instruction
    [BCC32 Erreur] atlcom.h(2750): E2316 'FinalConstruct' n'est pas un membre de 'CComContainedObject<ITestServeurCOM>'
    [BCC32 Erreur] atlcom.h(2760): E2451 Symbole 'm_dwRef' non d�fini
    [BCC32 Erreur] atlcom.h(2695): E2451 Symbole 'm_pOuterUnknown' non d�fini
    [BCC32 Erreur] atlcom.h(2754): E2090 Le qualificateur '_ThreadModel' n'est pas une classe ou un nom de domaine d'appellation
    [BCC32 Erreur] atlcom.h(2754): E2299 Impossible de cr�er la sp�cialisation template depuis 'CComObjectRootEx<ThreadModel>'
    [BCC32 Erreur] atlcom.h(2754): E2270 > attendu
    [BCC32 Erreur] atlcom.h(2754): E2379 ; manquant dans l'instruction
    [BCC32 Erreur] atlcom.h(2755): E2316 'FinalRelease' n'est pas un membre de 'CComContainedObject<ITestServeurCOM>'

  4. #4
    Expert �minent
    Avatar de M�dinoc
    Homme Profil pro
    D�veloppeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 397
    D�tails du profil
    Informations personnelles :
    Sexe : Homme
    �ge : 41
    Localisation : France

    Informations professionnelles :
    Activit� : D�veloppeur informatique
    Secteur : High Tech - �diteur de logiciels

    Informations forums :
    Inscription : Septembre 2005
    Messages : 27 397
    Par d�faut
    �a me parait bizarre que le type pass� en param�tre � CComCoClass<> soit TTestServeurCOM au lieu de testServer : Normalement, ce template s'utilise en CRTP, donc avec en param�tre le type de la classe qui en h�rite...
    SVP, pas de questions techniques par MP. Surtout si je ne vous ai jamais parl� avant.

    "Aw, come on, who would be so stupid as to insert a cast to make an error go away without actually fixing the error?"
    Apparently everyone.
    -- Raymond Chen.
    Traduction obligatoire: "Oh, voyons, qui serait assez stupide pour mettre un cast pour faire disparaitre un message d'erreur sans vraiment corriger l'erreur?" - Apparemment, tout le monde. -- Raymond Chen.

  5. #5
    Expert confirm�
    Avatar de Mat.M
    Profil pro
    D�veloppeur informatique
    Inscrit en
    Novembre 2006
    Messages
    8 538
    D�tails du profil
    Informations personnelles :
    Localisation : France, Rh�ne (Rh�ne Alpes)

    Informations professionnelles :
    Activit� : D�veloppeur informatique

    Informations forums :
    Inscription : Novembre 2006
    Messages : 8 538
    Par d�faut
    Tu vas avoir toutes les difficult�s du monde comme cela.
    La VCL fournit des m�thodes pour appeler des objets COM du genre CreateOleObject ou quelque chose comme cela regarde dans l'aide de Borland.
    Il ya des instructions toutes faites..
    Ou sinon regarde dans les tutos.
    Et puis c'est pas le bon forum il ya un forum C++ Builder

  6. #6
    Membre �clair� Avatar de sylvain.cool
    Profil pro
    �tudiant
    Inscrit en
    Janvier 2006
    Messages
    242
    D�tails du profil
    Informations personnelles :
    �ge : 41
    Localisation : France, Haute Garonne (Midi Pyr�n�es)

    Informations professionnelles :
    Activit� : �tudiant

    Informations forums :
    Inscription : Janvier 2006
    Messages : 242
    Par d�faut
    Merci Medinoc, c'�tait le type pass� en param�tre de CComCoClass<> qui posait probl�me. J'ai pas encore tester avec un client qui l'appelle, mais d�j� �a compile.

    J'ai post� ici parce qu'il me semblait que c'�tait plus un probl�me de code C++ que d'utilisation de C++builder.

    Merci en tout cas.

+ R�pondre � la discussion
Cette discussion est r�solue.

Discussions similaires

  1. Objets COM sous WAMP
    Par rolintoucour dans le forum Langage
    R�ponses: 2
    Dernier message: 19/07/2012, 09h34
  2. Executer un objet COM sous L'ide
    Par ricky78 dans le forum MFC
    R�ponses: 0
    Dernier message: 06/02/2012, 14h19
  3. [Excel] De xls vers csv sans objet COM (php4 sous linux)
    Par AntaresJon dans le forum Biblioth�ques et frameworks
    R�ponses: 6
    Dernier message: 26/02/2009, 17h13
  4. PB compatibilit� objets ABC sous Builder C++ 2007
    Par LescureImage dans le forum C++Builder
    R�ponses: 0
    Dernier message: 07/12/2007, 11h51
  5. D�senregistrement d'Objets COM sous Windows
    Par barthelv dans le forum Windows
    R�ponses: 2
    Dernier message: 21/05/2003, 15h11

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo