Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~7K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Rageagainst20

Hello, how do you get data from an individual cell from a datagrid (not datagridview)

Member Avatar for finito
0
63
Member Avatar for Rageagainst20

Hello, I am using Compact Framework for an Intermec CN3 I am watching a textbox's length and then automatically triggering an event when scanning a barcode (Using Code 128 barcodes) [CODE] private void txtBox_TextChanged(object sender, EventArgs e) { if (txtBox.Text.Length == 16) { DoMethod(); } else { ///Does nothing } …

Member Avatar for ddanbe
0
245
Member Avatar for Rageagainst20

Hello, I am trying to get a response from a URL using the following method [CODE]public void IsUrlReachable() { HttpWebRequest webRequest; WebResponse webResponse = null; //Need to assign this as null otherwise it does not compile try { webRequest = WebRequest.Create("http://[myurl].asmx"); webRequest.Method = "GET"; webRequest.KeepAlive = false; webResponse = webRequest.GetResponse(); …

Member Avatar for Rageagainst20
0
164
Member Avatar for Rageagainst20

I am currently developing an application which needs to check whether the device's Wifi is connected to it's network (Just return a boolean). I have no ideas where to start this as I am still a beginner, so this is more of a request of guidance than direct help. I …

Member Avatar for Rageagainst20
0
137
Member Avatar for Rageagainst20

I am trying to delete a file when my program draws itself (Using Visual Studio 2008). Currently using this method [CODE] public frmMainMenu() { InitializeComponent(); File.Delete("\\Program Files\\smartdeviceproject1\\SendXML\\1.txt"); }[/CODE] The path for the file is "\Program Files\smartdeviceproject1\SendXML\1.txt" Yet when the program is executed, breakpointing shows that the line is executed (and …

Member Avatar for Geekitygeek
0
184
Member Avatar for Rageagainst20

I am creating an application that has a thread which constantly moves the contents of one folder to another (Using Visual Studio, Compact Framework) I start the thread like this [CODE]public static class Program { /// <summary> /// The main entry point for the application. /// </summary> /// [MTAThread] public …

Member Avatar for kplcjl
0
7K