similar to: PDF Form Reader

Displaying 20 results from an estimated 100000 matches similar to: "PDF Form Reader"

2006 Jan 04
3
PDF Form Reader using rails/ruby
Can someone guide me the best possible way to read a PDF form fields. I have seen some references to the PDFWriter but not the reader. Any help appreciated. Thanks Silvy Mathews -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060104/641bd399/attachment.html
2006 Jan 18
6
Mention about an open source image editor
Some days back there was a mention about an open source image editor that people uses for application layout designing. I have forgotten about the name of that software. Can someone send me the link? Silvy Mathews
2006 Jan 08
4
Rails table pluralizing Issue
Hi, I am working on a table with name "addresses". However when I do a ruby script/generate scaffold Address, I am not able to access http://localhost:3000/addresses. I am getting the following error. uninitialized constant Addres This error occured while loading the following files: addres.rb How do I resolve this issue. Thanks Silvy MAthews
2006 Jan 28
2
Trying to understand the difference between similariterators
No I have tried that. It gives me just this output # -----Original Message----- From: rails-bounces@lists.rubyonrails.org [mailto:rails-bounces@lists.rubyonrails.org] On Behalf Of Pat Maddox Sent: Friday, January 27, 2006 2:48 PM To: rails@lists.rubyonrails.org Subject: Re: [Rails] Trying to understand the difference between similariterators Well first of all, when you''re iterating
2006 Apr 12
9
Showing Images from a file store
Hi all. I am wrting a small content management tool for my company and was trying to display some images from our file store shown below. <td> <img src="\\xx.xx.xxx.xx\xx\xx\xxx\abc.gif"/> The app was displaying the image when it is under the \public\images directory. Is there anything special we need to do to get a file from outside the root of the application? Any help
2006 Jan 27
2
Trying to understand the difference between similar iterators
What''s the difference between these two? Objective: Trying to display the addresses of the students that has "has_many" relations with addresses <td><% @student.addresses.each {|address| "Address: #{address.addr1}<br/>"} %> </td> ****** did not work <% end %> This code worked: <td><% @student.addresses.each do |address|%>
2006 Feb 02
4
Doubts on validation
Hi All, View ******** <tr> <td><b>Student: </b></td> <td><%= text_field "student", "fname", "size" => 40, "maxlength" => 40 %></td> </tr> <tr> <td><b>Program: </b></td> <td><select id="student_program_id"
2006 Jan 09
3
Design Question
I am sure some of you can give me an insight into this. This is more towards the database design for the scenario below: Say for example, I have a person table and this person can have different address types. One could be Home and the other could be say Office. Should be model this Table people id fname lname Table addresses id person_id addr1 addr2 .... or Table people id fname lname
2011 Sep 21
1
{SOLVED} Re: PDF Reader/Editor for CentOS 5.7 (32 bit)?
On Tue, Sep 20, 2011 at 8:35 AM, Lanny Marcus <lmmailinglists at gmail.com> wrote: > I had, in the past, a .pdf reader that also permitted me to fill in > some information, when I received a .pdf file. > > I have KPDF installed, but that seems to only have Reader capability. > <snip> > Received a contract via email and I would like to add some information > and
2006 Jan 26
1
Explanation on Activerecord Associations
A while back, I had some doubts on the use of associations. I still haven''t got a satisfactory guidance so that I can spring ahead with the project. I am trying to understand from a ruby point of view on doing things. Basically I have a controller that gives me a list of students. And each student may have say home address and mailing address. Hence I can model as shown below. How do I
2014 Jun 27
1
Creating PDF with editable fields
On Sat, Jun 21, 2014 at 12:52 AM, Bowie Bailey <Bowie_Bailey at buc.com> wrote: > > Do you have any suggestions for a good program to create PDF forms > (linux or MS)? I have a PDF document here that we have our customers > fill out. I looked into making it a form a while back, but I couldn't > find any reasonable way to do it (there are a LOT of fields and >
2006 Jan 18
5
Inserting the parent Id to the child table
Hi All, I need your suggestions for the following. I am still learning RoR and pardon my ignorance. I have say two tables. Table A : students Table B : addresses Table B has student_id as the foreign key to Table A If I am displaying the list of students and wanted to get individual students addresses based on their id, is the only option is to get the id from students controller method list
2015 Jul 15
3
CentOS 7.1 doesn't seem to have a functional default pdf reader installed (interesting)
On Tue, Jul 14, 2015 at 6:26 PM, Kahlil Hodgson <kahlil.hodgson at dealmax.com.au> wrote: > evince is the PDF reader for Gnome > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos Cool, thanks. Now I think it would be great to add that to the menu, it is installed already (I am using
2020 May 14
0
open 2nd pdf on dfs share with Acrobat Reader not possible
Hello everybody, after updating samba from Version 4.9.1 to 4.10.4 (Centos 7) opening a PDF Document in Acrobat Reader with a double click, when the document resides on a dfs share, is only possible for the 1st document. I know, this is not not a samba bug, because windows 2019 Server behaves the same, i just want to share my findings.
2011 Sep 20
4
PDF Reader/Editor for CentOS 5.7 (32 bit)?
I had, in the past, a .pdf reader that also permitted me to fill in some information, when I received a .pdf file. I have KPDF installed, but that seems to only have Reader capability. Trying to install xpdf, with yum, I get this dependency error from rpmforge: 1:xpdf-3.02-8.el5.rf.i386 from rpmforge has depsolving problems --> Missing Dependency: libXm.so.4 is needed by package
2014 Jun 19
1
good thin client PDF reader for centos 6.4
Any suggestions for a good lightweight pdf reader for my centos servers? Thanks, -- Dan Hyatt
2010 Dec 07
1
OT: permission denied when opening PDF docs with Acrobat Reader X potected mode
Hi, this might be off topic because it's not a samba problem, but might be interesting for others too. We are running an older samba 3.0.24 working as domain controller (no DFS features). When opening a .pdf file with the Acrobat Reader X from a WinXP SP3 client (maschine is member of the domain) the Acrobat Reader X shows a "permission denied". We see the following in the samba
2006 Feb 02
0
Validation fails with select option list
I have a form with some text_field and some drop down lists. <input id="student_fname" name="student[fname]" size="20" value="" type="text"> <input id="student_mname" name="student[mname]" size="20" value="" type="text"> <input id="student_lname"
2015 Jul 15
2
CentOS 7.1 doesn't seem to have a functional default pdf reader installed (interesting)
Hi; This is the first time that I've installed CentOS 7.1 with a GUI (I've just used a CLI previously). I'd like to read a pdf file and I don't see any pdf reader applications installed by default. This seems unusual to me. So I see that gs is installed, but it doesn't really work very well for me as I can't seem to scroll to the next page. So what pdf reader
2010 Sep 30
0
How to download Prawn pdf while using form submit?
submit.pdf.prawn files pdf.text "successfully submitted" form controller file def index @forms = Form.all respond_to do |format| format.html end end def submit respond_to do |format| format.pdf {render } end end -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on