Questions tagged as 'print'

3
answers

Delete space between two print

How can I eliminate the space between 2 print different in Python? For example: num = raw_input() num = float(num) result="" while num>=1000: result+= "M" num = num - 1000 if num>=900: result+= "CM", num=num-900 if...
asked by 16.05.2018 / 23:49
1
answer

Print a file saved in C #

I'm trying to print from windform, it turns out that when I print the document, I get the blank sheet. This is the code with which I try to print: private PrintDocument printDocument1 = new PrintDocument(); private string stringToPrint...
asked by 06.12.2017 / 02:15
2
answers

Show notice by external display [closed]

I am doing a shift manager so that users arrive at a certain office, request a shift, print the ticket and wait to be called "observing" the warning screen. I have no idea (nor do I find information about it) of what to do so that from PHP a war...
asked by 21.09.2018 / 11:02
2
answers

Print PDF filled in with .text

I am creating an offer creator where there is a standard form and only replaces price and customer data. So my intention is to print that filled form with the variables captured in the Textbox.text If someone could explain or give me an examp...
asked by 14.08.2018 / 11:55