[libreoffice-users] Basic Addon Builder

2012-02-09 Thread blesko
Has anyone recently used or edited the BasicAddonBuilter macro? I recently
used it and ran into a problem with an addon I built. The labels on my new
macro are not showing up . Drew suggested it might be a language file
missing?

http://nabble.documentfoundation.org/file/n3730282/labels.png 

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Basic-Addon-Builder-tp3730282p3730282.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: UNION Query throwing error

2012-01-30 Thread blesko
Thanks, Jay,

That helped me refine it beautifully :-)

I love this feature of reportbuilder. I was able to eliminate the
relationship tables entirely and just do separate selects for the relevant
tables themselves, which cut out a ton of extra work!

Now I am going to attempt to repeat this with a patient summary...

Thanks for taking the time to assess my situation!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/UNION-Query-throwing-error-tp3695780p3698564.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: UNION Query throwing error

2012-01-29 Thread blesko
Oh Oh! I hit Edit- Run SQL Directly and I'm getting much more informative
error messages - stand-by :-)

--
View this message in context: 
http://nabble.documentfoundation.org/UNION-Query-throwing-error-tp3695780p3695882.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: UNION Query throwing error

2012-01-29 Thread blesko
One more requirement - in report builder properties, chose in general Query,
but Analize SQL:NO.

--
View this message in context: 
http://nabble.documentfoundation.org/UNION-Query-throwing-error-tp3695780p3696191.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] UNION Query throwing error

2012-01-28 Thread blesko
Hello!

Wonder if my error jumps out at any of you - attempting to get a 3 column
result - would you take a look?

`( SELECT appointment.date AS Date, physician.lastname AS
Description, appointment.time AS Comment FROM pat_appt,
appointment, physician, patient WHERE pat_appt.appt_id =
appointment.id AND patient.id = pat_appt.pat_id ) UNION ( SELECT
prescription.next_fill_date AS Date, medicines.generic AS
Description, pharmacy.name AS Comment FROM pat_med,
prescription, pharmacy, medicines, patient WHERE
pat_med.presc_id = prescription.id AND patient.id =
pat_med.pat_id AND medicines.id = prescription.medication AND
pharmacy.id = prescription.pharm_id ) UNION ( SELECT bill.due AS
Date, bill.descrip AS Description, bill.amount AS Comment FROM
pat_bill, bill, patient WHERE pat_bill.bill_id = bill.id AND
patient.id = pat_bill.pat_id ) UNION ( SELECT immunizations.due
AS Date, immunizations.description AS Description,
immunizations.date AS Comment FROM pat_immun, immunizations,
patient WHERE pat_immun.imun_id = immunizations.id AND
patient.id = pat_immun.pat_id ) ORDER BY 1 ASC, 4 ASC, 7 ASC, 10
ASC`

The error is 
SQL Status: HY000
Error code: 1000

syntax error, unexpected $end, expecting BETWEEN or IN or SQL_TOKEN_LIKE

I'm attaching the relationships.

http://nabble.documentfoundation.org/file/n3695780/08.png 

Any suggestions?

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/UNION-Query-throwing-error-tp3695780p3695780.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: UNION Query throwing error

2012-01-28 Thread blesko
This was my solution:

`( SELECT appointment.date AS Date, appointment.notes AS
Description, physician.lastname AS Comment,
TO_CHAR(appointment.time, 'HH24:MI:SS') AS Notes, 'Appt' AS Type
FROM pat_appt, appointment, physician, patient WHERE
pat_appt.appt_id = appointment.id AND patient.id =
pat_appt.pat_id ) UNION ( SELECT prescription.next_fill_date AS
Date, medicines.generic AS Description, pharmacy.name AS
Comment, pharmacy.phone AS Note, 'Med Refill' AS Type FROM
pat_med, prescription, pharmacy, medicines, patient WHERE
pat_med.presc_id = prescription.id AND patient.id =
pat_med.pat_id AND medicines.id = prescription.medication AND
pharmacy.id = prescription.pharm_id ) UNION ( SELECT bill.due AS
Date, bill.descrip AS Description, bill.amount AS Comment,
bill.date_recd AS Notes, 'Bill' AS Type FROM pat_bill, bill,
patient WHERE pat_bill.bill_id = bill.id AND patient.id =
pat_bill.pat_id ) UNION ( SELECT immunizations.due AS Date,
immunizations.description AS Description, immunizations.date AS
Comment, immunizations.date AS Notes, 'Immun Due' AS Type FROM
pat_immun, immunizations, patient WHERE pat_immun.imun_id =
immunizations.id AND patient.id = pat_immun.pat_id )`

