Click here to Skip to main content
15,908,013 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Windows XP Theme Conflict Pin
Jnewg511-Mar-04 3:14
Jnewg511-Mar-04 3:14 
GeneralRe: Windows XP Theme Conflict Pin
Michael Dunn12-Mar-04 4:28
sitebuilderMichael Dunn12-Mar-04 4:28 
GeneralRe: Windows XP Theme Conflict Pin
Jnewg512-Mar-04 15:22
Jnewg512-Mar-04 15:22 
GeneralRe: Windows XP Theme Conflict Pin
Michael Dunn12-Mar-04 16:45
sitebuilderMichael Dunn12-Mar-04 16:45 
Generalprinting your source code Pin
BlackDice2-Mar-04 5:28
BlackDice2-Mar-04 5:28 
GeneralRe: printing your source code Pin
John M. Drescher2-Mar-04 6:05
John M. Drescher2-Mar-04 6:05 
GeneralRe: printing your source code Pin
BlackDice2-Mar-04 6:16
BlackDice2-Mar-04 6:16 
GeneralRe: printing your source code Pin
John M. Drescher2-Mar-04 6:54
John M. Drescher2-Mar-04 6:54 
Are you sure that these MFC files were not open in developer studio when you hit print? The macro that prints is a very simple macro that gets a list of the open documents and prints each one.

Here is the code for the macro:
Sub PrintAllOpenDocuments ()
'DESCRIPTION: Prints all open, active documents.

	'Small, quick macro, but it can be usefull.
	for each doc in Application.Documents
		Doc.PrintOut
	next
End Sub


Unless devstudio somehow thinks more files are open than you actually have open I do not see how this can fail...

John
GeneralRe: printing your source code Pin
BlackDice2-Mar-04 6:58
BlackDice2-Mar-04 6:58 
GeneralRe: printing your source code Pin
John M. Drescher2-Mar-04 8:08
John M. Drescher2-Mar-04 8:08 
GeneralRe: printing your source code Pin
John M. Drescher2-Mar-04 8:20
John M. Drescher2-Mar-04 8:20 
GeneralPassing Data between threads Pin
Tom Wright2-Mar-04 4:19
Tom Wright2-Mar-04 4:19 
GeneralRe: Passing Data between threads Pin
Prakash Nadar2-Mar-04 4:25
Prakash Nadar2-Mar-04 4:25 
GeneralRe: Passing Data between threads Pin
Tom Wright2-Mar-04 4:33
Tom Wright2-Mar-04 4:33 
GeneralRe: Passing Data between threads Pin
RobJones2-Mar-04 4:40
RobJones2-Mar-04 4:40 
GeneralRe: Passing Data between threads Pin
jhwurmbach2-Mar-04 4:43
jhwurmbach2-Mar-04 4:43 
GeneralString pointer questions Pin
Tom Wright2-Mar-04 4:51
Tom Wright2-Mar-04 4:51 
GeneralRe: String pointer questions Pin
jhwurmbach2-Mar-04 4:58
jhwurmbach2-Mar-04 4:58 
QuestionWhy cannot add new database record? Pin
siew hoon2-Mar-04 3:17
siew hoon2-Mar-04 3:17 
GeneralProblems with MFC Extensions DLLs Pin
SashaTis2-Mar-04 3:12
SashaTis2-Mar-04 3:12 
GeneralRe: Problems with MFC Extensions DLLs Pin
John M. Drescher2-Mar-04 3:39
John M. Drescher2-Mar-04 3:39 
GeneralRe: Problems with MFC Extensions DLLs Pin
SashaTis2-Mar-04 5:03
SashaTis2-Mar-04 5:03 
GeneralRe: Problems with MFC Extensions DLLs Pin
John M. Drescher2-Mar-04 6:02
John M. Drescher2-Mar-04 6:02 
GeneralRe: Problems with MFC Extensions DLLs Pin
SashaTis3-Mar-04 4:51
SashaTis3-Mar-04 4:51 
GeneralRe: Problems with MFC Extensions DLLs Pin
John M. Drescher3-Mar-04 5:43
John M. Drescher3-Mar-04 5:43 

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.