The setparent tag has no wiki summary.
0
votes
0answers
35 views
A runned form can not set child to an exist process
I have a question about set a runned form to an exist form process.
I have this code:
[DllImport("user32.dll", SetLastError = true)]
private static extern IntPtr SetParent(IntPtr hWndChild, ...
0
votes
1answer
41 views
WinAPI changing parent of a ListView control
I'm developing an application with tab controls. After clicking on an icon in a tab, a popup window opens and the contents of the tab are moved to the popup window.
What I do is simple - change ...
0
votes
0answers
74 views
Set Parent on WPF windows
Is there a way call to host WPF window in another WPF process without the set parent mechanism.
We are already doing it for Windows applications via window host we would like to know is there another ...
0
votes
1answer
234 views
strange behavior of child windows after setParent
I tried to embedded "Windows Journal" application in my Winform application by using following code. It works and everything looks good. However, when I start using Windows Journal application, which ...
2
votes
0answers
188 views
Embedding powerpoint slide show into a controller
I have a wpf application that embeds powepoint file into a webBrowser control. I managed to implement that functionality using the below sample code. But whenever i run the ppt file the slide show ...
2
votes
0answers
153 views
IE Window not coming to foreground, after it was setParent to windows form
I have a windows form with Tabs, in each tab i have IE browsers embedded in it using SetParent() api.
SetParent((IntPtr)explorer.HWND, parent);
There is another application say notepad is on top ...
0
votes
1answer
142 views
The call is ambiguous: FindWindow(String, String);
I am using this code:
IntPtr hwndf = this.Handle;
IntPtr hwndParent = FindWindow("ProgMan.exe", null);
SetParent(hwndf, hwndParent);
However I get an error. The error says :
The call is ...
3
votes
1answer
261 views
Setting parent of the form to “FindWindow”
I am making an overlay. I have this code here
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using ...
0
votes
0answers
314 views
How we can Locate (SetParent) a FireMonkey App inside a VCL Form
I want lacate a FireMonkey Application shell inside a VCL form.
Comments: I can do this action with non FireMonkey Apps; but I can't do this for FireMonkey Applications.
I use this code for VCL ...
0
votes
1answer
214 views
Embed c++ opengl window in Java window
i am trying to embed a c++ opengl window in a java window. I'm able to send the HWND of the opengl window to the java window through sockets. I'd rather not use JNI for it as i want to have 2 seperate ...
1
vote
1answer
120 views
setParent works, but without minExpanding
I'm a 3D technical artist, using pyqt in Maya, a bit of a novice with pyqt..
I have 2 pyqt UI files created in Designer, and I load them into Maya with uic.loadUiType()
I want to assign the 2nd UI ...
0
votes
0answers
443 views
Move the window of another program and remove the borders
I'm working on a project to embed another program inside a Panel. I got this to work but I can't seem to place the window right inside the form.
Picture:
I'm using MoveWindow and SetWindowLong ...
-3
votes
1answer
989 views
How to set the parent of jDialog in netbeans?
I'm pretty confused about this, since I haven't been working with jdialogs so far...
0
votes
2answers
339 views
Launch WPF executable and set parent?
I have a WPF executable and I want another program to launch it and set this launching program as the parent windows of my WPF executable (The main purpose is that when the launching program is closed ...
0
votes
1answer
584 views
Issue using Show Desktop with SetParent in WPF
I am working on a simple active desktop replacement for a school that is migrating to Windows 7. The idea is to create a window with a few large buttons with pictures on so that young children who ...
1
vote
1answer
596 views
CDialog ShowWindow problem
I have a SDI application. In the application there's a modeless dialog which is used to show some message like communicating with the server during doing work. Question is, when the dialog's parent ...
0
votes
1answer
922 views
Managed method for SetParent() on form
How can I show a form as a child of a window that isn't in my program?
I have a window handle to what should be the parent, but I don't see any managed method for SetParent() on a form. Is there ...
3
votes
2answers
828 views
Repainting problem with MDI child created by SetParent API
I have a legacy app written in C that consists of a main window and several mdi children opened from menu options. To allow new mdi children to be written in C# I have created a C++ COM interop layer ...
0
votes
1answer
176 views
How to set an CustomControl over Outlook Mailgrid?
I'm trying to set my control over the Outlook Mailgrid with SetParent and resize (MoveWindow) and invalidate it if the Mailgrid changed.
This works, but on resize the control starts the flicker.
My ...
7
votes
3answers
2k views
Hosting WPF app inside non-WPF app using WIn32 SetParent()
I have a WPF application that I want to look like it is hosted inside another - non-WPF - application. In real life this non-WPF app is an ActiveX inside Internet Explorer, but for the sake of ...
1
vote
5answers
3k views
Problem positioning window when using SetParent()
I'm trying to set childForm as the child of the main Excel window using the SetParent API through PInvoke:
Form childForm = new MyForm();
IntPtr excelHandle = (IntPtr) excelApplication.Hwnd;
...
3
votes
2answers
1k views
Problems in Showmodal after assigning to Setparent(..)
I created two application MainApps and SubApps, the SubApps has a modal type dialogbox such as login/logout form etc. and its working fine.
After I attach it to the MainApps, the Modal Dialog box ...
0
votes
1answer
339 views
Outlook: How to SetParent(_form.Handle, Outlook.Handle) without Paint issues?
I would like to set the top level window handle of Outlook to be the parent of a Settings form in my add-in (so it appears on top, stays in Outlook, etc).
Using SetParent in other Office apps works ...
0
votes
3answers
1k views
SetParent COM and WPF
I have two screens. one created in vb and the second is in WPF.
I must embed the vb inside the wpf.
Therefore i had an idea to firstly create a new Windows Form's form, and to use win32 API ...
8
votes
3answers
5k views
How to shell to another app and have it appear in a delphi form
In Delphi I've used ShellExecute for years to launch (and optionally wait for) other applications. Now though, I need to have one of these applications appear in one of my Delphi app forms. I've tried ...