The trick was going to Edit-Run SQL Directly.

Hope someone can benefit from this,

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/UNION-Query-throwing-error-tp3695780p3696185.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-22 Thread blesko
Solved! Yey!

Thanks to Drew's reportrunner extension, I succeeded in getting a macro to
run one specific report from a button on my forms. I edited the macro so it
would accept assigned values for DBName and aReport, then made copies of
Main () on mdlExecReport to create one for each report, which makes a
Main_Allergy () (or Main_Conditions ()...etc) selectable as a macro.

View my screenshots:

http://nabble.documentfoundation.org/file/n3679653/allergyrptbutton.png 

http://nabble.documentfoundation.org/file/n3679653/newrptrunner.png 

I needed to change the dialog a little - my application audience will mostly
be seniors - some over 90 - so it had to have the least amount of confusing
choices.

Thank you so much, Drew! Thanks, too, to Tom and Fernand and Dan for helping
out.

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3679653.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-18 Thread blesko
I edited mdlExecReport and added a function OpenAllergyReport, which is a
duplicate of OpenReport().

This works when I access the macro from the toolbar - in both the DB object
and an exported .odt form (where I hoped to put the button). It's throwing
one error for line 305 (not optional??), but it still opens the report :-)

But I cannot run it from the button. I may be configuring the button
incorrectly. On the General tab, I have Action : none, then on the events
tab I have Execute Action mdlExecReport-mdlOpenAllergyReport. If not, maybe
a button isn't the way to go? 

Any suggestions?

Encouraged!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3668612.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-18 Thread blesko
Oh - that's a typo of sorts...

http://nabble.documentfoundation.org/file/n3668719/allgergybutton.png 

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3668719.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-17 Thread blesko
Hi Drew :-)

Jeff has the one you sent me - we're working on the project together.

He has it working now, too.

Thanks!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3668089.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-16 Thread blesko
Good idea, Fernand :-) Will do.

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3664076.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
Hi Drew,

Thanks for your reply.

Part of my problem is the hidden URL to run the report - can you advise me
as to how to determine what the URL might be?

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661011.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
Hi Fernand,

Thanks for the reply.

It appears reportrunner may no longer be available

http://extensions.services.openoffice.org/project/reportrunner

but I will continue a search for it.

I am using an html5 document as my main navigator for access to reports and
forms.

Part of the problem is I don't understand how to determine what the URL path
would be to a report. I will review the literature on the API to see if I
can find anything.

Can you shed light on this?

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661019.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
So does report runner exist anymore?

How do I find the path to the report within base - seems if I can use open
or href to open it, I could run it. I may be getting in way over my head and
unfortunately my time is limited. What would you recommend?

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661115.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
Awesome! Thank you, Drew!

I don't see the attachment, just a link to the API site...

I'd be happy to familiarize myself with it. It would definitely be helpful
to many!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661776.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
Sweet! It's listing the reports in my app :-)

Thanks so much!

We'll keep you posted...

I think I'm going to try putting a button on my data entry form that runs
the specific report.

Yey!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661858.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-15 Thread blesko
Hi :-)

I'm so excited to have this working!

I created a button, added an event - execute action, selected the mdlMngDlg
- ShowRunReportDialog, but got an error - wrong number of paramaters.

Any tips?

On Sun, Jan 15, 2012 at 6:13 PM, blesko [via Document Foundation Mail
Archive] ml-node+s969070n3661858...@n3.nabble.com wrote:

 Sweet! It's listing the reports in my app :-)

 Thanks so much!

 We'll keep you posted...

 I think I'm going to try putting a button on my data entry form that runs
 the specific report.

 Yey!

 Beth

 --
  If you reply to this email, your message will be added to the discussion
 below:

 http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3661858.html
  To unsubscribe from Triggering reports from html files, click 
 herehttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3654402code=Ymxlc2tvQGxlc2tvd2ViZW5naW5lZXJpbmcuY29tfDM2NTQ0MDJ8LTY3ODE5MjA0OA==
 .
 NAMLhttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.InstantMailNamespacebreadcrumbs=instant+emails%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml



--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3662183.html
Sent from the Users mailing list archive at Nabble.com.
-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-13 Thread blesko
I sent an empty email to  users+subscr...@global.libreoffice.org, so
hopefully I will soon be fully subscribed - TY :-)

