When i use the below code to create a comserver on Windows OS,i find that
the com was configed in the file
python23com.dll,why? if i want to config it in my customize dll,how should i
do? thks

class TestPythonCom:
    _public_methods_ = [ 'SplitString' ]
    _reg_progid_ = "TestPythonCom.Application"
    # NEVER copy the following ID
    # Use "print pythoncom.CreateGuid()" to make a new one.
    _reg_clsid_ = "{93D78ABA-1F6C-4B1C-97C7-C3700511415A}"

    def SplitString(self, val):
        return val



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to