Can I run the program on computer that has no mysql.data installed?
Im getting this error
Could not load file or assembly 'MySql.Data, ...
Please Teach me how to build the program properly.
Printable View
Can I run the program on computer that has no mysql.data installed?
Im getting this error
Could not load file or assembly 'MySql.Data, ...
Please Teach me how to build the program properly.
Show us the code you have that isn't working
Just copy MySql.Data.dll over to the other machine along with your EXE. Go to the References page of the project properties and set the Copy Local property of that reference to True. When you build the project you'll now find that DLL in the same folder as your EXE, ready to copy over.
tnx jmcilhinney ill update this thread if it works for me