|
I have a Mac application bundle which is executing a shell script. The shell script calls java program 1 to do some stuff and then launches the main java application. This process leaves one icon in the Dock for the shell script which shows the name from...
Started by G_A on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Addendum
Maybe you can run the Java program in the background and then exit the shell script? Something like this:
#!/bin/sh first_java_program....
Yes, assuming the first Java program can run headless :
java -Djava.awt.headless=true ...
|
|
Hi I have created executable jar of my java program i want to create shortcut icon for that jar. Means may be my jar is in any other memory location of hard drive(eg- D or E drive for windows) but my icon must be at Desktop. So that if i double click ...
Started by Sunil Kumar Sahoo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
On commandline you can type
C:> myprogram.jar
And if your jar is properly build that runs the program.
|
|
Hello,
Recently I was searching for icons(graphics), but I see a link that was very intersting, was a language called Icon , then I want to know:
There is someone here that have already tried to develop in Icon? It's a compiled or interpreted language...
Started by Nathan Campos on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
In particular, it has a yield tried to develop in Icon....
To worry about, but if you program today in Java, C#, Rebol or Ruby, then Icon may be a nice interruptionYes, I have used Icon and found it to be an interesting language.
|
Ask your Facebook Friends
|
If you look at files in Windows Explorer, a DOC file has it's icon, a PDF, etc. That is if the application is installed on the computer.
Are these icons copyright protected or can they be use in applications?
Reason is: I want to show a standard "Word...
Started by Holgerwa on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In fact you....
Office icon gallery
Microsoft Corporation (or based on where you live, one of its and doesn't have to be asserted.
On my computers, I see an open office icon with .doc files.
The OS will provide some default representation.
|
|
I want to launch a program (Eclipse IDE, in this case), but I want to be able to launch multiple instances of it. I'm running Mac OS X 10.5.
I can add a script to the dock, which does this, but it has 2 drawbacks
it opens a console it doesn't have the...
Started by mike g on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
As for your script.
I'm not sure about a dock icon, but when I need to open two instances of Eclipse, I use on the icon, copy it, get info on your script, click on the icon and paste.
|
|
How can I change the target of a desktop icon (but not the displayed icon) with a "programming language" (vbscript or anything else) ?
for example:
C:\Program Files\Mozilla Firefox\firefox.exe
(with firefox-logo-icon-picture)
to
E:\start_firefox.bat
(...
Started by Jani on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Since the icon displayed by Windows (I'm assuming you're running Windows since you mention \Program extension determines what icon is displayed, this can't be done without reassociating a particular is to replace the link with an ....
|
|
Where are the windows7 icons? Want to make program use win7 icon. I want to change the icon for a program. I know I can right-click > properties > change icon > browse. But then, where to browse to select the win7 icon?
(I want to make cubicexplorer...
Started by carsten888 on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at windows7forums):
I copy pasted, but not on the....
O, I see.
Re: Where are the windows7 icons? Want to make program use win7 icon.
Select, when you have Online.
Re: Where are the windows7 icons? Want to make program use win7 icon.
|
|
Hey,
i had to reinstall window vista onto a new hard drive and i installed sandboxie but i noticed something weird.
in programs and features where sandboxie is listed, the icon next to it is weird. is like a grey fork looking thing.
is this normal????...
Answer Snippets (Read the full thread at sandboxie):
I doubt that there was any other change in the icon that's displayed for Sandboxie.
A Sandboxie icon to the right-click context menu in Windows Explorer, on Vista and Win 7.
|
|
I've got the following in my .css file creating a little image next to each link on my site:
div.post .text a[href^="http:"] { background: url(../../pics/remote.gif) right top no-repeat; padding-right: 10px; white-space: nowrap; }
How do I modify this...
Started by scottmarlowe on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It might be worth it to add a class to those <a> tags and then add another declaration to remove the background:
div.post .text a.noimage{ background:none; }
If you have the content of the links as a span, you could do this, otherwise I think you... .
|
|
At my company we have a product which pretty much interacts with everything you can imagine... registry, databases, devices, etc... it is composed of many parts but the entire application is launched by a single executable (start.exe) which is responsbile...
Started by Shaitan00 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are many limitations....
It starts with:
The first thing you should do about it is that; don't do it .
Which is exactly what you are looking for.
Update: Here is a post named: Launching an interactive process from Windows Service in Windows Vista and later .
|