blah blah blah is here! blah blah » Close

0
votes
1 answers

C#, inconsistencies in Windows folder contents?

Hello, Say I've got this location: C:\Windows\System32\config\systemprofile\AppData\Local\LogMeIn Hamachi, I browse to it with explorer (I've got admin-rights), systemprofile is read-only, but no problem. The folder contains 7 arbitrary ...

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

C# Winform: How to print the content of a ListView?

how do I print the contents of a ListView (with all the ColumnHeaders), but remove the Scrollbar? thanks.

0
votes
3 answers

wpf compare button content to string

i'm looking to compare button content in wpf i have a button with "Start" written in it, i need it to change to "Stop" in code, so i tried this: [code] if (btnStart.Content.ToString() == "Start") { ...

Feedback