Tagged Questions

0
votes
1answer
40 views

How to hook hotkeys in winforms or WPF from a .NET 2.0 assembly?

I have assembly that targets .NET 2.0 to be compatible with a broad range of applications. When used with a desktop application (either winforms or WPF) I want to hook certain hotkeys and popup …
0
votes
1answer
27 views

Hosting Windows Forms controls in native windows, window class=”Static”

I need to provide a Windows Forms control to a native application (Visual Studio). So I create a control and provide its handle. Then, when I check the native window using Spy++, I see that my …
0
votes
1answer
36 views

MFC Active-X control in a winforms window on Vista 64bit; “Class not registered Exception”

In an attempt to try to confirm another SO posters suggestion for key handling in an ActiveX control hosted on a winforms window, I tried making a bare-bones MFC ActiveX control, then placing it on a …
1
vote
2answers
32 views

Cannot drag activities from WPF ListBox into WorkflowView

Hello, I'm trying to host the Workflow Designer in a WPF application. The WorkflowView control is hosted under a WindowsFormsHost control. I've managed to load workflows onto the designer which is …
0
votes
2answers
60 views

Can I pass data from Winforms to WPF Control?

I have a winforms app but I would like to introduce a WPF user control into the app as a taster for further WPF implementation. This control needs to receive from its Host a single piece of …
0
votes
3answers
37 views

WPF App - How to obtain a reference to the corresponding System.Windows.Forms.Form?

In my WPF Project I have a WPF Window. I want to use Sticky Windows Solution in my WPF Project. The library wants only one parameter: the System.Windows.Forms.Form object. Does it exist any way to …
0
votes
1answer
153 views

Adding a custom context menu item to Windows Form title bar

I found a thread on MSDN that shows how to add an item to the context menu of a winform title bar. Unfortunately it does not show how to register an event with the custom menu item and I have been …
0
votes
1answer
45 views

Iterop Forms Toolkit validation and focus events

I have an existing VB6 application which I am slowly moving its code to DotNet, in a lot of instances this means having to use DotNet usercontrols and hosting them in the VB6 form using the Interop …
1
vote
2answers
146 views

how to play flash in WPF application

Hi. I have a WPF application and I want to play flash movies in it. I used the WInforms active X control as described in this link It worked partially, but now whenever I run the application it …
0
votes
7answers
490 views

How to trap the keyboard strokes on a c# win forms application (CTRl + alt +Del)

Is there Any way to handle the crtl + Alt + Del Key combination. Take for instance in a quiz application (Win Forms ), the user should not be able to switch to other windows till the test is over. …
0
votes
1answer
123 views

Drag-and-drop modifies read-only WinForm container (plus other peculiarities of drag-and-drop)

Sampling drag-and-drop between WinForm RichTextBoxes within one application and between them and external applications revealed two interesting observations (item 1 certainly appears to be a bug; in a …
0
votes
1answer
215 views

Disable or Hide Save/Print Preview Dialog popups

I'm working with an ActiveX control placed on a winform. I'd when the user tries to save or print, it will always show a dialog box first; I'd like to either immediately close the dialog box or keep …
2
votes
2answers
225 views

Can I load more than one COMCTL32.dll into a process?

I'm developing an ActiveX control which (these days) is used mostly in WinForms apps. The ActiveX control has a 'property page' dialog, which can be shown programmatically using the ShowPropertyPages …
1
vote
2answers
401 views

C# Winforms-WPF interop

Currently I have a Winforms app which relies on transpareny effects. However this is proving to be an absolute pain in the preverial behind! Winforms as Im learning doesn't deal with transparency …
0
votes
1answer
380 views

Dynamic Application-level resources are not dynamic when hosted in ElementHost

I'm hosting a WPF UserControl in a WinForms container. Now, I want to be able to theme/skin the UserControl. To do this, I've got several resource dictionaries that define the "skins." When my app …