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

.NET (Core and Framework)

 
Generalsunken vs. raised status bar border style Pin
Marc Clifton30-Mar-03 14:15
mvaMarc Clifton30-Mar-03 14:15 
GeneralRe: sunken vs. raised status bar border style Pin
Chris Jobson1-Apr-03 11:18
Chris Jobson1-Apr-03 11:18 
GeneralRe: sunken vs. raised status bar border style Pin
Marc Clifton1-Apr-03 13:49
mvaMarc Clifton1-Apr-03 13:49 
Generalflatstyle, buttons with bitmaps, and transparency Pin
Marc Clifton30-Mar-03 11:31
mvaMarc Clifton30-Mar-03 11:31 
GeneralRe: flatstyle, buttons with bitmaps, and transparency Pin
Chris Jobson1-Apr-03 11:30
Chris Jobson1-Apr-03 11:30 
GeneralRe: flatstyle, buttons with bitmaps, and transparency Pin
Marc Clifton1-Apr-03 13:51
mvaMarc Clifton1-Apr-03 13:51 
General.NET Equivelant to COM .EXE Server Pin
Jamie Nordmeyer28-Mar-03 7:32
Jamie Nordmeyer28-Mar-03 7:32 
GeneralRe: .NET Equivelant to COM .EXE Server Pin
Stephane Rodriguez.30-Mar-03 7:27
Stephane Rodriguez.30-Mar-03 7:27 
No.

Here is an excerpt from the regasm.exe implementation :
private void RegisterManagedType(Type type, string strAsmName, string strAsmCodeBase) {
  ...
  local6 = Registry.ClassesRoot.OpenSubKey("CLSID", true).CreateSubKey(local2);
  local6.SetValue("", local0);
  local7 = local6.CreateSubKey("InprocServer32");
  local7.SetValue("", RegistrationServices.strMsCorEEFullFileName);
  local7.SetValue("ThreadingModel", "Both");
  local7.SetValue("Class", type.FullName);
  local7.SetValue("Assembly", strAsmName);
  local7.SetValue("RuntimeVersion", local1);
  if (strAsmCodeBase != null)
    local7.SetValue("CodeBase", strAsmCodeBase);
  local7.Close();
  if (local3 != String.Empty) {
    local8 = local6.CreateSubKey("ProgId");
    local8.SetValue("", local3);
    local8.Close();
  }
  local9 = local6.CreateSubKey("Implemented Categories");
  local10 = local9.CreateSubKey("{62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}");
  local10.Close();
  local9.Close();
  this.EnsureManagedCategoryExists();
  local6.Close();


Even if you tweak the registry keys yourself, it's likely the CCW does not provide the appropriate apartment.
Generalreturning a structure from a XML Web Service Pin
Ray Cassick27-Mar-03 17:41
Ray Cassick27-Mar-03 17:41 
GeneralRe: returning a structure from a XML Web Service Pin
Ray Cassick27-Mar-03 18:29
Ray Cassick27-Mar-03 18:29 
GeneralCDATA? Pin
Paul Watson1-Apr-03 7:21
sitebuilderPaul Watson1-Apr-03 7:21 
GeneralRe: CDATA? Pin
Ray Cassick1-Apr-03 12:01
Ray Cassick1-Apr-03 12:01 
GeneralRe: CDATA? Pin
Paul Watson1-Apr-03 18:14
sitebuilderPaul Watson1-Apr-03 18:14 
GeneralRe: CDATA? Pin
Anonymous1-Apr-03 19:06
Anonymous1-Apr-03 19:06 
GeneralRe: CDATA? Pin
Ray Cassick1-Apr-03 19:08
Ray Cassick1-Apr-03 19:08 
GeneralTransparent GIF in .NET Pin
Paul Watson26-Mar-03 8:42
sitebuilderPaul Watson26-Mar-03 8:42 
GeneralRe: Transparent GIF in .NET Pin
Daniel Turini26-Mar-03 9:32
Daniel Turini26-Mar-03 9:32 
GeneralIE PNG Problem, save as 8bit Pin
Paul Watson26-Mar-03 21:01
sitebuilderPaul Watson26-Mar-03 21:01 
GeneralRe: Transparent GIF in .NET Pin
leppie26-Mar-03 12:01
leppie26-Mar-03 12:01 
General32bit to 8bit PNG conversion? Pin
Paul Watson26-Mar-03 21:06
sitebuilderPaul Watson26-Mar-03 21:06 
GeneralRe: 32bit to 8bit PNG conversion? Pin
Stephane Rodriguez.28-Mar-03 3:18
Stephane Rodriguez.28-Mar-03 3:18 
GeneralRe: 32bit to 8bit PNG conversion? Pin
Paul Watson1-Apr-03 7:23
sitebuilderPaul Watson1-Apr-03 7:23 
QuestionHow old is .net ( C#, ... ) Pin
Maximilien26-Mar-03 7:24
Maximilien26-Mar-03 7:24 
AnswerRe: How old is .net ( C#, ... ) Pin
Stephane Rodriguez.26-Mar-03 8:15
Stephane Rodriguez.26-Mar-03 8:15 
AnswerRe: How old is .net ( C#, ... ) Pin
Michael P Butler1-Apr-03 7:51
Michael P Butler1-Apr-03 7:51 

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.