- 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
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?
Could anyone convert a delphi project to C# for me?
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]
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.
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 …
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 …
Hello, Right now I have like 11 forms on my program. When I debug my program, my program keeps loading every 1 second (with the timer and the mouse). All the mouse icons are default. Is there any way to make a program faster?
How would I get the response of a webrequest and search for a certain text?
Is there any way to make it so a .dll is not visible? Or is there a way to import a .dll into your program, so its not outputted on debug?
On my form, I have a webbrowser, that navigates to nothing on start. But on webBrowser navigated I have this code, but the msbBox keeps showing on start up. [code] if (webBrowser1.DocumentText.Contains("Hello")) { this.Text = "iUltimate - Cheating Zone - " + txtUser.Text; } else { MessageBox.Show("Error, please try again. …
How would I extract proxies from a website and then display them on a listbox. I was thinking about doing webRequest. Can anyone help me out with the coding?
Is there anyway, I can have my richtextbox display this character("•") with it showing the box like shape(when the richtextbox doesnt know how to read the character)?
How would I be able to make a child form come to front on a button click?
How would I be able to check if a checkbox is checked from a childform and use that information on the parent?
How would I create a webrequest, that goes to a site, and clicks a button, that is a img/ or a id? I know how to create a webrequest. Now how do I click a img/ or a id? [code] // Create a request for the URL. WebRequest request = …
This is my regex originally from VB. [code]using System.Text.RegularExpressions;[/code] [code] #region "Regex" public object preg_match(System.Object sRegex, System.Object sHaystack) { // Declare some varis MatchCollection Matches = default(MatchCollection); // My Regex to match some text. It is actually a whole <div> block. Regex TheRegex = new Regex("sRegex"); // Get the Source …
I need to be able to check one textbox and another one on keypress. If both textbox characters are over 4 characters then a button will become enabled. So far... I have.... [code] private void txtUser_KeyPress(object sender, KeyPressEventArgs e) { if (txtUser.Text.Length >= 4 && txtUser.Text.Length < 20) { btnLogin.Enabled …
I need to copy 160 textbox's text and put it onto the clipboard. Here is what I have so far: [code] List<TextBox> boxes = new List<TextBox>() { textBoxX1, textBoxX2, textBoxX3, textBoxX4, textBoxX5, textBoxX4, textBoxX4, textBoxX5, textBoxX6, textBoxX7, textBoxX8, textBoxX9, textBoxX10, textBoxX11, textBoxX12, textBoxX13, textBoxX14, textBoxX15, textBoxX16, textBoxX17, textBoxX18, textBoxX19, textBoxX20, …
Anyone know how to open a form inside of a form, that way it doesn't open a new process/ a new bar at the bottom? How would I do this?
I need to be able to count the textbox characters on a keypress, how would I do that?
Im am trying to create a custom PHP code on SMF v1.1.1 My task: To get my HTML to be the same as the attchment What I am asking I am asking for anyone to help me create PHP codes to make the HTML be the same as the attchment. …
If I were to be doing this, I would simply extract the data from the HTML.
Is there anything im doing wrong? [code] void SaveProxies() { string[] items = new string[Proxies.Items.Count]; Proxies.Items.CopyTo(items, 0); string saveValue = string.Join(",", items); Share_Cash_Downloader_v0._2._9._5.Properties.Settings.Default.Proxies = saveValue; } void LoadProxies() { string[] items = Share_Cash_Downloader_v0._2._9._5.Properties.Settings.Default.Last.Split(','); foreach (string str in items) Proxies.Items.Add(str); } [/code] I use LoadProxies to load the save, from the …
1. Highlight the image with your mouse. 2. Right Click 3.View Image info
Ok, I have a code that I only want to use for the first form1 load, so that means never use it agian. So how do I use a code once then never use it again?
I would like my webBrowser to run off proxys from a listbox. Everytime it were to start over I would like it to go down the list of proxys and choose the next one. My program is a webBrowser bot.
The End.
GAME