Click here to Skip to main content
15,921,959 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert.ToDateTime Problem Pin
Support1237-Nov-06 2:59
Support1237-Nov-06 2:59 
AnswerRe: Convert.ToDateTime Problem Pin
lainoo7-Nov-06 13:40
lainoo7-Nov-06 13:40 
QuestionImage displaying on a form in treeview....a fileload error Pin
samtam6-Nov-06 21:57
samtam6-Nov-06 21:57 
AnswerRe: Image displaying on a form in treeview....a fileload error Pin
beatles16926-Nov-06 23:14
beatles16926-Nov-06 23:14 
Questionhow to assign relative path to the initialdirectory property of openfiledialog in C# Pin
kalaveer6-Nov-06 21:53
kalaveer6-Nov-06 21:53 
AnswerRe: how to assign relative path to the initialdirectory property of openfiledialog in C# Pin
V.6-Nov-06 22:40
professionalV.6-Nov-06 22:40 
GeneralRe: how to assign relative path to the initialdirectory property of openfiledialog in C# Pin
kalaveer7-Nov-06 0:44
kalaveer7-Nov-06 0:44 
GeneralRe: how to assign relative path to the initialdirectory property of openfiledialog in C# Pin
V.7-Nov-06 0:46
professionalV.7-Nov-06 0:46 
QuestionProblem with IIF() in C# Pin
M Riaz Bashir6-Nov-06 20:46
M Riaz Bashir6-Nov-06 20:46 
AnswerRe: Problem with IIF() in C# Pin
CWIZO6-Nov-06 20:50
CWIZO6-Nov-06 20:50 
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 

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.