Click here to Skip to main content
15,885,186 members
Home / Discussions / C#
   

C#

 
QuestionHow dotnet application run Pin
Mou_kol13-Feb-18 22:12
Mou_kol13-Feb-18 22:12 
AnswerRe: How dotnet application run Pin
phil.o13-Feb-18 23:00
professionalphil.o13-Feb-18 23:00 
GeneralRe: How dotnet application run Pin
Mou_kol14-Feb-18 0:09
Mou_kol14-Feb-18 0:09 
GeneralRe: How dotnet application run Pin
phil.o14-Feb-18 0:59
professionalphil.o14-Feb-18 0:59 
GeneralRe: How dotnet application run Pin
Mou_kol14-Feb-18 1:10
Mou_kol14-Feb-18 1:10 
GeneralRe: How dotnet application run Pin
Dave Kreskowiak14-Feb-18 2:27
mveDave Kreskowiak14-Feb-18 2:27 
GeneralRe: How dotnet application run Pin
Mou_kol15-Feb-18 21:45
Mou_kol15-Feb-18 21:45 
GeneralRe: How dotnet application run Pin
Dave Kreskowiak16-Feb-18 5:03
mveDave Kreskowiak16-Feb-18 5:03 
JAR files are not executable. They are just a bunch of data that Java interprets as code, referred to as "bytecode". Java is a virtual machine environment with its own instruction set. This bytecode isn't run natively by your CPU like .EXE executables.

You apparently don't know how file associations work. Ever double-click a .TXT file or a Word file? You're actually launching the executable associated with that file extension.

For .txt files, the command line launched is
%SystemRoot%\system32\notepad.exe %1

where the %1 is replaced by the full path to the .txt file you double-clicked.

For .jar files, it's no different. The command line launched is something like this:
"C:\Program Files (x86)\Java\jre1.8.0_102\bin\javaw.exe" -jar "%1" %*

Again, the %1 is replaced by the full path to the .jar file.

QuestionPost an unselected ListBoxFor in MVC Pin
VK1913-Feb-18 9:36
VK1913-Feb-18 9:36 
QuestionRe: Post an unselected ListBoxFor in MVC Pin
Eddy Vluggen13-Feb-18 10:57
professionalEddy Vluggen13-Feb-18 10:57 
AnswerRe: Post an unselected ListBoxFor in MVC Pin
BillWoodruff13-Feb-18 18:11
professionalBillWoodruff13-Feb-18 18:11 
QuestionASP.NET: Buttons generated in code behind will not fire event Pin
Member 958444513-Feb-18 3:10
Member 958444513-Feb-18 3:10 
AnswerRe: ASP.NET: Buttons generated in code behind will not fire event Pin
Richard Deeming13-Feb-18 4:38
mveRichard Deeming13-Feb-18 4:38 
QuestionI had an error of Email in line " dynamic email = new Email("ChngPasswordEmail");" which say's The type or Namespace name "Email" could not be found Pin Pin
Member 1367430013-Feb-18 0:33
Member 1367430013-Feb-18 0:33 
AnswerRe: I had an error of Email in line " dynamic email = new Email("ChngPasswordEmail");" which say's The type or Namespace name "Email" could not be found Pin Pin
CHill6013-Feb-18 1:07
mveCHill6013-Feb-18 1:07 
GeneralRe: I had an error of Email in line " dynamic email = new Email("ChngPasswordEmail");" which say's The type or Namespace name "Email" could not be found Pin Pin
Member 1367430013-Feb-18 1:12
Member 1367430013-Feb-18 1:12 
AnswerRe: I had an error of Email in line " dynamic email = new Email("ChngPasswordEmail");" which say's The type or Namespace name "Email" could not be found Pin Pin
OriginalGriff13-Feb-18 1:10
mveOriginalGriff13-Feb-18 1:10 
AnswerRe: I had an error of Email in line " dynamic email = new Email("ChngPasswordEmail");" which say's The type or Namespace name "Email" could not be found Pin Pin
Dave Kreskowiak13-Feb-18 3:19
mveDave Kreskowiak13-Feb-18 3:19 
QuestionC# need help reading XML config file with multiple values in windows forms app Pin
Travis Jacobson12-Feb-18 4:00
Travis Jacobson12-Feb-18 4:00 
AnswerRe: C# need help reading XML config file with multiple values in windows forms app Pin
Richard MacCutchan12-Feb-18 6:04
mveRichard MacCutchan12-Feb-18 6:04 
AnswerRe: C# need help reading XML config file with multiple values in windows forms app Pin
Gerry Schmitz12-Feb-18 6:13
mveGerry Schmitz12-Feb-18 6:13 
GeneralRe: C# need help reading XML config file with multiple values in windows forms app Pin
Travis Jacobson12-Feb-18 6:22
Travis Jacobson12-Feb-18 6:22 
GeneralRe: C# need help reading XML config file with multiple values in windows forms app Pin
Gerry Schmitz12-Feb-18 6:35
mveGerry Schmitz12-Feb-18 6:35 
GeneralRe: C# need help reading XML config file with multiple values in windows forms app Pin
Travis Jacobson12-Feb-18 7:27
Travis Jacobson12-Feb-18 7:27 
GeneralRe: C# need help reading XML config file with multiple values in windows forms app Pin
Gerry Schmitz12-Feb-18 7:36
mveGerry Schmitz12-Feb-18 7:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.