1
vote
2answers
35 views
How to run function of parent window when child window closes?
I am calling the javascript window.open() function to load another url in a pop up. Once the users is finished it takes them to the last page that has a link that says close window …
0
votes
5answers
47 views
Win32 CreateWindow() call hangs in child thread?
I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a par …
0
votes
2answers
39 views
Open Links in Multiple Browser Windows / Tabs
Hi,
I have a requirement to click on multiple links (selecting them) and then click a button that will open all selected links in new windows or tabs. This will of course be depen …
3
votes
2answers
29 views
VS2008 How I can get rid of the “Error List” window
Hello,
I don't really like the Error list window, I prefer to use the Output window.
The only way I can hide the Error list window is to make it floating and to put it as a small …
1
vote
4answers
113 views
JPanels, JFrames, and Windows, Oh my!
Simply stated, I am trying to make a game I am working on full-screen.
I have the following code I am trying to use:
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphics …
0
votes
0answers
20 views
Win7 ‘Next Desktop Background’
Does anybody has an idea how to invoke 'Next Desktop Background' command in Windows 7. This is when you have a slide show desktop wallpaper and this command in on the context menu …
1
vote
2answers
56 views
How to close iphone Safari window before launching native app?
Easy enough to register a custom protocol handler so that a native app gets launched by a URL in Safari. However, doing this leaves the current browser window open. If the app th …
1
vote
3answers
39 views
WPF hot key firing without modifier
I have a WPF window, which contains a button called Cancel. Under ordinary circumstances I want a user to be able to press Alt+C to cancel their actions and close the program. As …
0
votes
1answer
33 views
MooTools: domready vs load
With which will function(){} fire first?
A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
0
votes
2answers
87 views
How do I destroy a Window correctly?
I'm programming a little game, and I set the lpfnWndProc to DefWindowProc
and after that, I made a loop in that way:
MSG lastMessage;
while (true)
{
if (PeekMessage(
&a …
0
votes
2answers
49 views
get current focused window id using objective c
hi developers, how can i get current focused window id using objective c, the return value should be an int, help is highly appreciated! I just need to get the following line worki …
0
votes
4answers
43 views
no resizable in popup window dont work in firefox
i try to open new window with javascript window.open func,
and add 'resizable = no' parameter,
in ie its work , but in firefox it allow to resize
how can i block it in firefox ? …
0
votes
2answers
39 views
IE8 is suddenly refreshing entire window on page change/refresh
After my Vista 64 was updated via Windows Update to include upgrades to .NET, graphics, etc. (basically, pieces of Windows 7, I believe) Internet Explorer 8 has been doing somethin …
0
votes
3answers
92 views
Problem accessing global javascript variables
My application has something like the following structure
window.object1;
window.object2;
$(document).ready(function() {
window.object1 = new type1object();
});
function type1 …
0
votes
1answer
39 views
Possible to open iPhone Safari and target a specific window?
I have an app that uses OAuth to authenticate, which means the user must be directed to the website to authorize the application. I prefer to make it obvious to the user that they …
