qry in deployment

srivalli

Well-known member
Joined
May 4, 2005
Messages
189
Programming Experience
Beginner
hello
i developed a small project in vb.net
and i deployed it
now i want to put that project in some other system in which .net is not installed
so i installed dot net framework
and also access since my back end is msaccess
also i have one crystal report in my project

but in the destination system
my project is running fine but while generating report it is giving error as "KEYCODEV2.DLL" IS not found
i included keycodev2.dll in my solution explorer
but still the same error is displayed now
what can be the error
let me know
thanks
 
Need KeyCode

This is from http://www.dotnet247.com/247reference/msgs/21/108791.aspx

The REGWIZ.MSM merge module requires a license key to be entered so that it can configure the deployment (target/client) machine. When this merge module is added to a setup project, the Properties window exposes a property
called, License Key under the (MergeModuleProperties) property.

The License Key requires the keycode that you receive after registering the
product. When Crystal Report for Visual Studio .NET is registered, an email
is sent with a keycode and a registration number. Copy the keycode into the
License Key property, and then build the setup project.
 
Back
Top