Questions tagged [childwindow]

235 questions
0
votes
1 answer

3-4 child windows in selenium by using getwindowhandles method

I have a parent window, click on a link in parent window --> child window1 opens --> click on a link in child window1 --> child winodw2 opens --> click on a link in child window2 --> child window 3 opens --> click on a link in child window 3 -->…
Cheenu A
  • 7
  • 7
0
votes
1 answer

C++ MDI Selective Child Window Closing

Hi I'm trying to develop a c++ MDI program using purely Win32 API (because I need the program to be portable, i.e. can run even from USB, as much as possible only the .exe file). This MDI program has 2 types (classes) of child windows, the…
jude
  • 51
  • 1
  • 9
0
votes
1 answer

c++ winapi: Move scrollbar after WM_SETTEXT to old position

I have this situation. I have two multiple line edit boxes. First is not editable and second yes. I catch EN_UPDATE message and when appears than I send updated text from second window to first window. So both of window have same text. Also If one…
Jaro Kollár
  • 253
  • 3
  • 15
0
votes
1 answer

c++ win32 embeded 3rd party application

I want to open in my main window 3rd party application, for example office, or adobe reader. Something like this. This example is in windows forms. Embeded application But I can use only pure c++ with winapi. Is it possible? What can I use for it.…
x22
  • 541
  • 2
  • 7
0
votes
1 answer

Jeasyui multiple datagrids in one web site/application

I am attempting create what might be described as dynamic on-demand datagrids for my application to display tables of files and their SHA1 values. The main page already consists of a large datagrid. The new datagrids doesn't show any data. For the…
0
votes
1 answer

Get the Value from ChildWindow to UserControl Page

I need to get the Childwindow value to UserControl in silverlight Application. I tried the below way , I get null value in Usercontrol page. ChildWindow public partial class QE : ChildWindow { ATest ae= new ATest(); public void…
V.V
  • 875
  • 3
  • 25
  • 54
0
votes
0 answers

How can I detect the fact of creation of menu/child window and get it's handle. (for external application)?

I'm sending mouse down signal (for left or right button) to an external application. And if in the result of this action any type of menu or child window is created I want to get it's handle. How can I do something like this? And is it possible to…
Stvad
  • 360
  • 2
  • 17
0
votes
1 answer

Why it cant create the child window?

Can anyone tell me why the child window cannot be created? I'm using the forgers win32api guide but I cannot figure out what is the problem. When the program starts running I have all of the controls, but when I click on the 'new' menuitem I get the…
user4055807
0
votes
1 answer

Putty FindwindowEx "Edit" Childwindows

I am trying to use API FindwindowEx to input an IP address inside the Putty textbox. I know the textbox window is call "Edit", problem is there are three "Edit" Window in the Putty parent window. Is there a way to separate the three "Edit"…
Alenhj
  • 109
  • 1
  • 2
  • 12
0
votes
1 answer

Tooltips Problem with Infragistics UltraToolBar in child window

Currently have an UltraToolBar displaying within a MDI child window currently all the buttons on the bar function but they do not show their tooltips when hovered over. I was wondering if anyone else may have dealt with this problem before and what…
LeSabo
  • 47
  • 1
  • 7
0
votes
1 answer

error in opening child window with window.open c# asp.net

I have a asp.net project and Im trying to link a button to new child window but I am getting this error message "content controls have to be top-level controls in a content page or a nested master page that references a master page." aspx code; …
amadeus
  • 39
  • 2
  • 11
0
votes
2 answers

silverlight child window

Possible Duplicate: silverLight childWindow how can i do that my child window will be always on top? now its being blocked by other windows...
aharon
  • 7,393
  • 10
  • 38
  • 49
0
votes
2 answers

Can an user control be loaded in a child window in Silverlight 3.0?

Can an user control be loaded in a child window in Silverlight 3.0?
Karthik
  • 83
  • 1
  • 7
0
votes
3 answers

Silverlight - preventing ChildWindow movement

Anyone got any neat solutions to prevent a Silverlight ChildWindow being moved? thanks, Mark
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
0
votes
2 answers

c++ not able to open child window after closing it

I'm having some problems with my child window. I use a button from the AppendMenu to open it, but after I close the child window, I can't open it anymore. code: WNDCLASSEX chwincl; chwincl.hInstance = hThisInstance; chwincl.lpszClassName =…
Tom Stuart
  • 85
  • 2
  • 9