Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
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.5K People Reached
Favorite Tags

63 Posted Topics

Member Avatar for pratikasthana17

You can do it using a email. Like verison is @vtext.com and AT&T is @txt.att.net I know lots of them.

Member Avatar for szurcsii
0
468
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
858
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
111
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
100
Member Avatar for GAME
Member Avatar for kvprajapati
0
53
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
969
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
155
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
157
Member Avatar for GAME
Member Avatar for painejake

Use this instead [code] void SetProxy(string strProxy) { RegistryKey RegKey = Registry.CurrentUser.OpenSubKey (@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", true); RegKey.SetValue("ProxyServer", strProxy); RegKey.SetValue("ProxyEnable", 1); RegKey.SetValue("ProxyEnable", 0); } [/code]

Member Avatar for ProxyFake
0
759
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
94
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
339
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
109
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
136
Member Avatar for rjthomas8

You could make a string like this. It will be usable on any form. [code]static class Strings { static public string file; }[/code] Then to use it simply Strings.file = ...;

Member Avatar for Geekitygeek
0
155
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
95
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
81
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
104
Member Avatar for GAME

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

Member Avatar for finito
0
152
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
156
Member Avatar for GAME
Member Avatar for nick.crane
0
143
Member Avatar for andrewb
Member Avatar for GDICommander
0
101
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
121
Member Avatar for UNOWN

If I were you I would try to make a thread in the PHP forums. And in the post say, I would like to be able to update the text by entering the text I want to enter in my URL. I did something like to a database. I lost …

Member Avatar for GAME
0
137
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
80
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
332
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
274
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
93
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
123

The End.