-2
I developed an application in Winforms C# in 03 layers with Access.MDB Database:
Now the questions so that the Application can be installed in the client and function properly.
The files I send to the client are as follows::
1.1 - Executável winforms: Ex: MinhAplicação.exe 1.2 - DLL MODELS: Modelsapp.dll 1.3 - DLL DAL: Dalapp.dll 1.4 - DLL BLL: BLLlsapp.dll 1.5 - BD Access: database.mdb
Even if the client has Office installed (in case 2010) C# forces me to install OLEDB 12.0 in the client.
Question: Is there any way that C# Application recognizes Client Office without having to install OLEDB 12.0
My reports made with Reportviwer do not run on client unless I install Visual Studio on client.
I tried to send the
reportviwer.exe
, the run-time Visual Studio. But C# asks for the CRL TYPES DO SQL previously installed. This is complicated for the client.Question: What files and procedures are required for my application to install and run on the client?
Any problem using the installer that comes with Visual Studio?
– Maniero
when you generate the executable, it will all go to the project.
– Marconi