Posts by user_de_drogas_pesadas • 33 points
4 posts
-
1
votes0
answers22
viewsQ: Image in printDocument_PrintPage
How to insert image into a print form, type as in the case of icon there when I’m editing theform, the only way I ended up finding was through Image IMG = Image.FromFile(Application.StartupPath +…
-
0
votes2
answers69
viewsA: Text box to determine amount of digit usage
Thanks to all who will contribute, served to review my code, and I ended up changing it to: private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (char.IsLetter(e.KeyChar) )…
-
1
votes1
answer63
viewsQ: Help on Printpage in c#
What are the processes to place a watermark (image) in the form that will be created by c# private void Imprimir_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { Font fonte =…
-
1
votes2
answers69
viewsQ: Text box to determine amount of digit usage
Below follows the code I am trying to limit the use of letters in the text box, the exception of the comma, but it occurs that the comma can be typed a hundred times, I would like the comma to be…