- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 10
- Posts with Downvotes
- 10
- Downvoting Members
- 6
63 Posted Topics
Re: You can do it using a email. Like verison is @vtext.com and AT&T is @txt.att.net I know lots of them. | |
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? | |
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> … | |
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] | |
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... | |
| |
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 … | |
How could I login to HostMonster, then go to the Remote MySQL and add IP address? | |
Could anyone point me into the right direction on how to make a C# SQL Datalogin? | |
| |
Re: 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] | |
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] | |
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 … | |
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 == … | |
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] | |
Re: 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 = ...; | |
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] | |
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. | |
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("<", "•"); } … | |
I need to exicute multiple lines of commands in CMD, how would I do that? | |
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. | |
How can I create a a invisible form background? I dont want to use opacity. | |
Re: Do you still want to know how to do what you are trying to do? | |
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 … | |
Re: 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 … | |
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. | |
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 … | |
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. | |
If youre using Microsoft.VisaulBasic, youre suppose to be able to use ProjectData, but I cant. Any suggestions? | |
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 … |
The End.