This is a discussion on Registering the file in .net within the C# Programming forums, part of the Software Development category; Can anybody tell me the equivalent to regsvr32 and regsvr32 /u a file in .NET development? I have to register ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Can anybody tell me the equivalent to regsvr32 and regsvr32 /u a file in .NET development? I have to register my file in the .Net?Thanks for any help. |
| Sponsored Links |
| |||
| hi ramesh, you can register your .NET dlls by using following way, regasm assemblyFile [options] *assemblyFile The assembly to be registered with COM. i think this will help you...
__________________ J.Saravanan |
| |||
| Hi Ramesh, Also you can follow the below code to register your dll's. The following command registers all public classes contained in myTest.dll. regasm myTest.dll The following command generates the file myTest.reg, which contains all the necessary registry entries. This command does not update the registry. regasm myTest.dll /regfile:myTest.reg The following command registers all public classes contained in myTest.dll, and generates and registers the type library myTest.tlb, which contains definitions of all the public types defined in myTest.dll. regasm myTest.dll /tlb:myTest.tlb Hope you understand how to register the dlls. Cheers ![]()
__________________ Sathish Kumar.R ![]() Knowledge is meant to SHARE |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| File extension of the code file & object repository file in QTP | vigneshgets | Testing Tools | 1 | 01-16-2008 11:43 PM |
| How can I extract just the extension file name from a forms file upload field? | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 10-22-2007 08:32 AM |
| convert Excel file to CSV(or text) file using java | mobilegeek | Java Programming | 2 | 09-06-2007 06:42 AM |
| Difference between a file and Random access file Classes | anbuchezhians | Java Programming | 1 | 08-08-2007 02:53 AM |
| set the file path for file type input tag | Jeyaseelansarc | PHP Programming | 0 | 05-19-2007 05:01 AM |