Click here to Skip to main content
15,892,537 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi am working on software in which ,I am want to print name, amount ,amount in words..... should be print on check .when we insert check directly to print. pls healp me
Posted
Comments
Pradeep Shukla 6-Oct-13 23:31pm    
There is no ready made solution for your project. If you have tried something you can share the code here and if you have any specific issues... I would be happy to help.
BTW follow the guidelines http://www.codeproject.com/Articles/18654/Some-guidelines-for-posting-questions-in-the-forum
dhiraj ingole 7-Oct-13 0:43am    
yes i have tried one thing but i can't fix it ..like fields (name,amount,amount in words)to proper position on the check...because i don't have more knowledge about drawstring method of grafics..pls help me ..thanks in advance


Collapse | Copy Code
e.Graphics.DrawString(textBox1.Text, textBox1.Font, Brushes.Black, textBox1.Left + 5, textBox1.Top + 5);//position as needed of name
e.Graphics.DrawString(textBox2.Text, textBox2.Font, Brushes.Black, textBox2.Right + 5, textBox2.Top + 5);//position as needed amount
e.Graphics.DrawString(textBox3.Text, textBox3.Font, Brushes.Black, textBox3.Top + 5, textBox3.Top + 5);//position as needed amount in words
}
Marc Gabrie 7-Oct-13 7:20am    
What kind of printer are you targeting? and are the checks on a continuous roll or single pages?

1 solution

See this[^] CP article.

/ravi
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900