Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
164 views

Reparenting in Mercurial: how does one bring two independent svn clones back together?

Here's the situation: developer Foo created a hg repo from our svn repo. Foo's hg repo was only a shallow clone of the trunk in svn (no svn branches, tags, etc. and the history was incomplete [about ...
2
votes
3answers
465 views

Create window as child in third party application

I'm trying to get my C# form to be parented correctly in a third party app, I have the handle to the control that I would like my form parented to but just can't seem to get it to work. I would ...
2
votes
1answer
279 views

How do I host an application window as a child of a window belonging to another process?

I would like to host an application window from a process "A" into the main window of a process "B", just as if "A"'s window were a MDI child window. Is this possible in Windows? Or are there some ...
1
vote
1answer
80 views

How to prevent reparented window blocking X session?

I reparent an external window into Qt application (XReparentWindow, XMapRaised, XMoveResizeWindow). It works, but when I click to that reparented window the system locks (no mouse or keyboard events), ...
1
vote
1answer
143 views

process re-parenting: controlling who is the new parent

Is the new parent always "init" or is there some way to control who gets to be the new parent? Wikipedia seems indicates that it's always "init". I really hope that this is not the case. I have tried ...
1
vote
2answers
384 views

Adding a project reference in TFS redirects to a previously branched version of the project♦

I have a TFS structure that looks something like this: $ -MainSoftwareBranch -Dev -Main -Enterprise ...
1
vote
1answer
116 views

Sharepoint re-parenting

Is it possible to re-parent a subsite in Sharepoint from 1 site collection to another?
1
vote
1answer
705 views

Java/SWT: How to receive mouse events from an embedded window

I am embedding a windows application into my SWT application using 'reparenting'. That part works ok. I would now like to hook my SWT app into the message queue for the embedded app to receive mouse ...
0
votes
1answer
514 views

Handling messages for window from other process

I'm developing a C# WPF application that reparents the main window of another application using a call to Win32 SetParent(). The handle to this out-of-process child window is wrapped by a class named ...