Reputation: 21
I devoloped a program for my pharmacy under (windows xp) using (vb 10 express) i send it to a friend who has a windows 7 computer and it failed to run the program
When i tried to run the program in virtual machine ( windows xp) i found that it required (dotnetfx35.exe) and (dotNetFx40_Full_x86_x64.exe) and run succesfully.
my friend installed http://www.microsoft.com/en-eg/download/confirmation.aspx?id=17718 and http://www.microsoft.com/en-us/download/confirmation.aspx?id=1639 and he was unable to install a 3.5 frame work !!
How do I know what frameworks my application will require when I publish them?
Upvotes: 0
Views: 1473
Reputation: 8902
Go to project properties
> Application
There you see target framework. Target machine should have that version of .Net framework to run the application successfully.
Upvotes: 1