blah blah blah is here! blah blah » Close

0
votes
1 answers

Why can I only show 50 characters in my C# application?

I have a multiline textbox that I am using to display the results of a couple thousand items I am placing into a SQL database during its runtime; Using a background worker to add all data in. The return value is often greater than 50 cha ...

0
votes
2 answers

C# - Can I Still Get the Source Code?

I have a program that I run in C# that goes to a website and in order to do its functions, I need to get the source code of the page. [code] System.Net.WebClient webClient = new System.Net.WebClient(); string strSource = webClient.Down ...

1
votes
1 answers

C# - Reading a META tag's Content Based on it's Property

I have some code working for my web browser program that is looking to utilize the contents of one of the meta tags. The code I'm using right now works for now: [code]string metaTitleParts = (webBrowser.Document.GetElementsByTagName(&quo ...

0
votes
1 answers

Using an Array in Multiple Labels

I'm sure the answer is simple enough, but I've been trying, unsuccessfully, to take an array of values and place them in separate labels. This way, I can loop the program, in my case, 8 times and only have to have the one line of code rathe ...

Feedback