[libreoffice-users] Re: Invalid descriptor Index 07009 when using a query parameter?

2012-07-05 Thread leeand00
Okay for anyone who's interested I submitted the bug here: http://bugs.mysql.com/bug.php?id=65832thanks=sub Enjoy! -- View this message in context: http://nabble.documentfoundation.org/Invalid-descriptor-Index-07009-when-using-a-query-parameter-tp3987364p3993950.html Sent from the Users mailing

[libreoffice-users] Re: Invalid descriptor Index 07009 when using a query parameter?

2012-07-05 Thread leeand00
I also posted it here: https://www.libreoffice.org/get-help/bug/ -- View this message in context: http://nabble.documentfoundation.org/Invalid-descriptor-Index-07009-when-using-a-query-parameter-tp3987364p3993952.html Sent from the Users mailing list archive at Nabble.com. -- For unsubscribe

[libreoffice-users] Invalid descriptor Index 07009 when using a query parameter?

2012-06-01 Thread leeand00
Good day all, I'm trying to query a MySQL Database (Ver 14.14 Distrib 5.5.22 for debian-linux-gnu (i686) using readline 6.2) for purposes of generating a report in OpenOffice Base (3.5.3.2 Build ID 350m1 (Build:2)). I am connecting via ODBC, and my /etc/odbc.ini looks like this: [DESP] Driver

[libreoffice-users] Re: How to convert a basic script into Python?

2012-05-30 Thread leeand00
Ah, as helpful as in the previous two posts. Thank you again Andreas! -- View this message in context: http://nabble.documentfoundation.org/How-to-convert-a-basic-script-into-Python-tp3986621p3986724.html Sent from the Users mailing list archive at Nabble.com. -- For unsubscribe instructions

[libreoffice-users] Which Event to use to retrieve GUI objects initially?

2012-05-29 Thread leeand00
I'm looking for which event I should use for something similar to a Javascript onload event in LibreOffice Base, more detail is provided here: http://ask.libreoffice.org/question/2998/what-event-on-what-object-should-i-attach-my-gui Thank you, Andrew J. Leer -- View this message in

[libreoffice-users] Re: Which Event to use to retrieve GUI objects initially?

2012-05-29 Thread leeand00
The problem must be that I'm not using the event to retrieve it. TheForm = Doc.DrawPage.Forms.GetByName(Form) -- View this message in context: http://nabble.documentfoundation.org/Which-Event-to-use-to-retrieve-GUI-objects-initially-tp3986583p3986590.html Sent from the Users mailing list

[libreoffice-users] Re: Which Event to use to retrieve GUI objects initially?

2012-05-29 Thread leeand00
Thank you! That did the trick. I'd like to post it on the forum, but I don't want to take credit for it, when you are the one who fixed the problem. With you're permission I will post the answer myself, but if you want to post the answer please go ahead:

[libreoffice-users] Alternate Method of Error Handling when Developing Basic Macros?

2012-05-29 Thread leeand00
Is there some way to redirect the output of errors to a logger instead of the standard popup dialog box when editing macros? This runs really slow on my virtual machine. Thank you, Andrew J. Leer -- View this message in context:

[libreoffice-users] Re: Alternate Method of Error Handling when Developing Basic Macros?

2012-05-29 Thread leeand00
Can this be enabled for an entire script instead of just for a single function or sub? -- View this message in context: http://nabble.documentfoundation.org/Alternate-Method-of-Error-Handling-when-Developing-Basic-Macros-tp3986593p3986617.html Sent from the Users mailing list archive at

[libreoffice-users] Re: Alternate Method of Error Handling when Developing Basic Macros?

2012-05-29 Thread leeand00
Okaythanks! :) -- View this message in context: http://nabble.documentfoundation.org/Alternate-Method-of-Error-Handling-when-Developing-Basic-Macros-tp3986593p3986619.html Sent from the Users mailing list archive at Nabble.com. -- For unsubscribe instructions e-mail to:

[libreoffice-users] How to convert a basic script into Python?

2012-05-29 Thread leeand00
Hello, I have a basic script that I think would probably be easier and faster to modify using Python. It's pretty simple, it involves a MySQL database and a base form. I suppose the confusing bit would be where the UNO components come in, how are these handled in Python? And just for