On Thu, Jan 12, 2012 at 2:35 PM, Tom [via Document Foundation Mail Archive]
ml-node+s969070n3654673...@n3.nabble.com wrote:

 Hi :)
 I think you have not yet subscribed to the User List fully so they have
 not yet received your mail.  There should be a confirmation email in your
 inbox that needs to be replied to or dealt with
 Regards from
 Tom :)

 --
  If you reply to this email, your message will be added to the discussion
 below:

 http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654673.html
  To unsubscribe from Triggering reports from html files, click 
 herehttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3654402code=Ymxlc2tvQGxlc2tvd2ViZW5naW5lZXJpbmcuY29tfDM2NTQ0MDJ8LTY3ODE5MjA0OA==
 .
 NAMLhttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.InstantMailNamespacebreadcrumbs=instant+emails%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml



--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654871.html
Sent from the Users mailing list archive at Nabble.com.
-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-12 Thread blesko
All registered!

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654951.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Triggering reports from html files

2012-01-12 Thread blesko
Hello! 

I have developed an application using libreoffice base.  I navigate to all
the forms from an html5 document. Here's my problem: 

I've created some reports using report builder, but cannot trigger the
generation of a dynamic report from the html file. All my research points to
the impossibility of externally accessing the dynamic reports, but I am
hoping it is lack of knowledge that is turning up these research results.
Can anyone enlighten me on this? 

I resorted to using forms to produce a dynamic data grid. This could work,
but only if its possible to make it more presentable, instead of looking
like a table. 

My whole project hinges on getting presentable dynamic reports to work. 

Can someone point me in the right direction? 

Thank you! 

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3655372p3655372.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-12 Thread blesko
Haha - just tried that and got the same - not approved yet, but maybe it will
go through here:


Hello! 

I have developed an application using libreoffice base.  I navigate to all
the forms from an html5 document. Here's my problem: 

I've created some reports using report builder, but cannot trigger the
generation of a dynamic report from the html file. All my research points to
the impossibility of externally accessing the dynamic reports, but I am
hoping it is lack of knowledge that is turning up these research results.
Can anyone enlighten me on this? 

I resorted to using forms to produce a dynamic data grid. This could work,
but only if its possible to make it more presentable, instead of looking
like a table. 

My whole project hinges on getting presentable dynamic reports to work. 

Can someone point me in the right direction? 

Thank you! 

Beth


--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3655376.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Triggering reports from html files

2012-01-12 Thread blesko
Hello!

I have developed an application using libreoffice base.  I navigate to all
the forms from an html5 document. Here's my problem:

I've created some reports using report builder, but cannot trigger the
generation of a dynamic report from the html file. All my research points to
the impossibility of externally accessing the dynamic reports, but I am
hoping it is lack of knowledge that is turning up these research results.
Can anyone enlighten me on this?

I resorted to using forms to produce a dynamic data grid. This could work,
but only if its possible to make it more presentable, instead of looking
like a table.

My whole project hinges on getting presentable dynamic reports to work.

Can someone point me in the right direction?

Thank you!

Beth

--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654402.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Re: Triggering reports from html files

2012-01-12 Thread blesko
I confirmed my registration with the Document Foundation Archive and can
view both my post and your response when logged in... hopefully it's okay
:-P

Thanks for the warning - I'll check it out.

Beth

On Thu, Jan 12, 2012 at 2:35 PM, Tom [via Document Foundation Mail Archive]
ml-node+s969070n3654673...@n3.nabble.com wrote:

 Hi :)
 I think you have not yet subscribed to the User List fully so they have
 not yet received your mail.  There should be a confirmation email in your
 inbox that needs to be replied to or dealt with
 Regards from
 Tom :)

 --
  If you reply to this email, your message will be added to the discussion
 below:

 http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654673.html
  To unsubscribe from Triggering reports from html files, click 
 herehttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3654402code=Ymxlc2tvQGxlc2tvd2ViZW5naW5lZXJpbmcuY29tfDM2NTQ0MDJ8LTY3ODE5MjA0OA==
 .
 NAMLhttp://nabble.documentfoundation.org/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.InstantMailNamespacebreadcrumbs=instant+emails%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml



--
View this message in context: 
http://nabble.documentfoundation.org/Triggering-reports-from-html-files-tp3654402p3654842.html
Sent from the Users mailing list archive at Nabble.com.
-- 
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted