Hi,
Dajani, Samer (PPC) wrote:
> Hi everyone,
>
> I am working on a project to port a VB 6.0 rich GUI application to python,
> and was wondering if there is a developer kit available to generate rich GUI
> and also if there are data connectors available to an oracle client.
You might want to l
I'm trying to convert VB code that registers COM+ components to Python. I'm
unable to set values on COMAdminCatalogObject using the Value() method, it
seems to think I'm trying to call the get method?
VB Code:
Dim cat As COMAdminCatalog
Set cat = New COMAdminCatalog
Dim apps As COMAdminCatalogCo
r c wrote:
>
> I'm trying to convert VB code that registers COM+ components to
> Python. I'm unable to set values on COMAdminCatalogObject using the
> Value() method, it seems to think I'm trying to call the get method?
>
> ...
>
> Python Code:
> objCOMAdminCatalog = win32com.client.Dispatch("COMAd
> >In this case, where an indexed property had both a "Get" and a "Let"
> >handler, the Python COM stuff generates a "Value" function for the "Get"
> >part, and a "SetValue" function for the "Let" part.>
> >
> >So, you want:
> > objCOMAdminCatalogObject.SetValue("ID", AppID)>
> >
> >--
> >Tim Rob
r c wrote:
>
> >In this case, where an indexed property had both a "Get" and a "Let"
> >handler, the Python COM stuff generates a "Value" function for
> the "Get"
> >part, and a "SetValue" function for the "Let" part. >
> >
> >So, you want:
> > objCOMAdminCatalogObject
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Tim Roberts
> Sent: 02 October 2007 17:45
> To: Python-Win32 List
> Subject: Re: [python-win32] Porting VB 6.0 to Python
>
>
> Dajani, Samer (PPC) wrote:
> > Hi everyone,
> >
> > I am working on a proje