Results 1 to 2 of 2

Thread: How to remove code added to a .dll component?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Feb 2004
    Location
    Barcelona
    Posts
    70

    How to remove code added to a .dll component?

    I have myProject.dll component in /bin directory with several .vb code added into it, and I want to remove some .vb files added (compiled) to that myProject.dll.

    To compile the .vb files I use the command line compiler, I don’ t use any IDE tool, so I need to know how to remove that .vb files from the command line compiler.

    To compile them, now I use this cmd.exe file:
    Code:
    @echo off 
    C:\WINNT\Microsoft.NET\Framework\v1.1.4322\vbc.exe /nologo /target:library /out:bin/myProject.dll newCodeBehind.vb /r:system.dll /r:system.web.dll /r:system.data.dll
    PAUSE
    How can I do it so that I can remove the newCodeBehind.vb file from the myProject.dll component once compiled/added on it?

    Thank you,
    Cesar

  2. #2

    Thread Starter
    Lively Member
    Join Date
    Feb 2004
    Location
    Barcelona
    Posts
    70

    Re: How to remove code added to a .dll component?

    In this page:
    http://msdn.microsoft.com/library/de...bycategory.asp

    There is a list of Visual Basic Compiler Options Listed by Category, but I can' t see any option to do what I want. Do you see any option to do it?

    Thank you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width