|
Can I use TDD for gui application? How to do it.
Started by yesraaj on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The Gui on StackOverflow.
Extensions.aspx
The answer which has evolved over the last few years is, you don't apply TDD to the GUI, you design the GUI in such as way that there's a layer just underneath you can develop with TDD.
|
|
Hi, I have a console application that I launch from a GUI applicaiton. The console application takes parameters for filenames to parse and process. Currently I am able to capture its output and display it in the GUI application but I would like to be ...
Started by yozey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Check this out to see that you need to create both pipes (by calling the WINAPI twice) as reiterated by Nat but what about the inheritable handles - not ... .
Just write to that pipe using WriteFile().
Along with output pipeline there's an input pipeline.
|
|
Is there any tool to explore properties of GUI controls (such as "Text" or "Location") from a running .NET application?
Started by Zhenya on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
AutoIt scripts can....
Seemed to work pretty well for me.
It comes with a tool which allows you to inspect all the elements of a GUI.
With it, you can inspect any .Net GUI and view the properties of its controls of thing.
Hawkeye can do this.
|
Ask your Facebook Friends
|
I'd like to create an application using C# that...:
Can be run as a Windows application, with a GUI (it'll indicate progress, status, etc.)
OR
Can be run as a Windows service, without a GUI
Is it possible? Can someone get me started?
I guess the alternative...
Started by Keith Palmer on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Most....
/// </summary> private static void Main and then a seperate GUI app.
The "form or service" code goes something like this:
static class Program { /// <summary> /// The main entry point for the application.
GUI apps.
|
|
If I develop a GUI wrapper that only executes a GPL cli application (for the sake of argument, say tar ) must I release the GUI wrapper as GPL? Is it a derivitive work?
If it is a derivative work what must I release?
Both the GPL application and the wrapper...
Started by hhafez on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
IANAL, but I'm pretty sure that if you don't link the GPL code with... .
If it's an open source project and you don't intend on selling yours why not just contribute your code the the project .
This is a hard one, although I don't think it does, but IANAL .
|
|
I can easily control a console based app with the input and output streams from Java's Runtime.exec() method. How would I control a GUI based application in the same manner. I have looked at the Robot class, but there is no way for me to control one application...
Started by Samuel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are many open source....
Squish(frologic), RFT(IBM) are good examples.
There are many tools to do record and playback.
If you mean Java GUIs, then there's WindowLicker , which is designed around testing, but should be just as good for driving .
|
|
I have a console application that will be kicked off with a scheduler. If for some reason, part of that file is not able to be built I need a GUI front end so we can run it the next day with specific input.
Is there as way pass parameters to the application...
Started by Bob Cummings on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Using a "hybrid" approach can....
Commandline-parameters-in-console-application
It sounds like what you want is to either run actually ship two different executables (look at visual studio- devenv.exe is the gui, devenv.com is the console).
|
|
Are there any good GUIs that support pygame surfaces as a widget within the application?
If this isn't possible or practical, what GUI toolkit has the best graphics component? I'm looking to keep the speedy rendering made possible by a SDL wrapper.
Started by Bibendum on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
application instances that use....
First of all, pygame relies on the SDL, ...
Best GUI toolkit in my opinions is wxPython (a binding for wxWidgets) which has GUI widgets, as described over at the GUI section of the Pygame wiki.
|
|
I have a console application that generated from bison (a parser) and i want to build a simple gui for it so i can send input from this gui to the console and get output from the console into the gui . i tried to do that using java process class but it...
Started by radi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
UseHey,
I think you have....
Low complexity Use some command switches that you pass from your Qt GUI to your a normal GUI application in Qt and, using the QProcess class, call your console application.
Console application.
|
|
Hello all i like to build .net GUI application and to be able to deploy it on wide windows version as possible for non teachi persons , what should i be planning before i start to write the code like which minimum net version to compile which GUI to use...
Answer Snippets (Read the full thread at stackoverflow):
XP installations may have 2.0 from some application or Windows Update..
|