I build WPF application on Window 10, .Netframwork 4.5. It's successfully working on my machine and when I tried to run exe file (bin/debug/app.exe) by another PC (window 8.1) it's not Working.. No error statement is showing, it's just loading but nothing happened.. My application contain LINQ to SQL (DB) and communication with some network over UDP.. What am I doing wrong? What and How compatibility issues are needed to resolve? What possible problems are occurring ? Thanks
Asked
Active
Viewed 114 times
-1
-
1You have installed the .Net Framework 4.5 for your Win8.1 Machine? – Cizzl Mar 19 '19 at 09:06
-
Yes. It's present – Mr. Xek Mar 19 '19 at 09:18
-
1Did you copied the whole folder content (not only the .exe)? – Mar 19 '19 at 09:56
-
Yes, the Whole Folder – Mr. Xek Mar 19 '19 at 11:19
-
1Take a screenshot of you SOLUTION > PROJECT > References folder and post it in your question. Most likely one of the references are not copied. – Nawed Nabi Zada Mar 19 '19 at 12:59
-
1You need to implement logging in your application to be able to figure out what actually happens when it fails. If you don't know why it crashes, you won't be able to fix it. – mm8 Mar 19 '19 at 13:52
1 Answers
1
What am I doing wrong?
It's impossible to say without knowing what your application actually tries to do. As a first step, to simply diagnose the cause of the issue, you need to implement some kind of logging in your application. Once you see the exception message and the stack trace, you will hopefully be able to figure out how to fix the error.
But if you don't know why the application crashes, you won't ever be able to fix it.

mm8
- 163,881
- 10
- 57
- 88