| Thread | Last Post | Replies |
|
| Using CreateProcessWithLogonW() without invoking UAC popup in Vista | 08 May 2008 19:15 GMT | 1 |
I am trying to create process using CreateProcessWithLogonW() API. This works fine on Win2000 and NT, but in Vista it gives a UAC popup before the process (say, notepad, calc, etc) kicks off. This is the sample program that I am compiling on .NET
|
| How can I intercept when an item is added or removed from a List<of Type>? | 08 May 2008 18:17 GMT | 8 |
I have a business object that exposes a collection of other objects via a List<of Type>. How can I intercept when an item is either added or removed from this list. Is it possible? private List<Permission> _Permissions;
|
| VS 2008 and Service References | 08 May 2008 17:04 GMT | 2 |
I have a WCF service deployed on IIS. When I browse to the service through IE everything is peachy. When I try to add a reference to the service in Visual Studio 2008 "Add Service Reference" I get prompted to login and the title of the login box reads "Discovery Credential".
|
| A simple question on Threads | 08 May 2008 15:32 GMT | 1 |
Is there a way to find all the threads that are currently active? Is there something like a "Threads" class, similar to the "Controls" class, so that I can do something like: foreach (Thread t in Threads) System.Diagnostics.Debug.Print (t.Name);
|
| Can we read csharp sytle comment block from assembly using reflect | 08 May 2008 14:53 GMT | 2 |
I am trying to read c# sytle comment (///) from assembly using reflection? Is it possible to do so.
|
| Merge RTF files | 08 May 2008 14:28 GMT | 11 |
Does anyone has .NET library to merger RTF files? Thank You Peter
|
| Export to excel | 08 May 2008 14:03 GMT | 3 |
I need to export into excel but not into a new worksheet each time.I want to add the exported dataset onto an existing spreadsheet that already has rows on it. I may have not written this to well. Please any suggestions. Thanks
|
| type converter | 08 May 2008 13:48 GMT | 4 |
I need to convert between 2 identical structs, but they are both in seperate libraries and so I cant just edit either one of them to add explicit operators. they are both 3d vectors, one is the managed directx Vector3,
|
| Can I get an array contining the fields of the DataFormat class. | 08 May 2008 13:38 GMT | 9 |
DataFormat is a class who's fields are static strings. I'd like a foreach loop that loops over those strings. Actually any way to get a copy of all those strings into an array would work.
|
| Problem with EnabelVisualStyles and displaying ToolBarButtons | 08 May 2008 12:39 GMT | 5 |
After adding the Application.EnableVisualStyles() in the Main-Method of my application, i got some strange problems with ToolBarButtons. When the Image of the button is set during designtime everything's ok. But all the buttons
|
| ThreadStatic attribute | 08 May 2008 12:28 GMT | 2 |
I came across the ThreadStatic attribute today, but I'm a bit confused by it. I understand that it makes a variable static to a particular thread, so each thread will have it's own value for it (unlike a regular
|
| polygon with rounded corners | 08 May 2008 12:24 GMT | 6 |
I need to be able to make polygons with rounded corners. This will be to draw group outlines around shapes in a diagramming tool in wpf. all angles in the polygon will be 90 degrees, but somehow I wanted to make the corners a bit rounded (otherwise it will look like an old ...
|
| using Fiddler2 | 08 May 2008 08:28 GMT | 1 |
I want to download same content using httpweb request using fiddler request header and body. I did so many experiements but no luck so far. POST: http://con-www.oddspark.com/info/TanFukuOdds.do?ajaxFlg=true Request header:
|
| Detect location boxes (or lines) on an image | 08 May 2008 04:57 GMT | 10 |
I am wondering if anyone has a [rather] simple approach to detecting the location of boxes and/or lines on an image. For example, if I have an image of a form, and want to find out where all of the boxes and/or lines the form contains for input, how would one find the
|
| Architecture and Net Remoting | 08 May 2008 04:35 GMT | 4 |
Hi friends! What is the best architecture based in Net remoting? is valid get data with datareaders put this data in Generic list and pass it through of n tier?
|