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
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
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