Click here to Skip to main content
15,908,841 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to convert word (.doc) file to .xml or .html Pin
Member 21602212-Nov-03 18:06
Member 21602212-Nov-03 18:06 
GeneralRe: How to convert word (.doc) file to .xml or .html Pin
Member 21602212-Nov-03 19:47
Member 21602212-Nov-03 19:47 
GeneralRe: How to convert word (.doc) file to .xml or .html Pin
Heath Stewart13-Nov-03 2:58
protectorHeath Stewart13-Nov-03 2:58 
GeneralGetting other applications window components Pin
koatto11-Nov-03 22:09
koatto11-Nov-03 22:09 
GeneralRe: Getting other applications window components Pin
Heath Stewart12-Nov-03 3:26
protectorHeath Stewart12-Nov-03 3:26 
Generalc# applet IE sandbox Pin
Sergiu11-Nov-03 20:27
Sergiu11-Nov-03 20:27 
GeneralRe: c# applet IE sandbox Pin
Heath Stewart12-Nov-03 3:14
protectorHeath Stewart12-Nov-03 3:14 
GeneralRe: c# applet IE sandbox Pin
Sergiu12-Nov-03 3:38
Sergiu12-Nov-03 3:38 
Did you used .NET Framework 1.0 before? I think I got out of the sendbox with a my custom control. I ran this code and it works (and I think it shouldn't work):
<br />
		private void button1_Click(object sender, System.EventArgs e)<br />
		{<br />
			try<br />
			{<br />
				OpenFileDialog dialog = new OpenFileDialog();<br />
				if(dialog.ShowDialog() == DialogResult.OK)<br />
				{<br />
					System.IO.StreamReader r = new System.IO.StreamReader(dialog.OpenFile());<br />
					MessageBox.Show(r.ReadToEnd());<br />
				}<br />
			}<br />
			catch(Exception ex)<br />
			{<br />
				MessageBox.Show(ex.StackTrace);<br />
			}<br />
		}<br />


I opened a file from the disk.

Sergiu.
GeneralRe: c# applet IE sandbox Pin
Heath Stewart12-Nov-03 4:09
protectorHeath Stewart12-Nov-03 4:09 
General= operator Pin
mhmoud rawas11-Nov-03 20:13
mhmoud rawas11-Nov-03 20:13 
GeneralRe: = operator Pin
Arjan Einbu11-Nov-03 21:46
Arjan Einbu11-Nov-03 21:46 
GeneralRe: = operator Pin
mhmoud rawas11-Nov-03 23:30
mhmoud rawas11-Nov-03 23:30 
GeneralRe: = operator Pin
Arjan Einbu12-Nov-03 0:52
Arjan Einbu12-Nov-03 0:52 
GeneralRe: = operator Pin
mhmoud rawas12-Nov-03 18:07
mhmoud rawas12-Nov-03 18:07 
GeneralRe: = operator Pin
Heath Stewart12-Nov-03 3:44
protectorHeath Stewart12-Nov-03 3:44 
GeneralRe: = operator Pin
mhmoud rawas12-Nov-03 18:21
mhmoud rawas12-Nov-03 18:21 
GeneralRe: = operator Pin
UCVishnu11-Nov-03 23:02
UCVishnu11-Nov-03 23:02 
GeneralRe: = operator Pin
mhmoud rawas11-Nov-03 23:26
mhmoud rawas11-Nov-03 23:26 
GeneralDockable and Floatable toolbar Pin
azusakt11-Nov-03 19:42
azusakt11-Nov-03 19:42 
Questionhow to use ISAPI extension in my web server Pin
laurentz11-Nov-03 19:24
laurentz11-Nov-03 19:24 
AnswerRe: how to use ISAPI extension in my web server Pin
Heath Stewart12-Nov-03 3:52
protectorHeath Stewart12-Nov-03 3:52 
GeneralWorking with C# and Databases Pin
UCVishnu11-Nov-03 16:35
UCVishnu11-Nov-03 16:35 
GeneralRe: Working with C# and Databases Pin
Heath Stewart11-Nov-03 17:40
protectorHeath Stewart11-Nov-03 17:40 
GeneralRe: Working with C# and Databases Pin
Anonymous11-Nov-03 22:52
Anonymous11-Nov-03 22:52 
QuestionHow do I make the Form Menu Hide or SHOW with ESC key? Pin
CSharp131411-Nov-03 12:06
CSharp131411-Nov-03 12:06 

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.