[pywin32-bugs] [ pywin32-Feature Requests-930298 ] need VBArray support
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: SourceForge.net <no...@so...> - 2004-04-25 06:55:03
|
Feature Requests item #930298, was opened at 2004-04-06 18:48 Message generated for change (Comment added) made by mhammond You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551957&aid=930298&group_id=78018 Category: com Group: None >Status: Closed Priority: 5 Submitted By: Max Belugin (belugin) Assigned to: Nobody/Anonymous (nobody) Summary: need VBArray support Initial Comment: For integration with flashget (http://www.flashget.com/) need VBArray support Test VBCode: Dim params2(5) set flashget=CreateObject("JetCar.Netscape") Dim j for j=0 to 5 params2(j)="http://test.com/"&j next flashget.AddUrlList params2 Test python code: import win32com.client import array flashget = win32com.client.Dispatch("JetCar.Netscape") urls=[ 'http://test.com/1', 'http://test.com/2', 'http://test.com/3', 'http://test.com/4', 'http://test.com/5' ] flashget.AddUrlList(urls) ---------------------------------------------------------------------- >Comment By: Mark Hammond (mhammond) Date: 2004-04-25 16:55 Message: Logged In: YES user_id=14198 VB Arrays work fine, and have for quite some time. If you can post a sample with VB code for a COM object that supports arrays, and Python code that fails to use it, then please open a bug attaching that code. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551957&aid=930298&group_id=78018 |