Click here to Skip to main content
15,898,881 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionHELP: How to create and register channels in new application domain Pin
SongDog13-Sep-05 6:06
SongDog13-Sep-05 6:06 
Questionhelp me Pin
Anonymous13-Sep-05 3:45
Anonymous13-Sep-05 3:45 
AnswerRe: help me Pin
Christian Graus13-Sep-05 14:31
protectorChristian Graus13-Sep-05 14:31 
QuestionCompact Framework strange exception Pin
David Menéndez Cisterna13-Sep-05 2:24
David Menéndez Cisterna13-Sep-05 2:24 
Questionshortcut and InputLanguage Pin
Anonymous12-Sep-05 21:33
Anonymous12-Sep-05 21:33 
QuestionHow to create different IPC channels in both server and client configuration files Pin
SongDog12-Sep-05 19:13
SongDog12-Sep-05 19:13 
Questioninstaller of c#.net project Pin
AvinashKundal12-Sep-05 19:12
AvinashKundal12-Sep-05 19:12 
AnswerRe: installer of c#.net project Pin
rwestgraham13-Sep-05 9:04
rwestgraham13-Sep-05 9:04 
I'm not sure why the setup is not correctly registering the assemblies in the first place. First I would google and see if you can find more information.

But troubleshooting installs can be very complicated.

Alternatives are:

1) You can add an Installer class to the setup that uses conventional C# or VB.NET code to shell out the command line to register the assemblies. See the MSDN or search for articles on using Installer classes.

One disadvantage to using this approach is that you cannot rollback the process in an uninstall. By the time the Installer class code runs during an uninstall, the assemblies will already be gone, so regasm run from a commandline will not be able to unregister them. So the registry entries for the assemblies will be left on the machine.

2) You can accomplish a clean uninstall by not using regasm at all, but instead by creating all the equivalent registry entries directly. In this approach you must first determine all of the registry operations that are created during a regasm registration of the assembly. Then you add these keys to be written during during an install, and deleted during an uninstall. This approach is tedious and more difficult but it does result in a more professional setup that uninstalls cleanly. The trick is determining all the registry keys. There are various tools available that will "spy" on the registry and log any changes that can help you do this. But if you go this route, you must be careful to test, test and test again!
QuestionFound incredible notepad like source editor Pin
Heinz_9-Sep-05 17:24
Heinz_9-Sep-05 17:24 
QuestionOne inherited form from FormBase has one toolbar and one imagelist Pin
Emerson Valente9-Sep-05 2:59
Emerson Valente9-Sep-05 2:59 
AnswerRe: Funcionamento de Toolbar publica em Form herdado Pin
Dave Kreskowiak9-Sep-05 4:31
mveDave Kreskowiak9-Sep-05 4:31 
QuestionVB.net ListView Flicker Pin
Gate Crasher8-Sep-05 16:29
Gate Crasher8-Sep-05 16:29 
AnswerRe: VB.net ListView Flicker Pin
Christian Graus8-Sep-05 16:43
protectorChristian Graus8-Sep-05 16:43 
GeneralRe: VB.net ListView Flicker Pin
[Marc]10-Sep-05 0:28
[Marc]10-Sep-05 0:28 
AnswerRe: VB.net ListView Flicker Pin
S. Senthil Kumar16-Sep-05 6:14
S. Senthil Kumar16-Sep-05 6:14 
QuestionBeginner Help Pin
Anonymous8-Sep-05 9:38
Anonymous8-Sep-05 9:38 
AnswerRe: Beginner Help Pin
Colin Angus Mackay8-Sep-05 11:01
Colin Angus Mackay8-Sep-05 11:01 
Questionpopup control ruined my app Pin
texasjames8-Sep-05 9:05
texasjames8-Sep-05 9:05 
AnswerRe: popup control ruined my app Pin
Colin Angus Mackay9-Sep-05 5:57
Colin Angus Mackay9-Sep-05 5:57 
Question.Net C# Word Add-in install Pin
tartancli8-Sep-05 8:19
tartancli8-Sep-05 8:19 
AnswerRe: .Net C# Word Add-in install Pin
rwestgraham11-Sep-05 11:18
rwestgraham11-Sep-05 11:18 
GeneralRe: .Net C# Word Add-in install Pin
tartancli11-Sep-05 11:54
tartancli11-Sep-05 11:54 
GeneralKill the VB/C# debate! Pin
ComputerGuyCJ8-Sep-05 7:32
ComputerGuyCJ8-Sep-05 7:32 
GeneralRe: Kill the VB/C# debate! Pin
Dave Kreskowiak8-Sep-05 9:06
mveDave Kreskowiak8-Sep-05 9:06 
GeneralRe: Kill the VB/C# debate! Pin
Paul Conrad14-Sep-05 19:49
professionalPaul Conrad14-Sep-05 19:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.