2
Answers

?RTF Viewer for C# (WebForms)?

Photo of s_rademeyer

s_rademeyer

21y
2.7k
1
Hi All! I am aware that this is not the Web Forms section of the forum, but you guys don't have a Web Forms section, so I thought I'd post my question here. I'm looking for a tool/component with which I can open a .RTF file in C# (WebForms). WordPad can open this type of file, but I need to open a .RTF file with C# (WebForms). I have tried to open a .RTF file with IE, but it doens't work, so now I'm looking for a tool of some kind. Can anyone help me with this, or have any suggestions how I can open such a file with C# (WebFroms)? Thanks Sean

Answers (2)

0
Photo of Administrator
Admin 2.3k 1.3m 22y
MSComctlLib.ListItem loItem; ListView1.ListItems.Add( , "prussell", "Paul Russell"); ListView1.ListItems.Add( , "dburton", "Dexter Burton"); ListView1.ListItems.Add( , "jthornton", "James Thornton"); loItem = ListView1.ListItems["dburton"]; if(!loItem == null) { debug.print("Found Dexter Burton"); } This is the basic syntax you need to use, I'm not sure if it's all correct as I develop web and not windows interfaces. Good Luck