Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~5K People Reached
Member Avatar for kytro360

Hello, I am trying to multithread a listBox which has URL's in it. Basically what I am trying to do is to make it so each thread I make, will visit one of the URL's in the listBox and do a GET request. I was wondering how do I make …

Member Avatar for kytro360
0
221
Member Avatar for kytro360

Hi, Does anyone know how to create a delay in C#? I dont like to use Thread.Sleep because it makes the GUI unresponsive. Do you know of any good alternatives?

Member Avatar for Mitja Bonca
0
289
Member Avatar for kytro360

I have a listbox filled with different items. For each item in the list it will visit a site in the web browser, the user using the software fills out text on the page, then it moves down the list. How can I make it so it iterates down the …

Member Avatar for zachattack05
0
230
Member Avatar for kytro360

Hello, I have several items in a list box and I have the code to make it iterate down. How can I make the program wait till each action is completed before going to the next item? Whats happening now is it waits till the page loads then just iterates …

Member Avatar for lolafuertes
0
76
Member Avatar for kytro360

Hello, I have a file I saved as an XML file and want different parts of the file to display in two text boxes. What is happening is the whole content of the file displays in a textbox as: [CODE] <?xml version="1.0" encoding="utf-16"?> <text> h hkj </text>[/CODE] ...in both text …

Member Avatar for ChrisHunter
0
527
Member Avatar for kytro360

I am trying to do a httpwebrequest with a proxy and everytime I try to do it I get this error: [QUOTE]The underlying connection was closed: An unexpected error occurred on a receive. [/QUOTE]

Member Avatar for lvnetwork
0
838
Member Avatar for kytro360

Hows it going? In my program I want it to download certain messages, open them, find the HTML link, and at the moment want it to display it in a listBox. I am using the dll OpenPop for this. So far thats not happening and the only thing thats appearing …

0
99
Member Avatar for kytro360

I want my program to do two back to back webrequests. The first one fills out the form on the page. The second webrequests a page which submit the data from the previous webrequest. I tried doing this but I keep getting this error: [QUOTE]The request was aborted: The connection …

Member Avatar for riteshbest
0
309
Member Avatar for kytro360

Hi I want to create a new thread for each item in a numericupdown. I want each thread to perform an object. I have this code, but Im not sure if its correct. Please check: [CODE] for (int i = 0; i < numericUpDown1.Value; i++) { Thread t = new …

Member Avatar for Momerath
0
167
Member Avatar for kytro360

I am trying to run the following code in a thread but I keep getting this error: [QUOTE][QUOTE]Cross-thread operation not valid[/QUOTE][/QUOTE] for both listboxes. Heres the code I am using: [CODE] try { for (int i = 0; i < listBox4.Items.Count; i++) { listBox4.SetSelected(i, true); listBox5.SetSelected(i, true); listBox4.SelectedItem.ToString(); string[] details …

Member Avatar for nick.crane
0
249
Member Avatar for kytro360
Member Avatar for kytro360

I want to post data to a form with sockets. I know I cant just post directly to the HTML of the site but how would I go about doing so?

0
79
Member Avatar for kytro360

I have this httpwebrequest where I connect to a site and fill data to a form. The site has javascript that makes sure the data you submit to the form is unique so when I am running my httpwebrequest and load the document text in a browser is shows that …

Member Avatar for kytro360
0
70
Member Avatar for kytro360

I have a for loop that loops with a listbox. For each item in the listbox I want to perform a httpwebrequest. My loop is doing the first item then occasionally just iterates down the list not doing the httpwebrequest for the other items. Im not sure if theres not …

Member Avatar for kytro360
0
712
Member Avatar for kytro360

I need to add some code to my References.cs file because I am working with proxies but I cant find it in Solution Explorer even though I already clicked it to show all files. Where is it located?

Member Avatar for Momerath
0
62
Member Avatar for kytro360

This code is giving me an error: [CODE]RefreshIESettings(listBoxProxies.SelectedItem);[/CODE] The full code that the above is in is: [CODE]if (listBoxProxies.SelectedIndex < listBoxProxies.Items.Count - 1) { listBoxProxies.SelectedIndex = listBoxProxies.SelectedIndex + listBoxProxies.SetSelected(listBoxProxies.SelectedIndex, true); RefreshIESettings(listBoxProxies.SelectedItem); } [/CODE] I am working with proxies and basically I want my program to select a random proxy from …

Member Avatar for farooqaaa
0
157
Member Avatar for kytro360

I want my program to log in to the users email account with the information they provide and click on the emails and then click the links inside the email? If you know how to do this in browser or httpwebrequest Im all ears. Thanks.

Member Avatar for kytro360
0
97
Member Avatar for kytro360

I want to save the text from several textboxes to a textfile. Then once I save it I want to open it and all the text go to their appropiate textbox. With my code when I click save it saves the file. I open the file from my computer (not …

Member Avatar for kytro360
0
135
Member Avatar for kytro360

What I am trying to do is make a program that lets the user save profiles and open profiles. When they save the project I want all the fields in the text fields to be saved into a file. Also lets say they want to open another project how can …

0
79