Click here to Skip to main content
15,918,742 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiona c++ code implimenting a single linked list Pin
phineas kimathi20-Jul-12 2:54
phineas kimathi20-Jul-12 2:54 
AnswerRe: a c++ code implimenting a single linked list Pin
Richard MacCutchan20-Jul-12 2:57
mveRichard MacCutchan20-Jul-12 2:57 
GeneralRe: a c++ code implimenting a single linked list Pin
lewax0020-Jul-12 5:33
lewax0020-Jul-12 5:33 
GeneralRe: a c++ code implimenting a single linked list Pin
Richard MacCutchan20-Jul-12 6:09
mveRichard MacCutchan20-Jul-12 6:09 
AnswerRe: a c++ code implimenting a single linked list Pin
Wes Aday20-Jul-12 3:06
professionalWes Aday20-Jul-12 3:06 
AnswerRe: a c++ code implimenting a single linked list Pin
Chris Losinger20-Jul-12 6:24
professionalChris Losinger20-Jul-12 6:24 
AnswerRe: a c++ code implimenting a single linked list Pin
jschell20-Jul-12 7:10
jschell20-Jul-12 7:10 
AnswerRe: a c++ code implimenting a single linked list Pin
Sunil P V20-Jul-12 20:30
Sunil P V20-Jul-12 20:30 
AnswerRe: a c++ code implimenting a single linked list Pin
Software_Developer22-Jul-12 6:45
Software_Developer22-Jul-12 6:45 
AnswerRe: a c++ code implimenting a single linked list Pin
Stefan_Lang22-Jul-12 22:35
Stefan_Lang22-Jul-12 22:35 
GeneralRe: a c++ code implimenting a single linked list Pin
jschell23-Jul-12 5:18
jschell23-Jul-12 5:18 
GeneralRe: a c++ code implimenting a single linked list Pin
Stefan_Lang23-Jul-12 21:59
Stefan_Lang23-Jul-12 21:59 
Questionhow to view source code of STL functions Pin
Ubun2OS20-Jul-12 2:07
Ubun2OS20-Jul-12 2:07 
AnswerRe: how to view source code of STL functions Pin
Richard MacCutchan20-Jul-12 2:55
mveRichard MacCutchan20-Jul-12 2:55 
AnswerRe: how to view source code of STL functions Pin
Maximilien20-Jul-12 3:02
Maximilien20-Jul-12 3:02 
GeneralRe: how to view source code of STL functions Pin
Richard MacCutchan20-Jul-12 5:13
mveRichard MacCutchan20-Jul-12 5:13 
GeneralRe: how to view source code of STL functions Pin
Maximilien20-Jul-12 5:43
Maximilien20-Jul-12 5:43 
GeneralRe: how to view source code of STL functions Pin
Richard MacCutchan20-Jul-12 6:11
mveRichard MacCutchan20-Jul-12 6:11 
GeneralRe: how to view source code of STL functions Pin
Maximilien20-Jul-12 10:13
Maximilien20-Jul-12 10:13 
AnswerRe: how to view source code of STL functions Pin
Chris Losinger20-Jul-12 6:26
professionalChris Losinger20-Jul-12 6:26 
GeneralRe: how to view source code of STL functions Pin
Ubun2OS21-Jul-12 4:40
Ubun2OS21-Jul-12 4:40 
QuestionIssue with Printing Pin
Mohibur Rashid19-Jul-12 23:47
professionalMohibur Rashid19-Jul-12 23:47 
Today I developed an application that generate EAN-13 Barcode. around 166 bar code is being generated and printed in two pages.

Now the problem I am seeing is operation is slow and heavy. It Sends 17.24 Mega Bytes of data to printer to print. And the entire process is really slow.

here is the steps to do so:
C++
//I am not going through all the detail. If this code does not help you then let me know.
PrintDlg(...)
StartDoc(...);
StartPage(...);
// a process to create and draw the image on hdc using 
// i got an application available in CodeProject. 

DrawText(...);//to draw the number at the bottom of the barcode
EndPage(...);
EndDoc(..);


Now the problem is data is too much for two page.
But even an 8 page mistake print is so fast that it ends printing before I reach to printer to stop. What's wrong with this way? more over is there a better way? or too much ink?
QuestionRe: Issue with Printing Pin
Eugen Podsypalnikov20-Jul-12 0:41
Eugen Podsypalnikov20-Jul-12 0:41 
AnswerRe: Issue with Printing Pin
Mohibur Rashid20-Jul-12 1:26
professionalMohibur Rashid20-Jul-12 1:26 
GeneralRe: Issue with Printing Pin
Eugen Podsypalnikov20-Jul-12 1:35
Eugen Podsypalnikov20-Jul-12 1:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.