Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

Patrick Lassalle

@Patrick Lassalle
About
Posts
28
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • A licensed windows forms control on a web page
    P Patrick Lassalle

    How can I use a licensed windows forms control on a web page? How is declared the license? Have I just to place the license file in the same virtual directory as the dll? It seems it is not the case.

    .NET (Core and Framework) question winforms

  • Diagrams in .NET
    P Patrick Lassalle

    There is also: - AddFlow for .NET from Lassalle Technologies.An evaluation version can be downloaded at: http://www.lassalle.com/download.htm#.NET - Metadraw from Bennet-Tec - ERM3 from Crainiate 2 remarks: - AddFlow is the best - I am the author of AddFlow ;-)

    C# csharp question

  • Visio-like drawing component/framework
    P Patrick Lassalle

    I recommand you my flowcharting product: AddFlow for .NET. You can download an evaluation version at: http://www.lassalle.com/download.htm#.NET

    C# graphics question workspace

  • Background mode and GDI+
    P Patrick Lassalle

    I would like to draw text with a OPAQUE or TRANSPARENT backgound mode. How to do that with GDI+? In other terms, under GDI+, how to obtain an effect similar to the SetBkMode and SetBkColor functions of GDI?

    C# winforms graphics tutorial question

  • Licensing and wrapping control
    P Patrick Lassalle

    Unfortunately, this is not allways possible. Sometimes, you cannot change the the host app because you have not its source code. It is the case if you use the control under ASP.NET (aspnet_wp.exe). In such a case, it seems that the licensing provided by .NET is not working.

    .NET (Core and Framework) csharp help question

  • Licensed controls and ASP.NET
    P Patrick Lassalle

    It seems that the .NET LicenseProvider does not work if the user is not allowed to modify the executing assembly, for instance, if the licensed control is consumed in an ASP.NET web application. What are the possible workarounds?

    .NET (Core and Framework) csharp asp-net question

  • Licensing
    P Patrick Lassalle

    In your first message, you asked if anyone had any problems with the licensing. I have the following problem: - I create a basic Windows Forms Control with a basic licensing (LicFileLicenseProvider). Let us call it Dummy.dll. - If I use it in a windows application (DummyTest.exe), the licensing is working correctly - If I wrap dummy in a another unlicensed control (DummyWrap.dll) and if I use DummyWrap in a windows application (DummyWrapTest.exe), the licensing does not work anymore (Notice that DummyWrap has a licenses.licx file since it uses Dummy.) - Then if I add a licenses.licx file to DummyWrapTest itself, the licensing is working again. (I thought initially that the licenses.licx file was not necessary because DummyWrapTest is only using DummyWrap. It does not see Dummy. - However there are cases where I cannot add the licenses.licx file to the application, for instance if this application is ASP.NET (I have not its source code!). I don't know what to do here to avoid the "license not found" message.

    Visual Basic sysadmin help

  • Licensing
    P Patrick Lassalle

    Is your licensed control in the GAC or in a normal directory? Do you use your control in an application or a DLL (class library, wrapping control)?

    Visual Basic sysadmin help

  • Licensing
    P Patrick Lassalle

    In the project folder of the application that uses your control, you should have a licenses.licx file. This file must be included in the project and it must contain a line identifying your control. If this is not the case, this is the reason of your problem.

    Visual Basic sysadmin help

  • Implementing Serial number / Trial version
    P Patrick Lassalle

    A possible solution: encrypt the serial number with an asymmetric algorithm. Even after decompilation, people will find the public key needed to decrypt the serial number but they will not find the private key needed to crypt it.

    C# c++ com tutorial question announcement

  • Licensing and wrapping control
    P Patrick Lassalle

    I have created a .NET Windows Form control. This control is licensed, using the standard licenseing classes of .NET (License class, LicenseProvider class, etc). This is working when the control is used in an application. However, it seems this does not work when the control is used in a wrapping control or a class library. Is this a known problem? Is there anything special to do?

    .NET (Core and Framework) csharp help question

  • Customize toolbox during setup
    P Patrick Lassalle

    I am creating a "Visual Studio .NET" deployment project to install some component assemblies. I would like that the setup program make the assemblies appear in the Visual Studio .NET "Customize Toolbox" dialog box.

    .NET (Core and Framework) csharp visual-studio sysadmin workspace

  • Install assembly in the GAC
    P Patrick Lassalle

    I have finally discovered that the Deployment project in Visual Studio .NET offers a GAC folder. I have just, when creating my deployment project, to place my assemblies in this folder. And now, I have another question: I would like that the setup program make the assemblies appear in the Visual Studio .NET "Customize Toolbox" dialog box. How to do that?

    .NET (Core and Framework) dotnet tutorial question workspace

  • Copy local = False
    P Patrick Lassalle

    Yes, you are right... In fact, the correct place for this assembly would be the GAC (Global Assembly Cache). However, I don't know how to tell my setup program to place the assembly into the GAC. (I am creating a Deployment Project)

    .NET (Core and Framework) question

  • Install assembly in the GAC
    P Patrick Lassalle

    I am creating a setup project and I would like to install some assembly files into the Global Assembly Cache (GAC). How to indicate that in the setup project?

    .NET (Core and Framework) dotnet tutorial question workspace

  • Copy local = False
    P Patrick Lassalle

    I have created a Windows Form control and also an application that uses it. When I reference the control, if I don't choose "copy local = true", the it throws a System.IO.FileNotFoundException. What may be the reason?

    .NET (Core and Framework) question

  • Licensing
    P Patrick Lassalle

    I have purchased an obfuscator (from Preemptive Solutions).

    C# csharp hosting help tutorial question

  • Licensing
    P Patrick Lassalle

    Thanks very much. I have followed your advices and have finally been able to solve my problem!

    C# csharp hosting help tutorial question

  • Licensing
    P Patrick Lassalle

    I am facing some difficulties with the licensing scheme in .NET. I have created a solution with 2 projects: - a licensed windows form .NET control (written in C#) - a small application hosting the control (written in VB) Currently, I just try a basic licensing using the .NET LicFileLicenseProvider. I am quite sure to have written the code as indicated in the .NET doc. However it does not work. The license exception is raised except is the license file is placed in the application exe directory. It seems that no license key has been embed in the .exe. Does anybody has faced such a problem? How to solve it? (I use .NET v1)

    C# csharp hosting help tutorial question

  • Installation tool
    P Patrick Lassalle

    Thanks. The Deployment wizard seems to be a very good starting point. It is a good surprise for me. Until now, I had not noticed its existence.

    .NET (Core and Framework) csharp question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups