0
votes
1answer
25 views
Conversion of a Java Web Start app to an Applet
I'm trying to figure out how difficult it would be to convert a Java Web Start app to an applet. Theoretically, if the application didn't do anything such as write to the file sys …
0
votes
3answers
153 views
How to start/stop a monitoring Delphi thread on demand?
I've been looking for a way to monitor for specific registry changes in Delphi. Found a solution at about.com:
procedure TRegMonitorThread.Execute;
begin
InitThread; // method o …
0
votes
4answers
49 views
How to start the java console when launching an application from Eclipse?
When I start a java application, the Java Console is started. But when I start a java application from Eclipse, the Java Console does not start on its own. How can I make it start …
0
votes
1answer
118 views
Hide CMD window after using START to run a network application
I have an application that is run over a network. I need to be able to run this application from a batch file, and had ended up using this:
pushd \\server\folder
start /wait prog …
0
votes
0answers
121 views
Create shortcut to start menu (not IN start menu)
I have been experimenting with object dock and rocket dock. So far I like object dock better, but it takes FOREVER to start up on my machine (more than a minute). I am running on a …
0
votes
3answers
89 views
When I launch an web start application i am geteng the following error. Please help me
am geeting the following error while launching the application.
Exception in thread "javaWSApplicationMain" java.lang.NoClassDefFoundError:SimpleSerail.
The java code that i am us …
0
votes
4answers
222 views
What I Can Do With R?
Hello,
I was seeing that here we have a new language(for me it is), R, but I was viewing it's site and as I can see we only can do graphics with it, but there is more things that …
1
vote
3answers
42 views
Qt4 starting and stopping (pausing)
Ok, so I'm having this problem tonight:
[...]
connect(startButton, SIGNAL(clicked()), this, SLOT(startCalculation()));
connect(stopButton, SIGNAL(clicked()), this, SLOT(stopCa …
1
vote
3answers
437 views
Start And Stop Windows Service remotely using PSEXEC
How to start and and stop a windows service remotely using PSEXEC
Preferable the syntax to write I tried the cmdlet given below
psexec \Server -u Administrator -p Somepassword Se …
0
votes
0answers
98 views
Visual Studio C# WPF run without debugging - nothing happens
I am new to Visual Studio 2008, and I am learning the old "Hello World" application using a WPF application. When I click 'Start without Debugging' I see a window open for a half-s …
2
votes
3answers
78 views
Is it possible to have a sound play before/during the splash screen?
My app takes a few seconds to load and I have a splash screen. Once "viewDidLoad" I have a little sound play. I feel that the sound would be in better use if it started playing …
1
vote
1answer
273 views
How to call jquery ajaxStart + ajaxComplete
Hey guys,
I have a load function and would like for the code to write some html into a div while it loads, and when it completes, to display the page. I saw some little writeups …
0
votes
1answer
163 views
Is there any way to redirect stderr output from a command run with “start” in the Windows command line?
I have a program that I want to automate runs for, since it takes awhile to complete. For some reason it outputs everything to stderr instead of stdout, and I'd like to check on it …
0
votes
2answers
421 views
Cannot Start /Stop windows service using C# code with PsExec?
Process process = new Process();
ProcessStartInfo psi = new ProcessStartInfo(@"C:/PsExec.exe");
psi.UseShellExecute = false;
psi.RedirectStandardOutput = true;
psi.RedirectStandar …
0
votes
1answer
17 views
Unable to run WSAD in client machine
Hi I am trying to run WSAD in Client login but its not starting up and giving the error as below
Application started: wclight
[02/09/09 15:11:27:656 CST] 41104110 WebContainer E …
