Click here to Skip to main content
15,920,596 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiondirectsound Pin
viliam15-Oct-08 22:09
viliam15-Oct-08 22:09 
AnswerRe: directsound Pin
CPallini15-Oct-08 22:22
mveCPallini15-Oct-08 22:22 
AnswerRe: directsound Pin
_AnsHUMAN_ 15-Oct-08 22:37
_AnsHUMAN_ 15-Oct-08 22:37 
GeneralRe: directsound Pin
viliam15-Oct-08 22:46
viliam15-Oct-08 22:46 
AnswerRe: directsound Pin
Hamid_RT16-Oct-08 4:28
Hamid_RT16-Oct-08 4:28 
QuestionFraming a window - Not at creation [modified] Pin
urbanyoung15-Oct-08 21:57
urbanyoung15-Oct-08 21:57 
AnswerRe: Framing a window - Not at creation Pin
Jose David Pujo16-Oct-08 2:03
Jose David Pujo16-Oct-08 2:03 
QuestionCopying the Data from an ASCII Text File on a PC Back to an Operating System Spooled File for Iseries Pin
aa_zz15-Oct-08 21:28
aa_zz15-Oct-08 21:28 
AnswerRe: Copying the Data from an ASCII Text File on a PC Back to an Operating System Spooled File for Iseries Pin
SandipG 15-Oct-08 21:57
SandipG 15-Oct-08 21:57 
GeneralRe: Copying the Data from an ASCII Text File on a PC Back to an Operating System Spooled File for Iseries Pin
Hamid_RT16-Oct-08 4:26
Hamid_RT16-Oct-08 4:26 
QuestionCopying the Data from an ASCII Text File on a PC Back to an Operating System Spooled File for Iseries don't use ftp(visual C++6.0) Pin
aa_zz15-Oct-08 21:15
aa_zz15-Oct-08 21:15 
QuestionMonitoring network traffic on LAN using VC++ Pin
tony_Udz15-Oct-08 20:45
tony_Udz15-Oct-08 20:45 
AnswerRe: Monitoring network traffic on LAN using VC++ Pin
SandipG 15-Oct-08 21:03
SandipG 15-Oct-08 21:03 
GeneralRe: Monitoring network traffic on LAN using VC++ Pin
tony_Udz16-Oct-08 1:41
tony_Udz16-Oct-08 1:41 
AnswerRe: Monitoring network traffic on LAN using VC++ Pin
Mark Salsbery16-Oct-08 4:33
Mark Salsbery16-Oct-08 4:33 
GeneralRe: Monitoring network traffic on LAN using VC++ Pin
tony_Udz16-Oct-08 19:16
tony_Udz16-Oct-08 19:16 
GeneralRe: Monitoring network traffic on LAN using VC++ Pin
Mark Salsbery17-Oct-08 5:02
Mark Salsbery17-Oct-08 5:02 
Questionget printer status............ Pin
ani_ikram15-Oct-08 20:38
ani_ikram15-Oct-08 20:38 
before sending info for printing using CPrintDialog how to check whether selected printer(using printer dialog) is ready to print(attached to server) .
i m using following code for printdialog call and getting selected printer name but unable to check status of selected print is there some method ??
bool    bNewDlg = true;
    // if no special printer-dialog is given, we take the standard printer-dialog
    if (m_printDlg == NULL)
        {
        m_printDlg = new CPrintDialog(FALSE,PD_DISABLEPRINTTOFILE);
        bNewDlg = false;
        }
    
    ASSERT(m_printDlg != NULL);

	if (PrinterName == NULL) {

		// which printer ist desired, and how much copies?
		if (m_printDlg->DoModal() == IDCANCEL) return (-1);
		m_hprinter = m_printDlg->GetPrinterDC();
	
		
		
		CString cs;
	cs= m_printDlg->GetDeviceName();
	 // AfxMessageBox(cs);
	  m_hprinter=m_printDlg->GetPrinterDC();
	
	  if(m_hprinter==NULL)
	return;
		m_numCopies = m_printDlg->GetCopies ();

QuestionRe: get printer status............ Pin
David Crow16-Oct-08 3:08
David Crow16-Oct-08 3:08 
QuestionRegarding NetUserAdd Pin
H4u3215-Oct-08 19:25
H4u3215-Oct-08 19:25 
AnswerRe: Regarding NetUserAdd Pin
Rajesh R Subramanian15-Oct-08 21:09
professionalRajesh R Subramanian15-Oct-08 21:09 
GeneralRe: Regarding NetUserAdd Pin
H4u3215-Oct-08 21:37
H4u3215-Oct-08 21:37 
GeneralRe: Regarding NetUserAdd Pin
Rajesh R Subramanian15-Oct-08 22:01
professionalRajesh R Subramanian15-Oct-08 22:01 
GeneralRe: Regarding NetUserAdd Pin
H4u3215-Oct-08 23:25
H4u3215-Oct-08 23:25 
GeneralRe: Regarding NetUserAdd Pin
Rajesh R Subramanian16-Oct-08 1:13
professionalRajesh R Subramanian16-Oct-08 1:13 

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.