Questions tagged [childwindow]

235 questions
0
votes
1 answer

C++ MFC MDI change child window variables on creation

I have an MDI application where a dialog is called when the OnFileNew() function (processed by the theApp object) is called. This dialog allows the user to set values to some variables that then need to be passed on to the CChildFrame object that…
TChapman500
  • 139
  • 13
0
votes
1 answer

How can I create a Delphi child window that has a main menu?

I am working with a Delphi form that contains a TMainMenu. In a particular situation I want to show this form parented and client-aligned inside another form. This works fine but the main menu of the parented form does not appear. I see a comment in…
Brian Frost
  • 13,334
  • 11
  • 80
  • 154
0
votes
1 answer

data of child window does not refresh while it is open mvvm in silverlight

I have a child window and there are a radgrid view and textboxes which show the radgridview items as I select a row of gridview!and i'm using mvvm pattern. when I open the child window it automatically show the data of last row as selected row in…
Zahra
  • 1
  • 3
0
votes
1 answer

minimize vb.net forms to mdiparent bottom eg. adobe photoshop

vb.net 2008 I have 1 mdiparent and many child forms. on clicking minimize button of child form it should minimize and display at the botton of mdiparent and not in taskbar. like in adobe photoshop. Is it possible to do? if yes how?
aj1
  • 29
  • 1
  • 8
0
votes
1 answer

Binding data to a RadGridView on a child window in Silverlight

I can bind data to Telerik's RadGridView on xaml-pages, but I can't bind the data to a RadGridView on child window. I already have a list containing the data, but when I open the popup, the data of list needs to be bound to the grid. Any advice on…
0
votes
1 answer

Does the Event "Close childWindow" exists?

I have a question : Does the Event "close childWindow" exists, when we click on the mark at the top right of childwindow? Because I want to cancel all changes that can be done if I close the ChildWindow this way. I can close the window with a…
provençal le breton
  • 1,428
  • 4
  • 26
  • 43
0
votes
1 answer

Silverlight child window getting cropped from edges when resizing browser window

I am using ordinary Silverlight ChildWindow in my application. When resizing the browser window, in particular when making its width smaller than that of the child window, the edges of the child window get cropped, so that it is impossible to close…
Narek Malkhasyan
  • 1,332
  • 1
  • 12
  • 22
0
votes
1 answer

Page in Content of Child Window

I am a new bee to Silverlight and its controls, at present I am doing experiments with Child windows so at present this is my scenario, I have created a child window by adding a child window item my project, to use it I have created an object like…
Raghurocks
  • 917
  • 7
  • 17
0
votes
1 answer

Silverlight 2 ChildWindow - how to change the manner of popping up?

I like ChildWindow in Silverlight 3 but I don't like the manner it appears on the screen. It appears too quick and even irritates the eyes. Maybe does someone know how to change this manner, make it softer and maybe slower? Thanks
mimic
  • 4,897
  • 7
  • 54
  • 93
0
votes
1 answer

Child window not sending variable value back in IE

I have a button which opens up a child window with a list of Images which the user can click which sends values in parameters to a function where it put the parameters in an array value to variable that has been created in the parent window and then…
Luke Turnbull
  • 129
  • 3
  • 11
0
votes
1 answer

Add Script Section To Child Window Javascript

I am trying to make a window that pops up, displays a table of addresses, and lets the user click one of the address and send that information back to the parent. My function currently looks like (the else section is where I am having trouble): …
Mike
  • 1,718
  • 3
  • 30
  • 58
0
votes
0 answers

click on overlapping child windows

I have an unusual problem for which I can't find a solution via searches. I have a form-type screen consisting of text, checkboxes, buttons, etc. I need to temporarily pop up a virtual keyboard for input (touchscreen). This works fine, except that,…
Frank
  • 1
0
votes
1 answer

Closing child window when parent window closes in Jquery

I have a window in which on a button click I open a window. Now I want the child window to close when my parent window is closed. I wrote unload function for the parent window but then the line of code which I try to access the child window throws…
Niranjan
  • 813
  • 2
  • 12
  • 33
0
votes
1 answer

DatePicker doesn't display on top of ChildWindow in Wp7

i have developed child window control it has datepicker option .When i click the datepicker it has opened the date picker screen behind the Childwindow control so i am unable to select the date . How can i display the date screen on my Child Window…
0
votes
1 answer

Create child window in WM_CREATE, relevance of same thread?

A typical pattern is to create a child window in the message callback (WndProc) at message WM_CREATE: LRESULT APIENTRY WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { ... switch (message) { case WM_CREATE: .... hwndChild[i] =…
Horst Walter
  • 13,663
  • 32
  • 126
  • 228
1 2 3
15
16