Click here to Skip to main content
15,917,645 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Sternocera27-Oct-09 3:29
Sternocera27-Oct-09 3:29 
QuestionRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
David Crow27-Oct-09 3:34
David Crow27-Oct-09 3:34 
AnswerRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Sternocera27-Oct-09 3:37
Sternocera27-Oct-09 3:37 
AnswerRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Michael Dunn27-Oct-09 14:38
sitebuilderMichael Dunn27-Oct-09 14:38 
GeneralRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Sternocera27-Oct-09 23:48
Sternocera27-Oct-09 23:48 
AnswerRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Greg Prosch30-Oct-09 12:30
Greg Prosch30-Oct-09 12:30 
GeneralRe: Problem with icon style CListCtrl on Vista, but not on XP Pin
Sternocera30-Oct-09 12:32
Sternocera30-Oct-09 12:32 
QuestionCalling WPF pages in VC++ Pin
kDevloper27-Oct-09 2:50
kDevloper27-Oct-09 2:50 
Hi,

I am working on an application, which calls a WPF page in MFC exe and loads it too, but the backgound for the WPF is coming black.
here is code snippet
Declaration
using namespace System;
using namespace System::Windows;
using namespace System::Windows::Controls;
using namespace System::Windows::Media;

ref class Globals
{
public:
static System::Windows::Interop::HwndSource^ gHwndSource;
static WpfApplication1::Window1^ gwcContainer;
};
i have added in oninitdialog,

System::Windows::Interop::HwndSourceParameters^ sourceParams = gcnew System::Windows::Interop::HwndSourceParameters("MyWindowName");
sourceParams->PositionX = 20;
sourceParams->PositionY = 30;
sourceParams->ParentWindow = System::IntPtr(this->GetSafeHwnd());
sourceParams->WindowStyle = WS_VISIBLE | WS_CHILD;
System::Windows::Interop::HwndSource^ source = gcnew System::Windows::Interop::HwndSource(*sourceParams);

source->SizeToContent = System::Windows::SizeToContent::WidthAndHeight;

Globals::gwcContainer = gcnew WpfApplication1::Window1();

FrameworkElement^ myPage = Globals::gwcContainer;
source->RootVisual = myPage;

I dont want the black color around.

Any help is highly appriciated.

Thanks&Regards,
KDevloper
QuestionIcmpSendEcho error: 1231 Pin
Manmohan2927-Oct-09 2:25
Manmohan2927-Oct-09 2:25 
AnswerRe: IcmpSendEcho error: 1231 Pin
Sternocera27-Oct-09 3:06
Sternocera27-Oct-09 3:06 
QuestionRe: IcmpSendEcho error: 1231 Pin
David Crow27-Oct-09 3:19
David Crow27-Oct-09 3:19 
AnswerRe: IcmpSendEcho error: 1231 Pin
Manmohan2927-Oct-09 3:30
Manmohan2927-Oct-09 3:30 
QuestionRe: IcmpSendEcho error: 1231 Pin
David Crow27-Oct-09 3:40
David Crow27-Oct-09 3:40 
AnswerRe: IcmpSendEcho error: 1231 Pin
Manmohan2927-Oct-09 4:44
Manmohan2927-Oct-09 4:44 
GeneralRe: IcmpSendEcho error: 1231 Pin
David Crow27-Oct-09 4:47
David Crow27-Oct-09 4:47 
QuestionHow to plug/unplug USB serial port problematically? Pin
pallaka27-Oct-09 2:10
pallaka27-Oct-09 2:10 
QuestionRe: How to plug/unplug USB serial port problematically? Pin
Roger Stoltz27-Oct-09 3:56
Roger Stoltz27-Oct-09 3:56 
QuestionWho calls InitInstance() Pin
Hari_1627-Oct-09 2:07
Hari_1627-Oct-09 2:07 
AnswerRe: Who calls InitInstance() Pin
Cedric Moonen27-Oct-09 2:10
Cedric Moonen27-Oct-09 2:10 
GeneralRe: Who calls InitInstance() Pin
Hari_1627-Oct-09 2:32
Hari_1627-Oct-09 2:32 
GeneralRe: Who calls InitInstance() Pin
Cedric Moonen27-Oct-09 2:41
Cedric Moonen27-Oct-09 2:41 
AnswerRe: Who calls InitInstance() Pin
CPallini27-Oct-09 2:49
mveCPallini27-Oct-09 2:49 
JokeRe: Who calls InitInstance() Pin
Roger Stoltz27-Oct-09 4:10
Roger Stoltz27-Oct-09 4:10 
GeneralRe: Who calls InitInstance() Pin
CPallini27-Oct-09 8:28
mveCPallini27-Oct-09 8:28 
Question[urgent]IRP_MJ_QUERY_INFORMATION,why it doesn't work??? [modified] Pin
ProgC_Feng27-Oct-09 1:15
ProgC_Feng27-Oct-09 1:15 

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.