Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Communications Technology

Formats for Electronic Forms? 38

Bifurcati asks: "I'm a grad student at the University of Queensland, Australia. I am frequently required to submit forms (e.g., annual reports) which are sent as Word or RTF documents and must be filled in electronically. However, these are almost impossible to use under Linux (e.g., StarOffice) because the tables and formatting are just too complicated and get mangled. Even Word for Mac sometimes has problems. Can anyone suggest a better, cross-platform format? Could PDF files with forms do this? What are the costs & learning curve? User friendliness is vital for both admin and student. Alternatively, can anyone suggest ways they could make their Word files more compatible across platforms?"
This discussion has been archived. No new comments can be posted.

Formats for Electronic Forms?

Comments Filter:
  • HTML? (Score:3, Insightful)

    by Anonymous Coward on Thursday August 12, 2004 @08:31PM (#9954441)
    Add a bit of PHP, maybe a database, and easy form processing.
  • HTML (Score:5, Insightful)

    by Fred Nerk ( 128328 ) * on Thursday August 12, 2004 @08:35PM (#9954467)
    What about good ol' online forms? They are accessable from almost any PC, the users can't go changing the layout of the forms, data can be real-time, and there's no need for someone to parse the forms by hand.
    • Re:HTML (Score:2, Insightful)

      by MasterDirk ( 659057 )

      This is just what the net is good at. XML!

      Honestly, it is!

    • Re:HTML (Score:2, Insightful)

      by Anonymous Coward
      One problem is printing HTML. It's hard enough to make a good screen layout. Making it look good on paper, so that certain parts are guaranteed to be on certain pages, is very difficult.
      • Re:HTML (Score:2, Insightful)

        by slittle ( 4150 )
        Once you've snarfed all the data from a form into a file or DB, it can be barfed back out in whatever format and layout you want.
    • MOD PARENT UP (Score:3, Insightful)

      by blackcoot ( 124938 )
      i was going to suggest something along these lines. if you're serious about it, you may want to check out xforms [xformsinstitute.com] especially if you're doing any major processing of those forms once all is said and done.

  • I'm sure theres a older warez version out there somewhere (given that uni student have a tight beer budget).
  • by Talonius ( 97106 ) on Thursday August 12, 2004 @09:15PM (#9954726)
    They allow you to save the data with the form, transfer the data to a remote source without any loss, and at the remote site you can process the PDF form with additional software. Individuals can save the form and take it with them to have the data entered, removing the requirement for a connection to the network (ala HTML forms).

    Acrobat allows you to easily specify the types of data you want them to allow to input. There's quite a few PDF form creation software packages available as well allowing you to do to this.

    We use them at my place of employment and have had only one problem: data entry sections that can widely vary. There's no way to make the section grow or shrink that we've found so if the form creator specified area isn't large enough to hold your data you could be out of luck when you go to print.

    In that same vein they don't deal well with ad hoc data being added to the beginning or end of the form as a Word or RTF file would. The purpose of a form is to get away from that sort of data, but it happens.
  • PostScript (Score:3, Insightful)

    by Cranx ( 456394 ) on Thursday August 12, 2004 @09:16PM (#9954734)
    You can't just edit PostScript directly?
  • by mTor ( 18585 ) on Thursday August 12, 2004 @09:33PM (#9954849)
    ... and they open just fine.

    As for compatibility, Word 2004 has a nice feature called "Compatibility Report" which analyzes a file before saving it and warns you which versions of Word might have problems.

    My general advice for forms is to implement an XML based form server. I know that Adobe is pushing their PDF forms server but that's really an overkill. If you have money to burn, Microsoft's InfoPath is a good choice as well.
    • I'm a grad student
    • I am frequently required to submit forms (e.g., annual reports)

    How often do anual reports come round again you lazy bastard?!
    Oh wait, you posted to: ask slashdot. Duuh.

    I jest, I jest.

  • by rmohr02 ( 208447 ) <mohr.42NO@SPAMosu.edu> on Thursday August 12, 2004 @10:03PM (#9955021)
    There is essentially no learning curve for using PDFs. In MS Office (or, for that matter, any Windows application), use PDFCreator. On OS X, exporting to PDFs is a function of the operating system. In Unix/Linux, there's ps2pdf (and just about any application will print postscript to file), as well as KOffice and OpenOffice.org.
    • I've run into the same problem as the questioner... I don't have Adobe Acrobat (and don't really want to buy it for personal use, at $250+), and making locked forms in Word can be irritating to get working right, and many people can't fill in the form.

      Sure, I can create PDFs with no problem using various software (it's built-in to OpenOffice, for one)... but I haven't seen free or open-source software that will let me create PDF *forms*, where the user can fill in the fields before printing it out.

      Actuall
      • Sure, I can create PDFs with no problem using various software (it's built-in to OpenOffice, for one)... but I haven't seen free or open-source software that will let me create PDF *forms*, where the user can fill in the fields before printing it out.

        There is a method called 'pdfmarks' that allows you to use little snippets of postscript code inserted into the print stream. This can be done by embedding them in little EPS files and inserting them into your wordprocessor document as graphics. This isn'

  • XML (Score:4, Interesting)

    by jefu ( 53450 ) on Thursday August 12, 2004 @10:32PM (#9955175) Homepage Journal
    This is the kind of problem that XML solves perfectly.

    XML would allow you to define (in a DTD/Schema...) the kinds of data that the form should be collecting and do it in a format neutral way. Then you could use web pages (translate the XML automatically to XHTML, grab the data and translate back). This can be fairly easily automated as could other methods to handle the input. PDF and DOC (and its cousins) are poor substitutes as you can't as easily identify the important information in the document, you can't store it concisely and you can't then do semantic level searches on it. Furthermore, in XML processing you can do consistency checks and so on.

    In a web setting (or similarly "connected" kind of configuration) you could pre-populate much of the data for the user. You could even "compile" the xml to a set of online forms (XML -> GLADE or the MS .NET XML window description thing).

    Once the data is entered into XML it can be massaged and output in any needed format (I don't know of any free XML to DOC format converter, but I suspect that the XML enabled MS Office stuff can do it if needed).

    By the way, while that first step is easy to say, actually defining the DTD/Schema/... is likely to be rather difficult. (Look up sometime what it takes to specify an address [ozemail.com.au].) But this difficulty pays off immensely in that you know much more about your data, and much more about the ways it might be used. Once this is done though, the other parts are really pretty straightforward.

    It might take a bit of work, but in the long term coding this up in XML is likely to save far more work and money.

    • Re:XML (Score:1, Informative)


      Another XML fanboy.

      First you create XML. Then you build DTD/Schema to enforce a set
      of constrictions on the original XML (note: DTD/Schema were added
      later to XML).

      Then you 'automatically' convert the said XML to XHTML.

      right, you build another XML to represent how to display the
      original data within original XML/DTD/Schema. Such display XML
      shall not be called XML, lets call it different things, for there
      are different DTD/Schemas for display XMLs. The Mozilla crowd
      wants you to use XUL, the ms camp wants y
  • by jc42 ( 318812 ) on Thursday August 12, 2004 @10:41PM (#9955219) Homepage Journal
    It's perhaps worth pointing out that it's also a problem for Windows users. If you have a version of Word that's very different from the one used to generate the form, there's a good chance that it'll be garbled for you, too.

    The funny thing is that university admin types tend to use ancient, unpatched versions of W98 (or even W95), so it's students with an up-to-date XP machine that are likely to have problems. OO on linux can often read such files better than recent versions of Word.

    Of course, the real solution is to somehow educate them to the risks of using Word docs. But they're university people; they probably can't be educated.

  • PDF forms are easy as, only problem reader will let you enter the data, but only Acrobat will let you save the data back into the PDF.

    The learning curve for setting up a PDF form isn't too bad, whoever creates these forms in the first place just needs to take their Word file, convert it to PDF and mark the form fields in Acrobat.

    For the end user putting data into the form - if you've got a PDF printer driver under Windows then you can just print them back to a PDF, or under linux print as postscript and c
    • PDF-Scribus and OO. (Score:2, Informative)

      by Anonymous Coward
      Well two things. One scribus will let one create PDF forms. Second OpenOffice can create it's own editable forms, and then print that to PDF.
    • Re:PDF (Score:1, Informative)

      by Anonymous Coward
      We've just done a pilot of exactly what the questioner seems to be asking for - and we used online forms (written in XHTML), and a stylesheet for rendering the form to FOP, and thence an Open Source product (forget which) to render to PDF forms. User gets on to the website, fills in the form online, submits and gets a filled-in PDF back, which they can sign and send in by snail-mail if they want to. Glorious thing is we've already got all the data stored from the online form, so we're only checking for th
  • XFDL and soon XForms (Score:4, Informative)

    by bwt ( 68845 ) on Friday August 13, 2004 @12:05AM (#9955635)
    XFDL works for this, but unfortunately there is only one vendor: PureEdge. The US Air Force is using this for online/offline forms capabilities. XFDL was sort of a predecessor to XForms (one of the PureEdge lead technicals is on the XForms WG).

    Eventually, XForms should have enough support to category kill this problem. It's just taking a while because it has a lot of dependencies on other XML specs that make it difficult for implementors. I was SO glad to see IBM and Novell step in to provide resources to Mozilla implement XForms.
  • Information collected with InfoPath 2003 can be integrated with a broad range of business processes because InfoPath 2003 supports any customer-defined Extensible Markup Language (XML) schema and integrates with Web services. As a result, InfoPath 2003 can help you connect directly to organizational information and then act on it, which leads to greater business impact.
    http://www.microsoft.com/office/infopath/prodinfo/ overview.mspx [microsoft.com]
    • Re:InfoPath (Score:1, Informative)

      by Anonymous Coward
      Um, thanks for the advertisement, but the poster asked for a CROSS-PLATFORM solution. InfoPath is Windows-only.

      I've used InfoPath in the past, and while it got the job done, there were about 10 different other ways to go which would have gotten the job done in the same amount of time AND been cross-platform.
  • PDF editing (Score:2, Informative)

    by BakaBaka ( 607123 )
    As a designer, I've had to make forms for a variety of idiots. Lots of idiots choose MS Word/Works, which is fine if you lock the documents and provide very specific instructions. For personal and in-office stuff, I use Excel. It's ugly but functional. For most other forms, I prefer the PDF format. For fancy stuff, a lot of design software (including Quark, Photoshop, etc.) can export to PDF, and you can drop the form boxes in later. Although Acrobat lacks the tools you might need, PitStop Pro by Enfocus w

"If it ain't broke, don't fix it." - Bert Lantz

Working...