Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~1K People Reached
PC Specs
I prefer Linux as Windows has given me too many problems over the years. I also have about a dozen computers,…
Favorite Forums
Member Avatar for JamesGeddes

Hi Everyone, I need to write to a text file that is located on my website Currently, I have the following code to let me read from a text file on my website [CODE]HttpWebRequest reqFP3 = (HttpWebRequest)HttpWebRequest.Create("http://jamesgeddes.com/tracknan/phone3.txt"); HttpWebResponse rspFP3 = (HttpWebResponse)reqFP3.GetResponse(); Stream st3 = rspFP3.GetResponseStream(); using (StreamReader sr3 = new …

Member Avatar for softwareskill
0
758
Member Avatar for JamesGeddes

Hi Everyone, I'm making a windows mobile app in C# that aims to help those affected by Alzheimer's Disease Part of it needs to send text messages at 5 minute intervals, however, the rest of the C# program needs to continue at the same time. I know that when you …

Member Avatar for Cory_Brown
0
126
Member Avatar for JamesGeddes

Reading from a text file on your local computer is easy, but surely using a URL to point to a different location should work too? The code I have thus far is as follows [CODE] 1. using System; 2. using System.IO; 3. 4. namespace csharp_station.howto 5. { 6. class TextFileReader …

Member Avatar for jonsca
0
246
Member Avatar for JamesGeddes

Hi Everyone, I'm making a Windows Mobile 6 application in C# to help all those affected by Alzheimer's as well as similar conditions One bit of that requires that my C# app gets a mobile number from a .txt file on my website, then sends an SMS Text message to …

-1
72
Member Avatar for JamesGeddes

Hi Everyone! I've just got a new HTC HD2, which comes with a digital compass. This lets you go to google maps and tap on a point, then the compass will point you towards it. Similarly, I'm making some software for windows mobile (using C#) where I need to set …

0
54