Click here to Skip to main content
15,891,431 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: How To Recive WM_RBUTTONDOWN from Flash ActiveX control to Replace Macromedia menu in MFC dialoge App in VC++ 6 Pin
Haitham Khedre9-Jul-06 22:44
Haitham Khedre9-Jul-06 22:44 
AnswerRe: How To Recive WM_RBUTTONDOWN from Flash ActiveX control to Replace Macromedia menu in MFC dialoge App in VC++ 6 Pin
Naveen9-Jul-06 22:50
Naveen9-Jul-06 22:50 
QuestionDisassembly of Release Code Pin
LionAM9-Jul-06 11:17
LionAM9-Jul-06 11:17 
AnswerRe: Disassembly of Release Code Pin
Viorel.9-Jul-06 22:48
Viorel.9-Jul-06 22:48 
QuestionSetting Data Items Pin
BlitzPackage9-Jul-06 10:25
BlitzPackage9-Jul-06 10:25 
Questioncombo box question Pin
locoone9-Jul-06 9:13
locoone9-Jul-06 9:13 
AnswerRe: combo box question Pin
Ram Murali9-Jul-06 16:31
Ram Murali9-Jul-06 16:31 
GeneralRe: combo box question Pin
locoone9-Jul-06 16:34
locoone9-Jul-06 16:34 
<code>BOOL Renamer::OnInitDialog()
{
CDialog::OnInitDialog();

// TODO: Add extra initialization here
list.InsertColumn(0, "Title", LVCFMT_CENTER, 350, 0);
m_takeout.SetCurSel(0);
m_putin.SetCurSel(0);
m_takeout.UpdateWindow();
UpdateData(FALSE);

CString csTemp = BaseFolder;
csTemp += _T("\\*.mp3");
CFileFind ff;
BOOL bWorking = ff.FindFile(csTemp);
while (bWorking)
{
bWorking = ff.FindNextFile();
if ((ff.IsDirectory() && (ff.IsDots())))
{
continue;

// Recursively traverse this subdirectory
//EnumerateFolderContents(ff.GetFilePath());
}
else
{
int nIndex = list.GetItemCount();
CString m_songcount, songname, jh;
songname.Format("%s", ff.GetFilePath());
list.InsertItem(nIndex, ff.GetFileName());
list.UpdateWindow();
nIndex = nIndex + 1;
}
}
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}</code>
that is all of it
GeneralRe: combo box question Pin
Ram Murali9-Jul-06 17:31
Ram Murali9-Jul-06 17:31 
GeneralRe: combo box question Pin
Naveen9-Jul-06 17:55
Naveen9-Jul-06 17:55 
GeneralRe: combo box question Pin
locoone9-Jul-06 17:58
locoone9-Jul-06 17:58 
GeneralRe: combo box question Pin
Naveen9-Jul-06 18:03
Naveen9-Jul-06 18:03 
GeneralRe: combo box question [modified] Pin
locoone9-Jul-06 18:06
locoone9-Jul-06 18:06 
QuestionPrinting a user-defined datatype [modified] Pin
Harold_Wishes9-Jul-06 7:29
Harold_Wishes9-Jul-06 7:29 
AnswerRe: Printing a user-defined datatype Pin
Steve Echols9-Jul-06 8:07
Steve Echols9-Jul-06 8:07 
GeneralRe: Printing a user-defined datatype Pin
Harold_Wishes9-Jul-06 8:41
Harold_Wishes9-Jul-06 8:41 
GeneralRe: Printing a user-defined datatype Pin
Steve Echols9-Jul-06 9:17
Steve Echols9-Jul-06 9:17 
GeneralRe: Printing a user-defined datatype [modified] Pin
Harold_Wishes9-Jul-06 10:26
Harold_Wishes9-Jul-06 10:26 
GeneralRe: Printing a user-defined datatype Pin
Steve Echols9-Jul-06 17:48
Steve Echols9-Jul-06 17:48 
QuestionOther instances of a program Pin
RomTibi9-Jul-06 7:07
RomTibi9-Jul-06 7:07 
AnswerRe: Other instances of a program Pin
Jun Du9-Jul-06 11:04
Jun Du9-Jul-06 11:04 
AnswerRe: Other instances of a program Pin
ThatsAlok9-Jul-06 20:17
ThatsAlok9-Jul-06 20:17 
QuestionSaving a (image) file in different format Pin
snir_ya9-Jul-06 5:06
snir_ya9-Jul-06 5:06 
AnswerRe: Saving a (image) file in different format Pin
Tara149-Jul-06 5:09
Tara149-Jul-06 5:09 
GeneralRe: Saving a (image) file in different format Pin
snir_ya9-Jul-06 5:13
snir_ya9-Jul-06 5: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.