| Thread | Last Post | Replies |
|
| The remote server returned an error: (407) Proxy Authentication Re | 30 Nov 2007 15:02 GMT | 3 |
My webcam app runs OK on XP but not on Vista. Here's my code snippet that has been working up until now: System.Net.WebRequest request; System.Net.WebResponse response;
|
| Listview control / selected blue line | 30 Nov 2007 14:59 GMT | 1 |
I'm writing an application in which i have a listview. I'm using Hottracking / Hoverselection properties set to true. This gives me a control with each item looking like a hyperlink, but is there any way to disable the typical blue 'selected line' so that the only visible ...
|
| Design (gui) | 30 Nov 2007 14:06 GMT | 9 |
I have few 2 forms which share common methods and update of one member of form 1 - affect member in form 2 . I thought about placing this mutual functionality in one class and the question is how they will use it? Both of them create it or use one instance?
|
| Label Expand Left | 30 Nov 2007 13:50 GMT | 4 |
I have two labels on a form. The text for these two labels is assigned at runtime. lblLeft lblRight If the text for lblLeft is wider than the default, the text runs into
|
| Running command line from aspx page | 30 Nov 2007 13:32 GMT | 2 |
i'm trying to run a powershell script from a aspx page. Here's the code: //Powershell arguments String powershell = "C:\\WINDOWS\\system32\
|
| concurrency and locking explained | 30 Nov 2007 12:40 GMT | 4 |
I've used locking in various forms in some of the code I've developed at work. Now I have to explain why, to some other programmers. Rather than explain concurrency problems myself I thought I might refer them to an introduction
|
| difference is between using ThreadStart and delegates instead of using BeginInvoke | 30 Nov 2007 11:23 GMT | 1 |
Hello, hopefully someone can help me. I am reading and learning steadily about threading and asynchronous programming, which to me sound like the same thing. At the moment I am not sure what the difference is between using ThreadStart and
|
| Enumerating XML Attribute Nodes | 30 Nov 2007 10:35 GMT | 2 |
I am trying to optimize some c# code that contains lots of code such as String name = null; try {
|
| Static Variables. | 30 Nov 2007 10:35 GMT | 2 |
I have a pretty basic question. I have a C# control with lots of classes and I need few instances(manager classes) shared by all the classes in the conrol. So I define a Static Class and it works OK.
|
| Assembly.GetTypes Exception | 30 Nov 2007 10:22 GMT | 1 |
Assembly a = Assembly.LoadFrom(@"c:\sandbox\iaf.net\serverinstall\IVS.WMS.Category.Server.dll"); Type []t = a.GetTypes(); The GetTypes fails with this message:
|
| System.Threading.Thread Question | 30 Nov 2007 08:53 GMT | 2 |
Hello, Newsgroupians: I've two questions regarding the System.Threading.Thread namespace. First, what is the point of having a ThreadStart parameter? For example... using System.Threading;
|
| The right way from VS2005 to VS2008? | 30 Nov 2007 07:55 GMT | 9 |
Hello NG, I now have the ISO image of VS2008 on my (external drive) :-) Now I am thinking of the right way to go from VS2005 to VS2008. Currently I have VS2005 prof german installed.
|
| html to powerpoint | 30 Nov 2007 06:27 GMT | 2 |
i have seen many examples to save a ppt as html. is there a way to load an html file into a powerpoint file. the ppt must display the web page not the raw HTML thanks
|
| Using "fscan" Equivalent in C# | 30 Nov 2007 06:25 GMT | 13 |
I would like to read the following entries of mixed data types from a ascii text file using C#. This can be easily performed in C using fscanf. Is there an equivalent function in C#? 1 2 1201 1 -0.417597000000000D+06 0.129600000000000D+06
|
| DataGridView -- What row am I on? | 30 Nov 2007 04:14 GMT | 1 |
I like to use the AlternateRow option for DataGridViews, so that the odd rows have a defaut style, and the even rows have an alternate style, usually just a light blue backcolor. Sometimes I need to change the style of cell to give a visual clue
|