Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
11% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
10
Posts with Downvotes
10
Downvoting Members
6
4 Commented Posts
~11.0K People Reached
Favorite Tags
Member Avatar for pratikasthana17

Hi, I am Developing Desktop application in VS2008 with C#. I wan to send SMS using my C# Application. Can any one give me idea abt that. Thanks in Advance Pratik Asthana

Member Avatar for szurcsii
0
449
Member Avatar for GAME

Is there a way to get a Message from a website(like copy it), then have it show up in a textbox? If, so can you provide an example?

Member Avatar for jakemdrew
0
847
Member Avatar for GAME

Hi. I am using Mailinator.com and I need to click on a subject called "COMPUTER BILD SPIELE-Aktion: Avatar-Hubs". Basically I just get the part of the link and input it into my web browser called webBrowser1 and retrieve the text... The html looks like this: [code]<table id="inboxList"> <tbody><tr> <th width="180">From:</th> …

Member Avatar for GAME
0
110
Member Avatar for GAME

Does anyone have any examples on getting text from an image? My images look like this, but a little different each time... [IMG]http://i53.tinypic.com/e7xdnm.jpg[/IMG]

Member Avatar for Momerath
0
79
Member Avatar for GAME

How would I get text from HTML on a website? This is all I know to get to it but its only the elements; webBrowserMain.Document.GetElementById("footer").Children GetElementsByTagName("ptz-footer") GetElementsByName("ptz_value") The ptz_value has the text I want to retrieve. Thanks...

Member Avatar for GAME
0
96
Member Avatar for GAME
Member Avatar for kvprajapati
0
52
Member Avatar for GAME

Hello, I need some help getting started with saving all the items in a listview with a savefiledailog. The items in the list look like this IP , port. The IP and port are in different columns. The IP is in the first column and the IP is in the …

Member Avatar for Mitja Bonca
0
963
Member Avatar for GAME

How could I login to HostMonster, then go to the Remote MySQL and add IP address?

Member Avatar for Ketsuekiame
0
152
Member Avatar for GAME

Could anyone point me into the right direction on how to make a C# SQL Datalogin?

Member Avatar for GAME
0
146
Member Avatar for GAME
Member Avatar for kvprajapati
-1
97
Member Avatar for painejake

I work in a school and i am currently working on a program which can switch the proxy settings on-the-fly in Windows Vista and Windows 7. So far my code works fine if the browser is restarted but it doesn't on-the-fly. The settings will change once without a restart but …

Member Avatar for ProxyFake
0
754
Member Avatar for GAME

How can I remove all the items of a list? I do not know any thing about how the items get indexed, thats why I cannot provide a better code except this.. [code] for (int i = 0; i < _Cars.Count; i++) { } [/code]

Member Avatar for Geekitygeek
0
90
Member Avatar for GAME

