Click here to Skip to main content
15,896,402 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problem with IIF() in C# Pin
Tuwing.Sabado6-Nov-06 21:59
Tuwing.Sabado6-Nov-06 21:59 
QuestionI got confused with "Interop.Outlook" and "Microsoft.Office.Interop.Outlook" Pin
OctopusThu6-Nov-06 20:41
OctopusThu6-Nov-06 20:41 
QuestionTrapeze-shaped form... Pin
c_onica6-Nov-06 20:09
c_onica6-Nov-06 20:09 
AnswerRe: Trapeze-shaped form... Pin
AB77717-Nov-06 1:15
AB77717-Nov-06 1:15 
GeneralRe: Trapeze-shaped form... Pin
c_onica8-Nov-06 2:10
c_onica8-Nov-06 2:10 
Questionplease help me................ Pin
choorakkuttyil6-Nov-06 19:54
choorakkuttyil6-Nov-06 19:54 
QuestionCreate chm file Pin
Rahul.RK6-Nov-06 19:29
Rahul.RK6-Nov-06 19:29 
AnswerRe: Create chm file Pin
Pete O'Hanlon7-Nov-06 2:14
mvePete O'Hanlon7-Nov-06 2:14 
Assuming that you want to create a help file from your code, you need to document your methods with the XML document markup, e.g:

/// <summary><br />
/// Method to do something interesting.<br />
/// </summary><br />
/// <param name="interesting">An interesting parameter.</param><br />
public void DoSomethingInteresting()<br />
{<br />
}


You also need to set your project to produce the XML markup in the using /doc. To do this, select the project properties then Build and switch the configuration to All Configurations. Assuming that you are using VS2005, you need to check the XML documentation file checkbox and enter the name of the project in the corresponding textbox.

Next, do a build to produce the XML documentation.

Finally, you need to use something like Sandcastle to convert the XML to CHM. I would suggest that you do a search for Sandcastle on CP to find articles on using it.

Arthur Dent - "That would explain it. All my life I've had this strange feeling that there's something big and sinister going on in the world."
Slartibartfast - "No. That's perfectly normal paranoia. Everybody in the universe gets that."

Deja View - the feeling that you've seen this post before.

QuestionMarshalling - Structure inside Structure Pin
kk_vp6-Nov-06 18:14
kk_vp6-Nov-06 18:14 
Questionhow do i compare two datagrid views? Pin
Tilewa6-Nov-06 18:00
Tilewa6-Nov-06 18:00 
AnswerRe: how do i compare two datagrid views? Pin
Stathread6-Nov-06 18:20
Stathread6-Nov-06 18:20 
GeneralRe: how do i compare two datagrid views? Pin
Tilewa6-Nov-06 20:48
Tilewa6-Nov-06 20:48 
GeneralRe: how do i compare two datagrid views? Pin
Stathread7-Nov-06 3:59
Stathread7-Nov-06 3:59 
QuestionIsuses with timers + fast intervals Pin
bankai1236-Nov-06 17:33
bankai1236-Nov-06 17:33 
AnswerRe: Isuses with timers + fast intervals Pin
kselman6-Nov-06 17:52
kselman6-Nov-06 17:52 
AnswerRe: Isuses with timers + fast intervals Pin
Stathread6-Nov-06 17:57
Stathread6-Nov-06 17:57 
GeneralRe: Isuses with timers + fast intervals Pin
bankai1236-Nov-06 18:11
bankai1236-Nov-06 18:11 
AnswerRe: Isuses with timers + fast intervals Pin
Martin#6-Nov-06 21:00
Martin#6-Nov-06 21:00 
AnswerRe: Isuses with timers + fast intervals Pin
Coding C#7-Nov-06 0:09
Coding C#7-Nov-06 0:09 
AnswerRe: Isuses with timers + fast intervals Pin
S. Senthil Kumar7-Nov-06 5:53
S. Senthil Kumar7-Nov-06 5:53 
AnswerRe: Isuses with timers + fast intervals Pin
Martin#7-Nov-06 8:16
Martin#7-Nov-06 8:16 
GeneralRe: Isuses with timers + fast intervals Pin
bankai1237-Nov-06 21:27
bankai1237-Nov-06 21:27 
QuestionC# 2.0 ASP.NET Postback & ObjectDataSource Pin
kselman6-Nov-06 17:30
kselman6-Nov-06 17:30 
AnswerRe: C# 2.0 ASP.NET Postback & ObjectDataSource Pin
Christopher Duncan7-Nov-06 3:20
Christopher Duncan7-Nov-06 3:20 
Questionusing WinForms control from another thread Pin
peterchen6-Nov-06 13:09
peterchen6-Nov-06 13:09 

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.