RE: win32com Dispatch

2002-11-11 Thread Chris Ingram
27;d want to do "win32com.client.Dispatch(newObj)" before you can start calling methods on newObj. I hope this helps. -- Chris Ingram, Synchrologic, Inc. -Original Message- From: Paul Casteels [mailto:Paul.Casteels@;ua.ac.be] Sent: Tuesday, November 05, 2002 2:52 AM To: [EMAIL PROTECTED] S

RE: decimal places problem with ODBC/ASP?

2001-05-15 Thread Chris Ingram
Title: decimal places problem with ODBC/ASP? I didn't see an answer to your question yet, so here goes.   This is the fundamental problem with using floating point numbers in the database.  If you don't want these minor rounding discrepancies, then use fixed point numbers, e.g. DECIMAL, data

RE: Python in Active Server Pages

2000-10-26 Thread Chris Ingram
You might try something like the following for your question #2: i = Request.querystring("obj") # enumerate all methods and properties of object obj # and provide a linked list of # exec executes a string as if it were a line of code. exec ('j = ' + i) for k in dir(j): ... -Or