|
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... .
|
|
I'm looking for a way to play with borderless windowed mode in Mass Effect. Playing in windowed mode at full screen right now leaves the titlebar and borders, and with aerosnap, it shifts the whole window off the screen.
Any help?
Started by Johan Solo on
, 13 posts
by 8 people.
Answer Snippets (Read the full thread at steampowered):
|
|
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.
|
|
Similar to games like L4D and TF2, a windowed mode without borders to emulate a real full screen game without having it full screen.
Started by SnowyOak on
, 14 posts
by 8 people.
Answer Snippets (Read the full thread at tripwireinteractive):
Also, if you have two monitors, borderless....
The downside is that windowed games often run slower.
Borderless window mode allows you to use the other monitor while playing.
|
|
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.
|
|
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.
|