In computer science a window is a graphical interface to let a user interact with a program. Questions regarding Microsoft Windows should use the "Windows" tag.

learn more… | top users | synonyms

0
votes
1answer
6 views

Open “parent.window.location.href” in new window (in Highcharts)?

My Highchart graphic is being displayed in an iFrame. Now, I would like to open the link to the "definition" of the chart into a new window/new tab. This version here: credits: { text: ...
-2
votes
0answers
29 views

Creating Help function for C# .net Application [closed]

I want to create help for my application page wise (or context-aware) , like windows help function can anyone send me link to articles regarding this , i can't find anything or any other help in this ...
0
votes
0answers
16 views

What is the meaning of language-independent scripting

I'm very curious to know What does it mean by language-independent scripting ? and why people go for it? Thanks
0
votes
1answer
43 views

c++ creating a window in a new thread

I have a basic window program, the problem is when i try to create a window in a new thread after the message loop has already started the window displays for a second and disappears. does anyone no ...
0
votes
0answers
10 views

Dock a Window in AvalonDock

I have a chat client which is a AvalonDock layoutanchorable window in a WPF MainWindow.xaml. From the chat client, users can start up a private chat which opens up a separate window. The private chat ...
0
votes
1answer
30 views

How to open a web page itno another site without iframe?

I have a web page that I want to open in other sites, but I don't want that my web page will not be opened in an iframe, because once the iframe is opened, I can not resize it from the page in the ...
0
votes
0answers
12 views

Open a new page from an iFrame after a form is submitted

We have a mail service that's setup and is located on a subdomain. For the login, we have a login page that's been set up for us, in the subdomain, so I have no access to it. We want the login to be ...
1
vote
1answer
21 views

user32 MoveWindow doesnt work in C#, windows 7, console application

I am not a windows developer at all (i do AS3 stuff), but i wrote this C# console application in visual c# 2010 in order to test something. The app should take an open window and resize and reposition ...
1
vote
1answer
34 views

Can Java display a dialog without changing the active window?

I'd like to display a modal (progress) dialog above a Frame, even if that Frame isn't the active window. However, displaying a dialog causes it or its owner to become the active window. Is there a ...
1
vote
2answers
20 views

Javascript/ExtendScript/ScriptUI temporary window message

This should be relatively simple. While writing a script for Adobe InDesign CS6, I'd like to have a window/palette appear briefly—say, about two seconds— to notify the user that the end ...
0
votes
0answers
10 views

How to close browser window in firefox

How can I close window in mozilla firefox version 21.0. I tried below code for closing it wihtout warning message. But unfortunately it is not working for Firefox. window.open('', '_self', ''); ...
0
votes
2answers
21 views

SmartGWT TextItem - focusInItem() method not working?

I have a search form that opens in a com.smartgwt.client.widgets.Window.Window(). In it, I have a VLayout, in which I have a search form: DynamicForm search = new DynamicForm(); // setMargin, ...
0
votes
0answers
37 views

WPF: DataContext in window style isn't working

I've been doing a custom Window Style, but I'm having a problem setting DataContext on the style... Actually, I think that the DataContext has nothing wrong, but I might be trying to do this using ...
0
votes
1answer
13 views

GXT Window is there a onblur event

I am using GXT window to create a popup edit window for editing a form field. As I edit the text field, the form field also changes. But I want to capture when the user has clicked outside of the ...
1
vote
1answer
53 views

Making the console window bigger in C

I am trying to write a table from scratch in C that has at least 20 rows, and the base console window size goes onto a second line so I need to change this. This is for an assignment (the reisizing is ...
-1
votes
1answer
50 views

C# - How I can get string from control in other application? [closed]

How I can get string from control in other application when I knew window handle and control class name ?
0
votes
2answers
24 views

Anything like window.load that can be used after ajax call?

I came across this complication when loading content through ajax. I usually use window.load to check if everything is loaded up and only than I display content, there is loading animation before. ...
0
votes
1answer
15 views

ExtJs 3.4 Form in window don't wont reopen

I've got problem with reopen form in window In tool bar I've got button after click window with form show ups everything is ok but when i click cancle and try to reopen then only window shows ...
0
votes
1answer
22 views

Checking window width to target smaller browsers doesn't work on page load

I'm attempting to target smaller browser sizes (i.e. mobile devices) using jQuery. Currently I do this with the following code: jQuery(document).ready(function ($){ function isMobile(){ ...
0
votes
1answer
15 views

jquery window resize breaks after navigation is clicked

For smaller viewports I built an icon which opens on click and shows the navigation. On larger viewports the icon should not be visible. Unfortunately the button only appears/disappears on resizing ...
1
vote
0answers
16 views

SmartGWT close/hide all windows

How can I close/hide/iterate through all SmartGWT or GWT Windows? For example: Set<Window> allWindow = SecretGWTClass.getAllWindows(); for(Window w : allWindow) w.hide();
0
votes
1answer
32 views

Hide window in MFC C++ [duplicate]

I have an MFC C++ app, I need my app to run in background, to do run some functions. So I want to disable the dialog window .In other words I am trying to hide/make it invisible to the user. How ...
-2
votes
0answers
4 views

Folder creating erroe in WINDOWS & ULTIMATE [closed]

I am unable to CREATE NEW FOLDER in WINDOWS 7 ULTIMATE neither in any drive nor on desktop.
0
votes
6answers
87 views

Infinite while loop with Form application C#

I need to run an infinite while loop when a form application starts. A form starts like this public Form1() { InitializeComponent(); } Now I want to run another function which will have an ...
0
votes
2answers
39 views

Error in extracting line using bat file

@echo off for /f "tokens=* delims= " %%f in (myfile) do ( set line=%%f call :processToken ) goto :eof :processToken for /f "tokens=1* delims=/" %%a in (%line%) do ( echo Got one token: ...
0
votes
0answers
12 views

Using several bmp paletteat the same time

I'm writing windows system to my OS (over VGA mode 13h), and I would like to use BMP files for all kind of purposes (background, mouse cursor image, basic window image...). The problem is that when I ...
2
votes
1answer
27 views

Creating a sheet that doesn't block interaction with other windows

As far as I know, sheets modal for a certain window without "freezing" the app can only be NSSavePanels, NSOpenPanels, and NSAlerts windows (since NSAlert isn't a NSWindow or NSPanel subclass but it ...
1
vote
1answer
44 views

JDialog and disable main window

I use JDialog in my project. When I click button in main frame JDialog frame appears and main window becomes inactive. Is there any possibility to remain main window active?
0
votes
2answers
30 views

getting a window name if it has quotes inside C++

this is my first post here, so please don't jump on me if I make any mistakes. Okay, so what I am trying to do is the following: windowtitle = FindWindow(NULL, "blah blah "C:\path\name\here" "); ...
0
votes
1answer
39 views

Wait for window.onload event using Selenium Webdriver & C#

I need a solution how to wait until the web page is fully loaded. And exactly after that, waiting no longer, I need to perform actions with a web page: get URL of loaded page, check cookie, click ...
0
votes
1answer
14 views

using replaceWith on window title depending on browser

I have some neat code that displays one <title> for a couple seconds after loading, then replaces it with a different <title>. The effect we are trying to achieve doesn't work in some ...
0
votes
0answers
11 views

Lightbox2 in iframe. Open photo in Parent Window

I am using Lightbox2 (http://lokeshdhakar.com/projects/lightbox2) in an iFrame. I wonder if a form of the entire image appears on page where the iframe. (Parent Window) Can anyone help? Thanks.
1
vote
1answer
25 views

active modal widget Qt

I need to know in my app if a modal window is opened when I click on a button. So, I'm searching for a method which permits to know if a modal window is opened in my application or no, and which ...
1
vote
1answer
23 views

Dock window in VB6

How to dock form to another form (like VB6's Immediate, Debug forms...)? I've tried to do it with a MDI Form and a child form, but I couldn't dock child form to MDI parent. Also I've found some ...
0
votes
0answers
32 views

os.remove can't delete some file in Window but It's work on Ubuntu [closed]

OS.remove can't delete file in path in window when file name is not English language EX. File.txt can delete but 日本国.txt can't delete but in Ubuntu it's can delete all of any language.txt file ...
0
votes
0answers
16 views

link two window through a button

<Window x:Class="ASTHENIA.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" ...
1
vote
2answers
38 views

c# show hidden window of a proccess [duplicate]

There is an option in my application to hide the window - form.hide(), and to put an notifyicon in the system tray, and when you click the notifyicon there will be a form.show(). If someone will try ...
0
votes
1answer
22 views

Changing the title bar on a Python window

I'm looking to edit the title bar in a python window. I have compiled multiple different python widgets into one window using a main.py to get the ball rolling. I feel like I should add a piece of ...
0
votes
1answer
33 views

How to open a window from the command line within a python script?

I am working on a python script to analyze astronomy images and I am trying to open a DS9 window within a python script (DS9 is a utility that allows images to be interactively viewed and analyzed). ...
0
votes
0answers
11 views

Disable animated search field for mobile view

I'm trying to disable a label of my animated search field. It seems to work, except for a glitch I get when I follow these steps: Open the fiddle, http://jsfiddle.net/ChristoSteyn/cUCzk/ click on ...
0
votes
1answer
22 views

Custom ScriptUI buttons that will close the window

For those knowledgeable in ExtendScript & InDesign, I have a ScriptUI question: How can I have a window close properly after the user picks one button or the other when the buttons are custom ...
0
votes
1answer
17 views

Java: “Screenshot” of a minimized window?

I'm currently writing a script that works inside of a game client, and I want to add screenshot capability to my script. I'm using Robot now, but I would like to be able to take a screenshot of the ...
1
vote
1answer
20 views

Is Window.Close() synchronous in WPF?

As the title states, I was wondering if the the Close() method on a window is synchronous or not. I browsed msdn but was unable to find an answer. Thanks in advance for your replies
0
votes
1answer
46 views

Running python interpreter or language X in Emacs

Every time I start the interpreter for a programming language (lets consider python in this case) emacs opens the interpreter in the window which is not current. Note that I have two windows open, so ...
0
votes
0answers
25 views

Check if a WPF window was rendered

WPF windows raise a ContentRendered event if they are rendered. However how can I check if an existing window object already has been rendered? I could not find a IsContentRendered property. ...
0
votes
0answers
9 views

Is ubigraph capable of node selection and custom context sensitive click menus?

I want to write custom callbacks and context menus for selecting individual nodes (vertices) in ubigraph. The way I see it, the user interfacing with the server will almost always want to be able to ...
-1
votes
0answers
9 views

Is it possible to run a compiled program and modify that program's UI? [closed]

I know this sounds crazy, but I have a fully compiled program that I do not want to spend the time trying to reverse engineer. I understand that it's closed source, but I want to add a set of buttons ...
0
votes
0answers
9 views

jQuery $(window).width() issues on larger displays

Having a slight issue. If I view a current build on my laptop, a 13inch screen, the current code works perfectly. However, if I view it on a larger screen, it's not offsetting as I want. ...
0
votes
0answers
26 views

JavaScript window.open In the Chrome browser, simply open a single new window

JavaScript window.open('www.google.com','NewWindow') The first in the Chrome browser will pop up a Tab perform a new window But in the second Tab perform another new window will pop up I need is ...
0
votes
2answers
19 views

Swing ouput window like Netbeans

I'm making a swing application that need the output window like Netbeans or console like Eclipse. I can add the console using Eclipse RCP, but don't know how to add output window like Netbeans. ...

1 2 3 4 5 68