Skip to main content

Customized Page for Printer

  • Intro
  • How to Create Customized papper (Windows XP)
  • Set the Customized papper as Default paper to the printer.

Intro

When i was working with several projects; customers are using pre printed invoices for print their bills.For printing invoices i used Crystal Reports. for print particular information on that pre printed invoices i had to waste lots of time with doing alignments. If that pre-printed bill is A4 then its easy for me to set alignments because most of every printer supports A4 papers.(NOT POS PRINTERS). But if the customer select a Paper which is not supports to the printer then i have to waste lots of time to set the paper alignments.

New printers are supporting user to set their own customized paper. But lots of companies still using dot matrix printers for print lots of invoices. It is easy and economical. Most of all Dot matrix printers does not have a feature to customized the paper size.Windows XP has a option to user defined paper on Printer and Faxes in the control panel. Unfortunately some of printers are not supporting this feature.But Luckyly printers like Epson LX-300+ (very popular dot matrix printer) supports customized papers.If the paper size is supports to the printer other things going to be very easy

How to Create Customized paper (Windows XP)

(Assume have Epson LX-300+ printer attached to my PC)
Open Control Panel an double click on Printers and Faxes.


Select File
select Server Properties



Then you can see Print Server Properties Dialog Box.
Put a Check Mark on Create a new form under Forms tab.

Now you can define Paper size and printing margins on Form description (measurements) Area.
After finish your work give Appropriate Name on Form Name and click Save Form.


Set the Customized paper as Default paper to the printer

Right Click on Epson LX-300+ printer and select Properties.

click Printing Preferences
from Printing Preferences dialog box click Advanced button
From the Advanced Option dialog box select Paper Size and click the paper name you already created.
click OK twice.
Select Device Settings Tab from Properties Dialog Box.
Choose Customized paper for Manual Feed:, Sheet Feeder: and Tractor Feed:.

click OK.

Now your Printer Default paper settings are set to your Customized paper.

Comments

Popular posts from this blog

How To Disable Export Button In Crystal Report When you are taking crystal report printouts through a program, such as program written using vb6. you might have a problem how to disable Export button in print preview. All you have to change following property to false or Uncheck the Export option in Property Pages. You CR.WindowShowExportBtn = False Crystal Report Object in Visual Basic 6. (CR is refer to Crystal Report Object ) You can go to Property Pages by right click and choose Properties on Crystal Report Object After you done those things you crystal Report print preview will showing like follows. I was face to above problem. We implemented a software program which is written using vb6. Cashier can take daily sale print out. before printing it is showing a preview to the user. So when the time pass user click export button and saved that report as a excel file. Then he modified the values and took printout to the management. That gives Security problem to the program a

Magento Generate Google Sitemap using Cron

I had a problem with generating the Google sitemap using cron job. To do that you can simply change following database value. SELECT * FROM core_config_data WHERE path = 'crontab/jobs/sitemap_generate/schedule/cron_expr' Change the value as you set time in cron jobs. EX: Generate the Sitemap for every 5 minutes value = */5 * * * * That's it. Now you have to worry about cron is working or not. Just type following in your browser and hit enter. http://youresite.com/cron.php
Git script which shows little bit advanced status. Save with Preferred file name in /usr/local/bin/XX branch="" branches="git branch --list" ESC_SEQ="\x1b[" COL_RESET=$ESC_SEQ"39;49;00m" COL_RED=$ESC_SEQ"31;01m" while read -r branch; do clean_branch_name=${branch//\*\ /} description=`git config branch.$clean_branch_name.description` if [ "${branch::1}" == "*" ]; then printf "$COL_RED$branch$COL_RESET $description \n" else printf " $branch $description\n" fi done <<< "$branches" git status Use the following command to add a description to your local branches. git branch --edit-description