Re: exporting a record from a database to a MS Word document.

2007-05-06 Thread ici
Levi Campbell wrote: > Is there a way to export a record from a database kept with bsddb to > MS Word, possibly with some type of formatting data? import win32com.client try: import psyco; psyco.full() except ImportError: pass app = win32com.client.Dispatch("Word.Application") app.Visible = Tru

Re: exporting a record from a database to a MS Word document.

2007-05-06 Thread ici
Levi Campbell wrote: > Is there a way to export a record from a database kept with bsddb to > MS Word, possibly with some type of formatting data? import win32com.client try: import psyco; psyco.full() except ImportError: pass app = win32com.client.Dispatch("Word.Application") app.Visible = Tru

exporting a record from a database to a MS Word document.

2007-05-06 Thread Levi Campbell
Is there a way to export a record from a database kept with bsddb to MS Word, possibly with some type of formatting data? -- http://mail.python.org/mailman/listinfo/python-list