Hello, I have the code in the snippet that takes a long time to display and image. Whats the best way, I can optimize the response speed? [code] private void _GetImage(string text) { try { string html; using (WebClient wc = new WebClient()) { //Set the game's title ID page …

Member Avatar for GAME
0
235
Member Avatar for GAME

Really this is all a list. I would like to make it not seem like a list. [code] private void GetCarType(string Text) { if (Text == "76705F76775F676F6C665F3833") txtType.Text = "Golf GTI"; if (Text == "76705F6175645F72385F303800") txtType.Text = "Audi R8"; if (Text == "76705F6368765F636F62616C74") txtType.Text = "Cobalt SS"; if (Text == …

Member Avatar for PierlucSS
0
107
Member Avatar for GAME

I am trying to remove all listbox items that contain all spaces(11).I am stuck. This code doesnt remove the items [code] for (int i = 0; i < tree.Items.Count; i++) { if (tree.Items[i].ToString().Contains(" ")) { tree.Items.RemoveAt(i); } } [/code]

Member Avatar for Geekitygeek
0
131
Member Avatar for rjthomas8

i have a form which once a button is clicked opens a new form via showdialog(). i want to send data from this new form back to the original form but am new to programming and have become very confused with the parent child relationships of forms. How would i …

Member Avatar for Geekitygeek
0
141
Member Avatar for GAME

When I try to use this code on my ListBox, only the select index 0 executes. [code] #region SelectedIndex0 if (listBox2.SelectedIndex == 0) { SelectedIndex0(); } else { return; } #endregion #region SelectedIndex1 if (listBox2.SelectedIndex == 1) { SelectedIndex1(); } else { return; } #endregion[/code]

Member Avatar for Rogachev
0
93
Member Avatar for GAME

Hello, I am trying to get the selected node' cells text from the second column. How would I do that? I have already been able to get the text from the first column of the parent node.

Member Avatar for GAME
0
80
Member Avatar for GAME

My program won't display all the text on a webpage, it basically only reads the first line. I am using a rich textbox to display the text. [code] void readrss() { try { newstxt.Text = string.Empty; StreamReader x = new StreamReader(WebRequest.Create("http://www.xample.net/").GetResponse().GetResponseStream()); newstxt.Text += x.ReadLine(); x.Close(); newstxt.Text = newstxt.Text.Replace("<", "•"); } …

Member Avatar for GAME
0
96
Member Avatar for GAME

I need to exicute multiple lines of commands in CMD, how would I do that?

Member Avatar for finito
0
145
Member Avatar for GAME

Hello, I was wondering if there was a way to cascade the windows any where on a form like in the middle or near the top left hand corner. I dont want the windows to cascade in the top left. I can provide a pic if needed.

Member Avatar for nick.crane
0
153
Member Avatar for GAME
Member Avatar for nick.crane
0
127
Member Avatar for andrewb

I need to register to a site programmatically and I used an object named webbrowser1 The problem is that there is some object with the same name in the web form like this [CODE] <p><input type="submit" value="Continue" [B]name="submit" [/B]style="width:250px;"></p> <input style="font-size:8pt; background-color:#221e1f; color:#e7e7e9;" type="submit" [B]name="Submit"[/B] value="Login" />[/CODE] so I can't …

Member Avatar for GDICommander
0
97
Member Avatar for GAME

Hello, I have a void that goes like this [COLOR="Red"]private void Blah(Stream File)[/COLOR] Then When I go to use it I want to use it like this [COLOR="Red"]Blah(path)[/COLOR] [COLOR="Red"]The path represents a file.name[/COLOR]. It is real complicated. I mean over a 1000 lines of code for the [COLOR="red"]Blah(Stream File)[/COLOR] The …

Member Avatar for Geekitygeek
0
117
Member Avatar for UNOWN

Hey guys, I am working on a small program in C# and need to figure out how to do this. I tried googling it, but nothing but local text file help comes up. So what im wanting to know is, how to write text to an online textfile such as …

Member Avatar for GAME
0
132
Member Avatar for GAME

When I made my form to IsMdiConainer, i turned the back color of my form to a gray color. Is there any way I can change the color. Also im using DotNetBar.

Member Avatar for GAME
-1
78
Member Avatar for GAME

Hello, I am trying to use this code: [code] PictureBox1.ImageLocation = "http://avatar.xboxlive.com/avatar/" & TextBox1.Text & "/avatar-body.png".Replace(" ", "%20%"); [/code] The error I get is: [code]Error 2 Operator '&' cannot be applied to operands of type 'string' and 'string' C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\Lucky Se7en\Lucky Se7en\GamercardViewer.cs 27 37 Lucky Se7en …

Member Avatar for Lusiphur
0
223
Member Avatar for GAME

Hello, I have I program that makes text turn into int32. I would like to convert the int32 (int32 is inside the text box) to text. Any ideas? Nothing on google.

Member Avatar for Lusiphur
0
268
Member Avatar for GAME

If youre using Microsoft.VisaulBasic, youre suppose to be able to use ProjectData, but I cant. Any suggestions?

Member Avatar for GAME
0
89
Member Avatar for GAME

Hello, I have a code that adds proxies to a richtext box, and I would like to make it add each proxy to the list box, Ive tried many things. Can anyone help? [code]private void Button1_Click(object sender, EventArgs e) { string innerHtml; IEnumerator enumerator; try { if (this.WebBrowser1.Url != new …

Member Avatar for GAME
0
120