Questions tagged [childwindow]

235 questions
0
votes
1 answer

Silverlight : Issue with Childwindow and navigation framework

could someone help me with childwindow and Navigation? I created a childwindow from code and set its content as ChildWindow CW = new ChildWindow(); CW.Content = new MainPageMenu(param1); Here "MainPageMenu" itself is a Silverlight Page with a…
samir_SL
  • 1
  • 1
0
votes
1 answer

Childwindow + Custom Textbox binding problems

Greetings everyone, I'm having a very strange problem. I've created a DateTextBox which automaticly adds the dashes when typing a Date or when you typ something like 1-1-1986 it automaticly makes it 01-01-1986 (while typing). In this control I…
Theun Arbeider
  • 5,259
  • 11
  • 45
  • 68
0
votes
1 answer

Silverlight & C# - Open a childwindow only if a time frame passes

Hopefully the title makes sense but I will discribe my issue. I am using a childwindow in Silverlight to display a Processing message and rotating image when the UI is doing some work. Once a Completed Event is called, the window then closes.…
0
votes
1 answer

Silverlight Invalid attribute value for property Visibility

In current project, i have to create a tab based navigation. Every time we click a module, a new TabControl opens if not alteady created, else focus. To achieve this i use a code like this: HyperlinkButton link = (sender as HyperlinkButton); string…
adaoss
  • 15
  • 1
  • 5
0
votes
0 answers

Having an issue appending table to child window (JavaScript)

I am having some trouble with accessing elements on a child window. The specific error I am receiving is: SCRIPT5007: Unable to get property 'appendChild' of undefined or null reference. First I open a new window and retrieve a print-friendly…
jrl98
  • 23
  • 3
0
votes
2 answers

How i can close ChildWindow in silverlight from page?

I have page.xaml and childwindow. How i can close the childwindow from page.xaml. Example by click on button in page.xaml. How i can get this childWindow from code?
isxaker
  • 8,446
  • 12
  • 60
  • 87
0
votes
1 answer

Trying to call the child window function from parent window after window.open

I am trying to invoke the below function to create a new window pop up. Whenver, I am invoking that it is crashing the parent window in chrome. What I have observed: Till the openDoctorDetails function is executed, the child window is not loaded at…
krishth
  • 83
  • 1
  • 1
  • 9
0
votes
2 answers

VBA / Internet Explorer / Javascript: How to open a javascript window from same internet explorer?

I am working on intranet. Using VBA I have to close some date from a list. I have selected the dates. Then clicked on a link to close (not button) which triggers a javascript. Selected all…
0
votes
1 answer

Extended WPF Toolkit - ChildWindow do not allow focus parent

I have a ChildWindow that overlays a view that has inputs and buttons. If the ChildWindow is opened i am not able to click any of the buttons which is good. But with TAB i am able to switch the focus and select one of the buttons and hit enter. Any…
Matteo
  • 232
  • 3
  • 17
0
votes
1 answer

MFC Add thin border to WS_CHILD window

How can I add border to an embedded child window with (WS_CHILD | DS_CONTROL) style hosed by a CFormView? I have tried to add border in Dialog Editor by selecting Thin border type but it doesn't work. I also tried SetWindowLong and ModifyStyle.…
guan boshen
  • 724
  • 7
  • 15
0
votes
2 answers

EnumChildWindows get child windows in different order what I see in actual Window

I need to list all child controls of a Windows, but in exacly the same order that appear in the window. I have this code; public static List GetWindowControls(IntPtr hWnd) { List result = new List(); …
jstuardo
  • 3,901
  • 14
  • 61
  • 136
0
votes
2 answers

Close Child Java windows using C#

I have a java application running on Windows (javaw.exe) and I would like to close the child windows through a C# application. I can see the child windows through task manager under the Applications tab but when I right-click on the child windows…
0
votes
0 answers

how to fix child window on browser scroll without hard coded javascript?

I have Ext Js application. Left side I have menu and right side Dashboard(portal style). On menu click I open every new window(part) on dashboard. Lest say every new window(part) is new module in my application so I have grids, panels, navigation…
gogagubi
  • 965
  • 1
  • 15
  • 36
0
votes
1 answer

Create Child window on windows API

I'm trying to add a child window to my main window, but the function CreatWindow is throwing an exception saying that can't access address at 0x00000, but it works fine when I try to create a button, I tracked the variables and none of them are…
user2542813
  • 323
  • 3
  • 12
0
votes
1 answer

Selenium fails to identify Frame element randomly [2 out of 5 times]

w.switchTo().defaultContent(); String parwind = w.getWindowHandle(); Set windows = w.getWindowHandles(); System.out.println(windows.size()); for(String handle : windows) { …
Cheenu A
  • 7
  • 7