[Python.NET] Hanging the application in import

2006-05-24 Thread Lalit DIGARI
Hello All, I have a module ex say a ,and in module b I m using clr and having code import clr, I m imorting mudule b into module a ,but application is hanging at the point where in moduel a there is import (something) but if I comented the line import clr then application passes through that han

[Python.NET] Python compare string fucntion

2006-04-20 Thread Lalit DIGARI
Helllo guys, Is there any pyhthon function as c's strcmp function Regard's Lalit -Original Message- From: Mark McMahon [mailto:[EMAIL PROTECTED] Sent: Monday, April 03, 2006 5:41 PM To: Lalit DIGARI; pythondotnet@python.org Subject: RE: [Python.NET] Use of c++ dll in python

Re: [Python.NET] Use of c++ dll in python

2006-04-03 Thread Lalit DIGARI
Thanks mark, How could I use dll's exposed function with in python script? Reagrd's lalit -Original Message- From: Mark McMahon [mailto:[EMAIL PROTECTED] Sent: Monday, April 03, 2006 5:41 PM To: Lalit DIGARI; pythondotnet@python.org Subject: RE: [Python.NET] Use of c++ dll in p

[Python.NET] Use of c++ dll in python

2006-04-03 Thread Lalit DIGARI
Hello All , I have devloped a c++ dll named mydll in c++ how can I access it with in python script using ctype... Regard's Lalit _ Python.NET mailing list - PythonDotNet@python.org http://mail.python.org/mailman/listinfo/pythondotnet

Re: [Python.NET] C# .net dll used in python

2006-03-30 Thread Lalit DIGARI
Thanks buddy , I got the point path was not proper for that dll Can u thorugh some light on the problem which is coming 1)my_dll_name = Assembly.LoadWithPartialName('C:\\986tool\\vpci) 2)my_dll_name = Assembly.LoadWithPartialName('vpci') In case 1 my_dll_name is coming none while in case 2 works

[Python.NET] C# .net dll used in python

2006-03-29 Thread Lalit DIGARI
Hello All, I am trying to use a c# dll in python application I follows the following steps. import CLR from CLR.System.Reflection import Assembly my_dll_name = Assembly.LoadWithPartialName('VPCI') from CLR.System.Windows.Forms import Form from CLR.TestWinForm import Form1 VPCI = Form1()// F