Activereports 7 Serial Keygen
Componentone Activereports Developer 7.2.7725.0 serial code maker Componentone Activex Controls all versions serial keygen Componentone Chart 8.0, v.1.0.20024 key code generator.
In a VS2010 solution I have a license.licx file that contains:
If I build the solution on a machine that HAS a license for ActiveReport then everything is fine. If I build the solution on a machine that DOESN'T have a license for ActiveReport I get:
Error 1 'Could not load file or assembly 'ActiveReports6, Version=6.1.2814.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)' LC
On the machine that DOESN'T have a license for ActiveReport if I remove the above lines from the license.licx file then everything builds fine. I always thought that if the license couldn't be found then the unlicensed version will be used but it wouldn't kill the build. How do I get this solution to build on any machine whether it has a license or doesn't?
Uwe Keim4 Answers
It actually seems like this machine doesn't have that specific version of ActiveReports installed.
We resolve issues like this by storing external assemblies in a path relative to the project (i.e. ..Assemblies) and modifying all of the projects to include a HintPath, for example:
This way, you don't have to worry about every developer having the exact same version installed. You should be able to debug with this configuration, but not build for release.
Update
I forgot to mention another practice that we implement: unless the component absolutely requires it (we only have one that I can think of off the top of my head), we never store versions in the license.licx file. Our licenses.licx entry for the above example is:
You have to keep on top of the licenses.licx file if you do this, but it definitely resolves various versioning issues.
competent_techcompetent_techContacted ActiveReports and they told me that a license file can be maintained for each user whether they have a paid license or not. The trick is that the users who will not be generating reports need to install a trial license (which ActiveReports provides free of charge) and the users that paid for the license will have their own license. The trial license, just like the real paid license, will deal with the license.licx file and will provide the proper actions when it sees an entry it recognizes in the .licx file.
DenisDenisIf I build the solution on a machine that DOESN'T have a license for ActiveReport I get
This is part of the problem. Typically, licensing requires every developer to have a license. Trying to license only part of your development team is likely in violation of your ActiveReports license.
Reed CopseyReed CopseySerial Keygen Generator
It should be perfectly fine to use a trial version of ActiveReports the way you are describing. I've seen a number of problems with Visual Studio's licensing with various components. Usually they can be solved using the following steps:
- Clean the solution using Build > Clean
- Delete the licx file (Visual Studio will generate this file as needed).
- Add an ARViewer control to a form in your project (you can delete it again later). This needs done on a machine with a valid ActiveReports license. And this is what should trigger the licx file to be regenerated with the correct information.
- Rebuild (make sure you do a real rebuild, I know that is supposed to be a clean+build, but rebuild seems to be important sometimes).
Other than that, just verify your references are all correct. For example, make sure you don't have multiple versions of DLLs referenced in different projects within the solution and make sure 'Copy Local' and 'Use Specific Version' are as you expect.
If you still have problems create a new project, add ActiveReports (or whatever component you're having problems with) and do a quick 'hello world' style app to make sure it works correctly and then compare the two projects (references, files, etc.).
Scott WillekeScott WillekeNot the answer you're looking for? Browse other questions tagged c#.netvb.netvisual-studio-2010activereports or ask your own question.
I created an installer referencing the dll’s of the installed active reports (already licensed).But when I install my project in a new machine, there is a watermark in the reports.Please advise how to remove the watermark.
I tried everything but with no luck. I don’t know what causing this issue, i didn’t include the dll’s in my installer packager but i still encountered the issue.
2 Answers
I am assuming this ActiveReports v2 Com version.
The assemblies are not licensed. The machine on which the product is installed is licensed. To test that, run one of the samples from the installer and see if you get the evaluation version or not.
If the project compilation on a licensed machine goes fine, the license information is embedded in that excutable. When you deploy, the ACtiveReports* assemblies that were part of the project also needs deployed aling with executable.
On a machine that dose not has ActiveReports installed, the application executable will look in the same folder as the exe for references.
Can you re-check and update. If there is a screenshot that you can share, that will help too. Also, update with the build number.
Issue is already solved, I just acquired a copy of license registry and register it in my local PC. So frustrating that the solution is just too simple @.@