Results 1 to 14 of 14

Thread: Creating a printable off line Order form
      
   

  1. #1
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Creating a printable off line Order form

    Hey guys, I am sure some one out there knows how to do this because blue voda has one that someone put together.

    Here's what I want to accomplish- I want a button [ order Form ] that takes the customer to a printable order form, allows them to fill in the required information, which they then can print out,and mail along with their payment to me.

    Can anyone tell me what I have to do to accomplish this, or assist me in the process? I sure would appreciate it.

    Thanks , Billy
    www.billydarnell.com - need this to be done on the albums page

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Creating a printable off line Order form

    I haven't seen the offline form, but most are made in Microsoft word or some other program of the kind and then converted to a PDF format. Theres free tools like primopdf to convert files to a pdf

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Re: Creating a printable off line Order form

    Yeah I looked at the properties and it said it was a microsoft word product, I'm not much of a computer programming person, so i am looking for a step by step process to help me complete the project, but thanks for the insight . I appreciate it.

    www.billydarnell.com

  4. #4
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Creating a printable off line Order form

    It doesn't require being a computer programing type person to make an offline form, you just need to be able to know the a button with a B is makes text bold, I makes it italic, and U makes it underlined.

    Basically you just have to do a bunch for formatting. Making words bold, to create the lines for people to write in stuff either make a line of spaces, and then underline the spaces or just use underscores.

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  5. #5
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Re: Creating a printable off line Order form

    ok thanks for the info watdaflip

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

    Default Re: Creating a printable off line Order form

    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.

  7. #7
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Re: Creating a printable off line Order form

    Very nice Chris, and thank you, thats exactly what i need. One question?? How did you do the print button? I mean how do you configure that? I didnt see it in the form video?

  8. #8
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Re: Creating a printable off line Order form

    Well as usual I Have sat here for over an hour waiting for a response, and as usual I have had to a work around , that I guess will suffice. Thanks anyways.

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

    Default Re: Creating a printable off line Order form

    Glad to be sufficed.



    Good luck.

  10. #10
    Billy Darnell is offline Corporal
    Join Date
    Jul 2007
    Location
    Nashville , TN
    Posts
    12

    Default Re: Creating a printable off line Order form

    Hey chris, just wanted to let you know your example was a help, would have liked to have a print button at the bottom of the page, but i guess they can always go to the print funtion on their tool bar and print it out, But thank you , your the one person in the 4 or 5 weeks I have been here that had an answer that actually made some sense and was truley helpfull. thanks bud

  11. #11
    iscuba11 is offline Sergeant
    Join Date
    Sep 2007
    Posts
    20

    Exclamation Re: Creating a printable off line Order form

    Quote Originally Posted by Collectors-info View Post
    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.
    Would you please supply me with the steps necessary to make a print button - coding behind it. Thank you much in advance!

    Fred

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

    Default Re: Creating a printable off line Order form

    Quote Originally Posted by iscuba11 View Post
    Would you please supply me with the steps necessary to make a print button - coding behind it. Thank you much in advance!

    Fred
    Hi, pop the code bellow into an html box on your BV page.

    HTML Code:
    <SCRIPT Language="Javascript">
    /*
    This script is promoted by: (www.webbiesite.com)
    for dynamicdrive.com
    */
    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>

  13. #13
    WSBlue's Avatar
    WSBlue is offline Brigadier General
    Join Date
    Apr 2006
    Posts
    1,416

    Default Re: Creating a printable off line Order form

    Quote Originally Posted by Collectors-info View Post
    Hi, pop the code bellow into an html box on your BV page.

    HTML Code:
    <SCRIPT Language="Javascript">
    /*
    This script is promoted by: (www.webbiesite.com)
    for dynamicdrive.com
    */
    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>
    HI! C0llectors,
    How or where to change the font or color of "Print this Page"
    Thanks.

  14. #14
    iscuba11 is offline Sergeant
    Join Date
    Sep 2007
    Posts
    20

    Smile Re: Creating a printable off line Order form

    Quote Originally Posted by Collectors-info View Post
    Hi, pop the code bellow into an html box on your BV page.

    HTML Code:
    <SCRIPT Language="Javascript">
    /*
    This script is promoted by: (www.webbiesite.com)
    for dynamicdrive.com
    */
    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>
    Thank You Very Much Chris - Worked Like A Charm!! Made My Week A Whole Lot Less Frustrating!!

    Peace And Love,

    Rev. Dave

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