The winforms-interop tag has no wiki summary.
0
votes
1answer
65 views
Preventing an application from ever losing focus [closed]
I have an application that is created by some other party.There are textfields and a submit button.Now I want to create a Winform that will put data in it and click the submit button for a number of ...
0
votes
1answer
294 views
mono mac osx csharp win forms gdi font exception but not using any MS font
We are trying to run a C# Win Form application on Mac OSX that we have rewritten. With the previous version, everything win form related was working, but now we get that on Mac :
Unhandled Exception:
...
0
votes
1answer
56 views
Visual c++, resize a control on mousedown
I made a UserControllibrary that contains several regular Button control.
i would like to resize it on drag.
dragdetction is done via windows messages and it seams to work flawless.
I even managed ...
1
vote
1answer
62 views
Get control from specific position supporting WinForms interop
I have a WPF window which contains also WinForms controls wrapped in a WindowsFormsHost (besides other WPF controls).
I'd like to determine the control (WPF or WinForms) which is displayed under a ...
1
vote
1answer
130 views
Can you make a Winform draw on top of full screen DirectX layer?
I have a native C++ application that is rendering 3D using DirectX.
The app can switch between windowed and fullscreen using IDXGISwapChain::SetFullscreenState().
However some of my UI is in a .Net ...
1
vote
1answer
90 views
WPF WinForms multi-level hybrid nesting
I read on MSDN and other websites (http://msdn.microsoft.com/en-us/library/ms751797.aspx and http://www.abhishekshukla.com/wpf/advanced-wpf-part-5-of-5-interop-in-windows-presentation-foundation/) ...
0
votes
2answers
133 views
Does InteropForms Toolkit 2.1 work with Visual Studio 2012?
I have a VB6 project that I'd like to eventually upgrade to something else. To that end, I want to start using InteropForms Toolkit 2.1, but the page states that the installer only works with VS2008 ...
1
vote
1answer
150 views
WPF User Control in WinFORMS: Project Structuring
SCENARIO
I decided to work on WPF technology for my new application. This application has to be called on Menu click from a WinForms window. So I created a WPF UserControl Library and integrate it to ...
0
votes
1answer
131 views
How do you set fade in/out wpf vb.net for images(using xaml code and vbcode) and add it to winforms as usercontrol
How do you set fade in/out wpf vb.net for images(using xaml code and vbcode) and add it to winforms as usercontrol is it possible
i know how to do that with a rectangle in xaml but i want to add the ...
1
vote
0answers
119 views
ObjectDisposedException when selecting DataGridView cells?
I think I have found a bug in mono, but I have not isolated it completely, I need help to isolate my problem.
To reproduce this error
run csharp HelloWorld.cs
click any cell
modify the contents of ...
0
votes
1answer
124 views
Embedding a WPF Listbox to my WinForms application
How would I embed a WPF list box to my Windows Form application?
The WPF list box will ideally be able to add list box item objects, render the color (by setting the background property to some ...
1
vote
1answer
169 views
Windows installer setup with COM Dll
This is a windows form app that connects with NITGEN FINGKEY (finger print scanner) COM NBioBSPCOMLib.dll. I added their dll as a reference which generated \obj\Debug\Interop.NBioBSPCOMLib.dll. The ...
3
votes
1answer
377 views
Creating a form from a WinForms Control hosted within WPF — Owner is not set
Scenario
I have the following scenario (I've stripped it down to a sample application):
A WPF application with a window (MainWindow) hosting a WinForms UserControl (UserControl1).
The control is ...
0
votes
0answers
150 views
unable to show winform usercontrol being hosted in wpf usercontrol using WindowsFormsHost element
I need to show the response from c++ dll in a winform usercontrol being hosted in wpf usercontrol through using WindowsFormsHost element.
The following is the approach in my MainUsercontrol.xaml
...
2
votes
0answers
503 views
Windows forms MenuStrip DropDown inside a desktop application bar
This is a duplicate of a question I posted at Windows Dev Center. Still awaiting replies, so I thought I would try it here. My apologies if the formatting goes awry.
This is currently being written ...
0
votes
1answer
184 views
WPF: When is a TabItem actually loaded, rendered and completly ready?
In my WPF application, I have a class that serves as a wrapper around QuickTime. It provides all the specific or simplified functionality I need. To function, it needs to create an instance of ...
1
vote
1answer
88 views
Changing border of the main form of the WinForm application [duplicate]
Possible Duplicate:
Resize WinForm, with no border?
I want my WinForm application to NOT have any border. But still I want to be able to move the application using mouse, resize the ...
0
votes
0answers
41 views
Adding page borders using word interop
I'm working on a winform application to creat a word document through word interop. My question is: How can I add page borders to the active document?
Thanks
1
vote
0answers
136 views
How to show progress bar with progress calculation in winform while filling dataset?
Here is my code i want to load a progress bar while dataset filling and data importing in a datagridview.Plz Help me
private void btnLoad_Click(object sender, EventArgs e)
{
string ...
0
votes
1answer
119 views
Closing a winform App when interop word exits
I'm working on a winform application which opens a new word doc each time a button is pressed and closes the older one. The question is: How can I make the winform application quits if the user closes ...
0
votes
1answer
73 views
migrated a windowsforms project from visual studio to monodevelop on linux, no errors. Why application is running very slow?
I migrated a windowsforms project from visual studio to monodevelop on linux.I built in monodevelop, i am getting no errors but my application is running very slow.
Please anyone help me do i need to ...
0
votes
1answer
162 views
Accessing content of Balloon clicked in Google Earth plugin
I have a Google earth plug-in and I have made various Placemarks and the balloon using the Winform library in c#. Now, i can see those Placemarks on the map and when i click the placemark, i can see ...
1
vote
0answers
155 views
winform host rendering issue
I have a winform host in my application that hosts a datagridview.
Everything works well, but when data is loaded into the datagridview, the opacity of window changes and until I move the window ...
1
vote
1answer
397 views
Using a Winform as a View in C++
im trying to use a Winform as a view in my MFC application, but i cant seem to get it to work. It compiles and runs but when starting the view it crashes indicating the control cant be created:
...
3
votes
1answer
636 views
Send Win API paste cmd from background C# app
Goal: write a C# app that runs in the background, listens for the key combination Win-V, and when that occurs, pastes the clipboard contents into the current active window (some arbitrary app). ...
-1
votes
1answer
147 views
onPaint fires too many times
I have a winforms user control which enables users edit workflows upon a panel. A workflow consists of building blocks and wires which are also my usercontrols.
When I migrated the app from a ...
0
votes
0answers
33 views
capture keypress in browser to winform
I am looking for a solution to get the keys pressed into my application on other process when my winform is running background.
for example when I run my application and later typed some keys in ...
0
votes
1answer
122 views
Keep Control.Handle
I have an unmanaged DLL which I am communicating with. There is a function that needs a window handle to draw on. However, after some MDI manipulation, form hiding and showing, the handle changes. ...
0
votes
0answers
231 views
word.Interop c#
Hi I'm new here and I'm hoping someone can advise me on a problem I have with Bookmarks in word. I'm trying to create a report where data is passed from a datagrid to a word template with Bookmarks ...
0
votes
2answers
113 views
C# Mouse PreMove Event?
Can anyone tell me if exist an event MousePreMove with an eventargs which inform me for the cursors movement direction?
I've found a Win API to block any user input but it isn't what I'm looking ...
0
votes
0answers
104 views
Form off Screen - Cursor off Form Area
Following this post
I've thought a "simple" solution.
My goal is to prevent mouse movement when my winForm has reached the allowed coordinates.
For instance, if offScreen is for maxX (right border), ...
2
votes
1answer
919 views
C# COM Interop: Writing to a Cell in an Excel Sheet
I am using Microsoft.Office.Interop.Excel in a winform where I am reading one excel file, processing the data, and outputting a new excel file. However I am having trouble writing to the cells -- ...
0
votes
1answer
391 views
C# COM Interop Creating New Excel Workbook
I am using Microsoft.Office.Interop.Excel in a C# winform but I can't figure out how to create a new Excel workbook. I have tried everything in the documentation but I get nothing but errors. ...
0
votes
2answers
142 views
Unmanaged code in .Net
We have a custom Listview Treegrid in c++ project built on the Codeproject TreeGrid example from here. The code has been modified quite extensively over time.
I have a requirement to port the c++ ...
0
votes
2answers
976 views
How to use Microsoft Excel as a Grid control in C# winforms?
Are there any good samples of using Microsoft Excel as a grid control in a typical winform C# application.
I have come across a lot of threads talking about excel 'like' control or grid controls with ...
0
votes
0answers
304 views
WPF in WinForm using WinForm UI style
I'm considering using a WPF control in my WinForms project. I'm curious to know if it is possible for the WPF control to have the same UI style as the rest of my WinForms controls. As an example, here ...
0
votes
1answer
922 views
Get Thread ID from Window
I need to obtain the Thread Id from a window create in runtime with this code
System.Windows.Window MyWindow = new System.Windows.Window();
MyWindow.Show();
I'm getting the window handler using
...
1
vote
1answer
486 views
Keep Interop Form to Top of VB6 Application
I'm using the InteropFormsToolkit version 2.1. I'm trying to make sure that when a .NET form loads from an event being thrown on the VB6 form, that the .NET form can stay on top. I've tried many ...
1
vote
2answers
156 views
Exception only occuring on DragDrop
I have a WinForms application that makes use of a TaskDialog library that leverages the Vista style dialogs from ComCtl32.dll and for lesser OS's it uses an emulated win form...
But that's not the ...
0
votes
1answer
207 views
Changing host WinForm properties from ViewModel bound to ElementHost
Can anyone suggest approaches that will allow me to change the properties of a host WinForm from a WPF element in an ElementHost?
I have an MVVM application using Prism that's bound to an ...
0
votes
1answer
76 views
Can nonvisual WinForms controls be used from WPF?
Can nonvisual WinForms controls be used from WPF, as long as they are instantiated programmatically? I am comparing two sets of components that are only available for WinForms, yet we want to create ...
3
votes
3answers
19k views
Exporting to .xlsx using Microsoft.Office.Interop.Excel SaveAs Error
I am in the process of writing a module to export a DataTable to Excel using Microsoft.Office.Interop.Excell but before starting in earnest I want to get the very basics working: open file, save as, ...
0
votes
2answers
256 views
How to open a WPF window from a Form and vice versa, and still having the VS debugger debug them?
Usually I open a new window like this:
new Sensors(this).Show();
this.Hide();
But this method doesn't work when I try to open a WPF window from a Form and vice versa, So I did this:
...
0
votes
1answer
597 views
Reading data from an Excel Spreadsheet [duplicate]
Possible Duplicate:
Read data from Excel files
I'm having some trouble reading from an Excel spreadsheet in C#.
I have this code which I read every cell from A to X.
int i = 1;
int ...
0
votes
4answers
213 views
How to detect the ctrl key is pressed twice if the program is minimized or in system tray
How to detect the ctrl key is pressed twice if the program is minimized or in system tray
I am trying to develop a c# program where the main form will be shown to the user when the control key is ...
2
votes
2answers
1k views
Switch to last active application like Alt-Tab
ok, I have found many posts on finding a window by name, etc. What I have not found is how to find and switch the window application focus to last active window. The code I am showing below will ...
1
vote
2answers
499 views
How to embed a win32 Delphi Form in a .NET Winform
We would like to open some Delphi (win32) forms from .NET and embed the Delphi Form in a .NET MDI-form.
If we just call the exported method in our Delphi DLL it is no problem to embed the form, ...
1
vote
1answer
482 views
ComboBox Cue Banner not italic when DropDownStyle is DropDown
We have a WinForms control that is an extended version of ComboBox that supports "cue banners" (aka watermarks) when there is no selection or text. Our control is similar to this implementation making ...
1
vote
3answers
4k views
Unable to load DLL “OraOps10.dll”
I am running into peculiar issue. I am developing a windows based application which connects to Oracle database.
For initial testings, I have created installer and tested on different machines that I ...
0
votes
0answers
255 views
Wpf WindowsFormsHost downscales / shrinks winforms usercontrol
I have a WinForms UserControl in a dll that has it's max size and min size set to 600x500.
when presented in a win forms application then these are the dimensions it takes / all is good.
but when ...

