Click here to Skip to main content
15,905,508 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: deleting all files from a folder, but one Pin
snoopy_32130-Jan-07 23:48
snoopy_32130-Jan-07 23:48 
AnswerRe: deleting all files from a folder, but one Pin
Hamid_RT30-Jan-07 7:32
Hamid_RT30-Jan-07 7:32 
QuestionHow to tell if a removable drive is a CD or USB Pin
tieng8630-Jan-07 2:49
tieng8630-Jan-07 2:49 
AnswerRe: How to tell if a removable drive is a CD or USB Pin
Blake Miller30-Jan-07 4:48
Blake Miller30-Jan-07 4:48 
GeneralRe: How to tell if a removable drive is a CD or USB Pin
tieng8630-Jan-07 8:00
tieng8630-Jan-07 8:00 
AnswerRe: How to tell if a removable drive is a CD or USB Pin
James R. Twine30-Jan-07 7:46
James R. Twine30-Jan-07 7:46 
GeneralRe: How to tell if a removable drive is a CD or USB Pin
tieng8630-Jan-07 8:21
tieng8630-Jan-07 8:21 
QuestionMFC Sockets Pin
Member 253245430-Jan-07 1:19
Member 253245430-Jan-07 1:19 
AnswerRe: MFC Sockets Pin
Nibu babu thomas30-Jan-07 1:38
Nibu babu thomas30-Jan-07 1:38 
GeneralRe: MFC Sockets Pin
Hamid_RT30-Jan-07 2:09
Hamid_RT30-Jan-07 2:09 
GeneralRe: MFC Sockets Pin
Nibu babu thomas1-Feb-07 20:43
Nibu babu thomas1-Feb-07 20:43 
GeneralRe: MFC Sockets Pin
Hamid_RT2-Feb-07 4:09
Hamid_RT2-Feb-07 4:09 
AnswerRe: MFC Sockets Pin
Hamid_RT30-Jan-07 2:08
Hamid_RT30-Jan-07 2:08 
QuestionHow to Insert Object... Pin
Shah Satish30-Jan-07 0:59
Shah Satish30-Jan-07 0:59 
AnswerRe: How to Insert Object... Pin
Roger Stoltz30-Jan-07 1:15
Roger Stoltz30-Jan-07 1:15 
GeneralRe: How to Insert Object... Pin
Shah Satish30-Jan-07 1:20
Shah Satish30-Jan-07 1:20 
GeneralRe: How to Insert Object... Pin
Roger Stoltz30-Jan-07 1:44
Roger Stoltz30-Jan-07 1:44 
GeneralRe: How to Insert Object... Pin
Shah Satish30-Jan-07 1:53
Shah Satish30-Jan-07 1:53 
Yeh..You got my question correctly..

See my code..

BOOL CDwgPvDLG::OnInitDialog()
{
	CDialog::OnInitDialog();

	
	//static bool isFirstRun = true;

 
	m_mytext.AddString(_T("Exchanger-Double end"));
        m_mytext.AddString(_T("Exchanger-Single end"));
        m_mytext.AddString(_T("Exchanger-Double end kettle"));
	m_mytext.AddString(_T("Exchanger-Single end kettle"));
	m_mytext.AddString(_T("Exchanger-Super"));
	m_mytext.AddString(_T("Exchanger-Process Flow"));
     

  if (str == _T("")) {

    // This is default value.

	   m_mytext.SetCurSel(0);

	   mydwg = _T("C:\\Symbol\\Exchangers\\Exchanger_1_i.dwg");

   }

   else{

	   m_mytext.SelectString(-1,str);
    }
 
    this->Invalidate(FALSE);
    
	return TRUE;
}

void CDwgPvDLG::OnPaint()

{
    // This is the class for preview of my drawing.	CDwgPreview ::ShowInDialog (mydwg,this,IDC_PVTYP);

	CPaintDC dc(this); 
	
	// device context for painting
	// TODO: Add your message handler code here
	// Do not call CDialog::OnPaint() for painting messages


}

void CDwgPvDLG::OnselectionchangeList()
{
	// TODO: Add your control notification handler code here
	
   int nEntry = m_mytext.GetCurSel();
   

   const IndexEntry *pEntry = m_pPermutedIndex->GetIndexTableEntry(nEntry);

   this->Invalidate(FALSE);

   
}

void CDwgPvDLG ::OnOK()
{
    CDialog::OnOK();

	
   m_mytext.GetText(m_mytext.GetCurSel(),str);

  //Here i have to add some code for inserting my symbol (.dwg).	

}


Shah
GeneralRe: How to Insert Object... Pin
jhwurmbach30-Jan-07 2:40
jhwurmbach30-Jan-07 2:40 
GeneralRe: How to Insert Object... Pin
Shah Satish30-Jan-07 2:46
Shah Satish30-Jan-07 2:46 
GeneralRe: How to Insert Object... Pin
jhwurmbach30-Jan-07 2:51
jhwurmbach30-Jan-07 2:51 
GeneralRe: How to Insert Object... Pin
Shah Satish30-Jan-07 2:54
Shah Satish30-Jan-07 2:54 
GeneralRe: How to Insert Object... Pin
jhwurmbach30-Jan-07 2:57
jhwurmbach30-Jan-07 2:57 
QuestionCross-Process Subclassing Pin
Force Code30-Jan-07 0:47
Force Code30-Jan-07 0:47 
QuestionI need help with win32 api edit controls Pin
asp.netProgrammer30-Jan-07 0:20
asp.netProgrammer30-Jan-07 0:20 

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.