Click here to Skip to main content
15,912,400 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Reading unicode files in C++ not MFC Pin
Matthew Faithfull19-Jul-07 4:01
Matthew Faithfull19-Jul-07 4:01 
AnswerRe: Reading unicode files in C++ not MFC Pin
Hamid_RT31-Jul-07 9:13
Hamid_RT31-Jul-07 9:13 
QuestionI want to load Bitmap image on DialogBox. Pin
Atul2318-Jul-07 20:49
Atul2318-Jul-07 20:49 
AnswerRe: I want to load Bitmap image on DialogBox. Pin
Perspx18-Jul-07 21:24
Perspx18-Jul-07 21:24 
QuestionRe: I want to load Bitmap image on DialogBox. Pin
Khathar12-Aug-07 18:39
Khathar12-Aug-07 18:39 
QuestionRe: I want to load Bitmap image on DialogBox. Pin
Mark Salsbery19-Jul-07 5:32
Mark Salsbery19-Jul-07 5:32 
AnswerRe: I want to load Bitmap image on DialogBox. Pin
Hamid_RT31-Jul-07 9:10
Hamid_RT31-Jul-07 9:10 
QuestionGet history of any internet browser Pin
revanth198518-Jul-07 20:41
revanth198518-Jul-07 20:41 
Hi,
I have added functionality to add history in my list control by using the following function.
BOOL GetHistory(CStringList & list)
{
STATURL url;
CString strUrl;
ULONG uFetched;
IUrlHistoryStg2Ptr history;
IEnumSTATURLPtr enumPtr;

if(FAILED(CoCreateInstance(CLSID_CUrlHistory,
NULL,
CLSCTX_INPROC_SERVER,
IID_IUrlHistoryStg2,
( void**)&history)))
{
return false ;
}

if(FAILED(history->EnumUrls(&enumPtr)))
return false;

while(SUCCEEDED(enumPtr->Next(1,&url,&uFetched)))
{
if(uFetched==0)
break;
strUrl = url.pwcsUrl;
list.AddTail(strUrl);
}
return true;
}
Only IE history is added to my list control.How can i add history of other browsers also.
AnswerRe: Get history of any internet browser Pin
David Crow19-Jul-07 3:04
David Crow19-Jul-07 3:04 
GeneralRe: Get history of any internet browser Pin
revanth198519-Jul-07 21:22
revanth198519-Jul-07 21:22 
QuestionRe: Get history of any internet browser Pin
David Crow20-Jul-07 2:28
David Crow20-Jul-07 2:28 
AnswerRe: Get history of any internet browser Pin
revanth198520-Jul-07 21:21
revanth198520-Jul-07 21:21 
GeneralRe: Get history of any internet browser Pin
David Crow21-Jul-07 11:33
David Crow21-Jul-07 11:33 
QuestionWhat does DISCARDABLE in .rc file signify? Pin
Marimuthu.r18-Jul-07 20:09
Marimuthu.r18-Jul-07 20:09 
AnswerRe: What does DISCARDABLE in .rc file signify? Pin
CPallini18-Jul-07 20:29
mveCPallini18-Jul-07 20:29 
GeneralRe: What does DISCARDABLE in .rc file signify? Pin
Mark Salsbery19-Jul-07 5:34
Mark Salsbery19-Jul-07 5:34 
AnswerRe: What does DISCARDABLE in .rc file signify? Pin
David Crow19-Jul-07 3:10
David Crow19-Jul-07 3:10 
QuestionWhere i can find ttool.exe Pin
yaminisridaran18-Jul-07 20:04
yaminisridaran18-Jul-07 20:04 
QuestionAdd controls to dialog visual studio 2005 Pin
TobetheWinner18-Jul-07 19:30
TobetheWinner18-Jul-07 19:30 
AnswerRe: Add controls to dialog visual studio 2005 Pin
Mark Salsbery19-Jul-07 5:43
Mark Salsbery19-Jul-07 5:43 
AnswerRe: Add controls to dialog visual studio 2005 Pin
Hamid_RT25-Jul-07 8:55
Hamid_RT25-Jul-07 8:55 
Questionhow to run the MS-media palyer component.. Pin
vasu_sri18-Jul-07 19:16
vasu_sri18-Jul-07 19:16 
AnswerRe: how to run the MS-media palyer component.. Pin
thammadi19-Jul-07 1:09
thammadi19-Jul-07 1:09 
GeneralRe: how to run the MS-media palyer component.. Pin
vasu_sri19-Jul-07 3:55
vasu_sri19-Jul-07 3:55 
GeneralRe: how to run the MS-media palyer component.. Pin
thammadi19-Jul-07 22:21
thammadi19-Jul-07 22:21 

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.