473,405 Members | 2,334 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

printing using vb.net

Hi, i am trying to print the same document to at 3 printers at the same time,
i tried using printdocument in looping fashion but they would wait for one
printer to print finish before going to the next printer to do the same
document print job. How do i overcome this problem, the key point is that i
want them to print at the same time, so i can save lots of time..

Pls enlightened me....thanks
Nov 21 '05 #1
5 1094
Hi,

you could use threads,

Dim t As System.Threading.Thread
t = New System.Threading.Thread(AddressOf Printer1)
t.Start()
Dim t2 As System.Threading.Thread
t2 = New System.Threading.Thread(AddressOf Printer2)
t2.Start()
Dim t3 As System.Threading.Thread
t3 = New System.Threading.Thread(AddressOf Printer3)
t3.Start()

private sub Printer1
'do your printing to printer1
end sub
private sub Printer2
'do your printing to printer2
end sub
private sub Printer3
'do your printing to printer3
end sub

hth

Greetz Peter

"notregister" <no*********@discussions.microsoft.com> wrote in message
news:BC**********************************@microsof t.com...
Hi, i am trying to print the same document to at 3 printers at the same time, i tried using printdocument in looping fashion but they would wait for one
printer to print finish before going to the next printer to do the same
document print job. How do i overcome this problem, the key point is that i want them to print at the same time, so i can save lots of time..

Pls enlightened me....thanks

Nov 21 '05 #2
Peter,

I often get the idea that people want to use multithreading only because
they want to use it and don't look at the dependencies. However I think that
this is a nice sample where it can be usefull in some situations. I will
remember it me for the next time.

:-)

Cor
Nov 21 '05 #3
Hi Cor,

I'm not much of a multithreader myself but I also thought that this was a
good situation to use it.

Greetz Peter

"Cor Ligthert" <no************@planet.nl> wrote in message
news:eo**************@TK2MSFTNGP12.phx.gbl...
Peter,

I often get the idea that people want to use multithreading only because
they want to use it and don't look at the dependencies. However I think that this is a nice sample where it can be usefull in some situations. I will
remember it me for the next time.

:-)

Cor

Nov 21 '05 #4
Hi Peter,

Thanks for your informations!!

"Peter Proost" wrote:
Hi Cor,

I'm not much of a multithreader myself but I also thought that this was a
good situation to use it.

Greetz Peter

"Cor Ligthert" <no************@planet.nl> wrote in message
news:eo**************@TK2MSFTNGP12.phx.gbl...
Peter,

I often get the idea that people want to use multithreading only because
they want to use it and don't look at the dependencies. However I think

that
this is a nice sample where it can be usefull in some situations. I will
remember it me for the next time.

:-)

Cor


Nov 21 '05 #5
Hi Peter,

Thanks for your informations!!

"Peter Proost" wrote:
Hi Cor,

I'm not much of a multithreader myself but I also thought that this was a
good situation to use it.

Greetz Peter

"Cor Ligthert" <no************@planet.nl> wrote in message
news:eo**************@TK2MSFTNGP12.phx.gbl...
Peter,

I often get the idea that people want to use multithreading only because
they want to use it and don't look at the dependencies. However I think

that
this is a nice sample where it can be usefull in some situations. I will
remember it me for the next time.

:-)

Cor


Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Jody Gelowitz | last post by:
I am trying to find the definition of "Safe Printing" and cannot find out exactly what this entitles. The reason is that I am trying to print contents from a single textbox to no avail using the...
5
by: Patrick De Ridder | last post by:
How can I turn what I want to print 90 degrees using the logic below? Please tell me the code with which to make the modification. Many thanks, Patrick. using System.ComponentModel; using...
4
by: Arif | last post by:
I C# code prints very slow as compared to a third party barcode printing software. That software prints approximately 10 labels in 2 seconds while my C# code prints 10 labels in 5 to 6 seconds. And...
0
by: Nigel | last post by:
I successfully create a .NET Component (Visual Basic .NET) that would print, unfortunately when used within a web browser it appears that .NET security doesn't allow you to run code that interacts...
12
by: Alex Clark | last post by:
Greetings, (.NET 2.0, WinXP Pro/Server 2003, IE6 with latest service packs). I've decided to take advantage of the layout characteristics of HTML documents to simplify my printing tasks, but...
6
by: Siv | last post by:
Hi, I am getting into printing with VB.NET 2005 and want to implement the usual capability that a user can select a selection of pages. I have a report that is generated by my application that if...
8
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web...
0
by: nikhilgargi | last post by:
Requirement: I need to provide printing capability in a C# desktop application that I am developing The documents that need to be printed can be in Rich Text Format (RTF) or HTML. Custom...
0
by: dotnet2005 | last post by:
Hi Toall , I want to explain you clearly , I am having some panels having some controls CheckBox,ComboBox,Datagridview,Hyperlink,label,Listbox,Picturebox,RadioButt­ on ,Textbox)...
18
by: Brett | last post by:
I have an ASP.NET page that displays work orders in a GridView. In that GridView is a checkbox column. When the user clicks a "Print" button, I create a report, using the .NET Framework printing...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.