M Mark B May 31, 2010 #1 How do I programmatically copy SpecialNote.txt from my C#'s project resources to C:\Notes\ on user's PC at runtime?
How do I programmatically copy SpecialNote.txt from my C#'s project resources to C:\Notes\ on user's PC at runtime?
F Family Tree Mike May 31, 2010 #2 How do I programmatically copy SpecialNote.txt from my C#'s project resources to C:\Notes\ on user's PC at runtime? Click to expand... Why did you ask this here and in the vb group with a slight modification?
How do I programmatically copy SpecialNote.txt from my C#'s project resources to C:\Notes\ on user's PC at runtime? Click to expand... Why did you ask this here and in the vb group with a slight modification?
M Mark B May 31, 2010 #3 System.Text.ASCIIEncoding myEncoding = new System.Text.ASCIIEncoding(); System.IO.File.WriteAllBytes(myXMLFileLocation, myEncoding.GetBytes(Properties.Resources.AddinUserSettingsXML));
System.Text.ASCIIEncoding myEncoding = new System.Text.ASCIIEncoding(); System.IO.File.WriteAllBytes(myXMLFileLocation, myEncoding.GetBytes(Properties.Resources.AddinUserSettingsXML));
M Mark B May 31, 2010 #4 Because this particular one was urgent for me and I could use http://www.developerfusion.com/tools/convert/csharp-to-vb/ to convert any response.
Because this particular one was urgent for me and I could use http://www.developerfusion.com/tools/convert/csharp-to-vb/ to convert any response.