Click here to Skip to main content
15,913,027 members
Home / Discussions / COM
   

COM

 
QuestionShow Picture In ActiveX control Pin
eraccn8-Jul-07 19:34
eraccn8-Jul-07 19:34 
QuestionRetrieving the COM class factory for component with CLSID failed due to the following error: 80004005. Pin
kalaveer8-Jul-07 0:33
kalaveer8-Jul-07 0:33 
AnswerRe: Retrieving the COM class factory for component with CLSID failed due to the following error: 80004005. Pin
User 2155978-Jul-07 18:17
User 2155978-Jul-07 18:17 
AnswerRe: Retrieving the COM class factory for component with CLSID failed due to the following error: 80004005. Pin
MAW3021-Jul-07 20:42
MAW3021-Jul-07 20:42 
Questionplugin for Mozilla Pin
Dimkov6-Jul-07 6:31
Dimkov6-Jul-07 6:31 
AnswerRe: plugin for Mozilla Pin
User 2155978-Jul-07 18:19
User 2155978-Jul-07 18:19 
Questionwebservice Pin
brsecu6-Jul-07 3:39
brsecu6-Jul-07 3:39 
AnswerRe: webservice Pin
Thomas Chester9-Jul-07 8:04
Thomas Chester9-Jul-07 8:04 
If you declare the class with the Serializable value then ASP.NET will take care of translating it into an XML datatype when it is returned. The added benefit of returning the class, besides returning multiple values, is that the XML elements will have the same name as the fields which in this example are Field1, Field2, and Field3.

<br />
[Serializable]<br />
public class Class1<br />
{<br />
  private string _field1;<br />
  private string _field2;<br />
  private string _field3;<br />
<br />
  public Class1()<br />
  {<br />
  }<br />
<br />
  public Class1(string Value1, string Value2, string Value3)<br />
  {<br />
    this._field1 = Value1;<br />
    this._field2 = Value2;<br />
    this._field3 = Value3;<br />
  }<br />
<br />
  public string Field1<br />
  {<br />
    get { return this._field1; }<br />
    set { this._field1 = value; }<br />
  }<br />
<br />
  public string Field2<br />
  {<br />
    get { return this._field2; }<br />
    set { this._field2 = value; }<br />
  }<br />
<br />
  public string Field3<br />
  {<br />
    get { return this._field3; }<br />
    set { this._field3 = value; }<br />
  }<br />
<br />
}<br />

Questionwhat should i do? Pin
eraccn5-Jul-07 17:30
eraccn5-Jul-07 17:30 
QuestionCall function in remote DLL Pin
Dimkov5-Jul-07 8:06
Dimkov5-Jul-07 8:06 
QuestionATL wizard not adding Get and Put function prototypes to the class definition. Pin
KASR15-Jul-07 1:24
KASR15-Jul-07 1:24 
Questionintegrating COM in a XBAP wpf application Pin
elkev4-Jul-07 22:34
elkev4-Jul-07 22:34 
Questiontimeout breaks object descruction Pin
sdevil13-Jul-07 9:45
sdevil13-Jul-07 9:45 
AnswerRe: timeout breaks object descruction Pin
Mike Dimmick14-Jul-07 7:00
Mike Dimmick14-Jul-07 7:00 
QuestionWhy we need COM? Pin
Nandu_77b3-Jul-07 1:22
Nandu_77b3-Jul-07 1:22 
AnswerRe: Why we need COM? Pin
Steve S3-Jul-07 2:12
Steve S3-Jul-07 2:12 
GeneralRe: Why we need COM? Pin
Nandu_77b3-Jul-07 4:26
Nandu_77b3-Jul-07 4:26 
GeneralRe: Why we need COM? Pin
Steve S4-Jul-07 1:53
Steve S4-Jul-07 1:53 
AnswerRe: Why we need COM? Pin
CPallini3-Jul-07 2:17
mveCPallini3-Jul-07 2:17 
GeneralRe: Why we need COM? Pin
Nandu_77b3-Jul-07 5:50
Nandu_77b3-Jul-07 5:50 
AnswerRe: Why we need COM? Pin
Michael Dunn4-Jul-07 13:39
sitebuilderMichael Dunn4-Jul-07 13:39 
QuestionActiveX Pin
Anil K P1-Jul-07 22:52
Anil K P1-Jul-07 22:52 
Questionunderstanding COM Pin
KASR11-Jul-07 21:32
KASR11-Jul-07 21:32 
AnswerRe: understanding COM Pin
CPallini1-Jul-07 22:01
mveCPallini1-Jul-07 22:01 
QuestionNot able to create folders on exchange 2003 on Windows 2003 Pin
kaushik_Manoj1-Jul-07 19:11
kaushik_Manoj1-Jul-07 19:11 

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.