Results 1 to 11 of 11

Thread: Collector-Info: Creating a printable off line Order form
      
   

  1. #1
    Thumpmonkey's Avatar
    Thumpmonkey is offline Second Lieutenant
    Join Date
    Jan 2008
    Posts
    99

    Default Collector-Info: Creating a printable off line Order form

    I'm looking to make a printable offline Order Form, and found a closed thread from 2007...

    Collector-Info responded: "Hi, if you make a page up using the BV form tools. You can than allow your visitor to just print it out via a print button & fill it in by hand. Or let them fill it out on line & then be able to print it & manually add a signature if wanted. Sample here." (this is the exact URL that was linked)

    However the link no longer works and I was wondering if you moved it, or have another example, because this is exactly what I'm looking for.

    Thanks.

  2. #2
    mrmagoo144's Avatar
    mrmagoo144 is offline Brigadier General
    Join Date
    Feb 2007
    Posts
    1,369

    Default Re: Collector-Info: Creating a printable off line Order form

    what i do is make my page on the web and then make the same page and save it as a pdf. that way it prints out on 8-5 x 11 sheet.

  3. #3
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: Collector-Info: Creating a printable off line Order form

    Ah! must have deleted it on a clear up session. New Link
    The form is just the same as an email form, but with a print button. Add the code below to a html box for a print button.

    <SCRIPT Language="Javascript">
    function printit(){
    if (window.print) {
    window.print() ;
    } else {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
    document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box WebBrowser1.outerHTML = "";
    }
    }
    </script>

    <SCRIPT Language="Javascript">
    var NS = (navigator.appName == "Netscape");
    var VERSION = parseInt(navigator.appVersion);
    if (VERSION > 3) {
    document.write('<form><input type=button value="Print this Page" name="Print" onClick="printit()"></form>');
    }
    </script>

  4. #4
    Thumpmonkey's Avatar
    Thumpmonkey is offline Second Lieutenant
    Join Date
    Jan 2008
    Posts
    99

    Default Re: Collector-Info: Creating a printable off line Order form

    Thank you guys, that looks good. Just what I'm looking for.

  5. #5
    mrmagoo144's Avatar
    mrmagoo144 is offline Brigadier General
    Join Date
    Feb 2007
    Posts
    1,369

    Default Re: Collector-Info: Creating a printable off line Order form

    hello: i added the script for a form that we have made and it shows the print button, but when i click on the print button, nothing happens, what am i doing wrong and thanks for the help.
    www.anchortaxi.com/taxi.php

  6. #6
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: Collector-Info: Creating a printable off line Order form

    Quote Originally Posted by mrmagoo144 View Post
    hello: i added the script for a form that we have made and it shows the print button, but when i click on the print button, nothing happens, what am i doing wrong and thanks for the help.
    www.anchortaxi.com/taxi.php
    Hi, the script works in IE, FF, Google/C, Opera, fine at my end. Your pages print button also works fine at my end.

  7. #7
    mrmagoo144's Avatar
    mrmagoo144 is offline Brigadier General
    Join Date
    Feb 2007
    Posts
    1,369

    Default Re: Collector-Info: Creating a printable off line Order form

    now thats strange - any idea why it would not work on my end? love the idea and the results if it will print.

  8. #8
    Thumpmonkey's Avatar
    Thumpmonkey is offline Second Lieutenant
    Join Date
    Jan 2008
    Posts
    99

    Default Re: Collector-Info: Creating a printable off line Order form

    Are you able to print other documents right now from other programs?

  9. #9
    mrmagoo144's Avatar
    mrmagoo144 is offline Brigadier General
    Join Date
    Feb 2007
    Posts
    1,369

    Default Re: Collector-Info: Creating a printable off line Order form

    yes no problem - just tried it on my desktop and it does not give me the printing option. strange.

  10. #10
    Thumpmonkey's Avatar
    Thumpmonkey is offline Second Lieutenant
    Join Date
    Jan 2008
    Posts
    99

    Default Re: Collector-Info: Creating a printable off line Order form

    It does seem to be working on this end...

  11. #11
    Thumpmonkey's Avatar
    Thumpmonkey is offline Second Lieutenant
    Join Date
    Jan 2008
    Posts
    99

    Default Re: Collector-Info: Creating a printable off line Order form

    I just went to the page you referenced earlier, and it IS working fine on this end... There's something up with your printer settings it sounds like.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49