|
Context : programming a c/c++ win32-mfc library
How to know whether we are in a console or a windowed app?
Started by moala on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example I could have a windowed app.
Tell you if you are running in a windowed app or not.
|
|
Is there a way to launch a C# application with the following features?
It determines by command-line parameters whether it is a windowed or console app It doesn't show a console when it is asked to be windowed and doesn't show a GUI window when it is ...
Started by Matthew on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
You can always get the command line arguments and check them before... .
Flicker" as it was created in this case...)
One way to do this is to write a Window app that doesn't show a window if the command line arguments indicate it shouldn't.
|
|
I'm working on a C++ Windows application, that runs as a process but not a windowed application (does not have WndProc). It has it's own message loop, which is used to process a quit message, and that's how we safely exit the application from within it...
Started by nbolton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If any kind of window is ever created on the thread you would be far better off creating an....
In the first process, do a GetCurrentThreadId to get a system wide id, which will silently destroy any thread messages .
Requiring a window proc.
|
Ask your Facebook Friends
|
I want to create a very basic 3D modeling tool. The application is supposed to be windowed and will need to respond to mouse click and drag events in the 3D viewport.
I've decided on wxPython for the actual window since I'm fairly familiar with it already...
Started by Soviut on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm not aware of any boxed up modules which provide that functionality, but you can take some inspiration from Blender 3D , which has all of the features you described: its a 3D modeling tool, its written in Python, has an OpenGL viewport which responds... .
|
|
How many play games in windowed mode. I have just tried it out for Arma 2 and it seems o.k, I dont usually play in windowed mode, but it got me to wondering how many do or how many have tried it out...
Started by HR4 on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at overclockers):
My dad takes 10-15 minutes....
I like the option of being able to multi - A must .
More games need borderless windowed modeI always try to play in windowed mode if it's possible.
It, the buttons and bars around the window bug me too much.
|
|
How do I make my AIR app window not resizable? Note, I am not talking about any newly created window, but the actual AIR app's window (WindowedApplication)
Started by Boon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In your.
(); NativeWindowInitOptions.resizable = false;
See here for more info on what you can do with the window options.
|
|
We are working on IE only web application that is run as a pop up window - without any toolbars. Is there a way to invoke IE developer's toolbar besides using a button on the IE toolbar, since it is not visible?
Thanks!
Answer Snippets (Read the full thread at stackoverflow):
It will open the same URL in a non pop-up window, complete with tool bar..
Press CTRL-n while the window is active.
It window.open(page,"modal=yes") ) and ctrl-n doesn't work either.
|
|
Is it possible to get either an 800D or 650D without the windowed side panel?
I was going to go for a 700D specifically to avoid the window, but it seems it's been discontinued.
Started by MonkeyL on
, 16 posts
by 4 people.
Answer Snippets (Read the full thread at hexus):
A large case by another maker....
I just don't love the window ....
A large case by another maker, and I love the case .
Or 650D without the windowed side panel?
I was going to go for a 700D specifically to avoid the window just say ....
|
|
I have a web page which contains a select box. When I open a jQuery Dialog it is displayed partly behind the select box.
How should I approach this problem? Should I hide the select box or does jQuery offer some kind of 'shim' solution. (I have Googled...
Started by paul on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The only thing you can do is hide the select boxes when they're covered up - usually replacing... .
This is a known bug in IE 6 - Windows-native select boxes always appear on top of other elements.
This doesn't have anything to do with jQuery in particular .
|
|
I'm trying to get my WinForm based C# to cooperate with the commandline too, but I'm having difficulty getting it to play nice. For example, I have this code:
[STAThread] static void Main(string[] args) { foreach (string s in args) { System.Windows.Forms...
Started by Malfist on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The only thing left in the exe project.
This includes all win forms, including your main window.
|