Page Number: Página 1 de 1
Actual Results
- theProphecy
- Foro: Microsoft Windows Forum
- Tema: A shortcut in Windows refering to a file in the same folder
- Subject: A shortcut in Windows refering to a file in the same folder
- Respuestas: 5
- Vistas: 2667
Posted: Enero 7th, 2004, 4:40 am
Well not quite...
The thing is, that im making applications, and it's not me who need to get the shortcut's. It's the persons getting my applications, who needs a easy way to execute my applications, and as i said earlier, i don't like installers!
The thing is, that im making applications, and it's not me who need to get the shortcut's. It's the persons getting my applications, who needs a easy way to execute my applications, and as i said earlier, i don't like installers!
- theProphecy
- Foro: Programming / Scripting / Coding Forum
- Tema: Executing/Running a Java app
- Subject: Executing/Running a Java app
- Respuestas: 2
- Vistas: 1748
- Subject: Executing/Running a Java app
Posted: Enero 6th, 2004, 1:26 pm
Until now i have found out this about running it as a .exe file
Lang = C
Guess that's the way i'll do it...
Lang = C
Código: [ Select ]
int main()
{
system(".\\jre\\bin\\javaw.exe GUI");
return 0;
}
{
system(".\\jre\\bin\\javaw.exe GUI");
return 0;
}
- int main()
- {
- system(".\\jre\\bin\\javaw.exe GUI");
- return 0;
- }
Guess that's the way i'll do it...
- theProphecy
- Foro: Programming / Scripting / Coding Forum
- Tema: Executing/Running a Java app
- Subject: Executing/Running a Java app
- Respuestas: 2
- Vistas: 1748
- Subject: Executing/Running a Java app
Posted: Enero 6th, 2004, 11:10 am
Right... Sorry, i missed out, i know that a Batch file would do the job.
But im sertain that there must be another way. Since i don't like a batch as run very mutch.
But the thing with a .exe file, must be possible...
Código: [ Select ]
@echo off
.\jre\bin\javaw.exe GUI
.\jre\bin\javaw.exe GUI
- @echo off
- .\jre\bin\javaw.exe GUI
But im sertain that there must be another way. Since i don't like a batch as run very mutch.
But the thing with a .exe file, must be possible...
- theProphecy
- Foro: Programming / Scripting / Coding Forum
- Tema: Executing/Running a Java app
- Subject: Executing/Running a Java app
- Respuestas: 2
- Vistas: 1748
- Subject: Executing/Running a Java app
Posted: Enero 6th, 2004, 9:22 am
Well, might sound easy! :) And it propably is... But this is my problem: i need a way to execute/run a Java app. The tricky thing is, that first of all, its for Windows. (Not that i ONLY develop it for Windows, but this way of executing the Java App is for Windows). It's because when i pack up my ap...
- theProphecy
- Foro: Microsoft Windows Forum
- Tema: A shortcut in Windows refering to a file in the same folder
- Subject: A shortcut in Windows refering to a file in the same folder
- Respuestas: 5
- Vistas: 2667
Posted: Enero 6th, 2004, 9:12 am
Okay, might sound easy, but i haven't been able to find out if this is possible, or how. But the thing is this: The shourcut i wan't to create shall point to a file in the same folder as the shortcut, but without giving the whole directory. For example if i have a folder on my C drive: [code] C:...
