Thank you so much. I will do it when I get home.

I also put several posts about using pyfpdf and those utilities and I am 
getting no response .
I just want a simple PDF print

import pyfpdf
 
f = pyfpdf.FPDF(format='letter')
p

d
df.add_page()

p
df.set_font("Arial", size=12)

p
df.cell(200, 10, txt="Welcome to Python!", align="C")

p
df.output("tutorial.pdf")

p
This I can work with and augment, but I keep getting errors that pyfpdf module 
is not loaded...and when I try to install, it does not work, But the pyfpdf 
site states it comes with Web2py. I played with this thing for two hours ... So 
frustrating when the error is environmental.

Thanks for any help you can offer,

Regards,

Paul 

Sent from my iPad

On Nov 17, 2012, at 12:54 PM, Massimo Di Pierro <massimo.dipie...@gmail.com> 
wrote:

> Feel free to show me exact controller code. You can email me to my google 
> address.
> 
> On Saturday, 17 November 2012 12:06:36 UTC-6, Paul Rykiel wrote:
>> 
>> Hi Massimo,
>>  
>> This post is fixed, but I am having a similar issue when I try to
>> add a button ... and the button does a 
>>  
>> page.addbutton(_name="print_tag")  URL('tagprint', 
>> args=form.vars.bike_identifier)
>>  
>> In def tagprint():
>>      tag = db(db.bike.bike_indentifier==request.args(0))
>>  
>> * request.args(0) shows a NONE
>>  
>> am I coding this incorrectly.
>>  
>>  
>> 
>> On Saturday, November 17, 2012 6:34:08 AM UTC-6, Massimo Di Pierro wrote:
>>> What error do you get? Are you trying to access the url with an extension?
>>> 
>>> On Tuesday, 13 November 2012 17:28:59 UTC-6, Paul Rykiel wrote:
>>>> 
>>>> Hi just learning WEB2py and I have a question:
>>>>  
>>>> why do i get an error on this code
>>>> *** This code errors out, but when I replace "tag_no" with 1 for record id 
>>>> 1, it works, also the variable "tag_no" has a 1 as a value when i type in 
>>>> an argument 1 on the end of the URL 
>>>>  
>>>> def tag():
>>>>     tag_no = request.args(0) 
>>>>     Title = "For Sale"
>>>>     Rows = db(db.bike.id==tag_no).select()  
>>>>     for row in Rows:
>>>>          serial = row.serial
>>>>          make = row.make
>>>>          model = row.model
>>>>          size = row.size
>>>>          color = row.color
>>>>          style = row.style
>>>>          date_of_receipt = row.date_of_receipt
>>>>          repairs = row.repairs_done
>>>>          price = row.price
>>>>     return locals()
> -- 
>  
>  
>  

-- 



Reply via email to