| Thread | Last Post | Replies |
|
| Watch objects in memory in visual studio | 12 Jun 2006 14:28 GMT | 1 |
is there anyway to watch objects which are placed in memory in visual studio. for instance, assume that you have two forms in your application, and your are debgging the application and also one of these forms. what i
|
| Recursive delete for Directory structure with read-only files | 12 Jun 2006 13:17 GMT | 2 |
Is there a way to delete a directory structure with read-only files in it? The Directory.Delete() and DirectoryInfo.Delete() methods both throw an access violation exception if the directory structure contains read-only diles or sub-dirs.
|
| Where is Page.RegisterClientScriptBlock Available? | 12 Jun 2006 09:20 GMT | 9 |
I have used the RegisterClientScriptBlock method in external functions of mine (ones that are saved in a separate *.vb file), where I use them as follows: Public Shared Sub MyFunction(ByVal txtbox As TextBox)
|
| A Failure about ildasm/ilasm MSIL | 12 Jun 2006 08:53 GMT | 2 |
Dear friends, I'm a newer in MSIL , nowadays I have a problem about disassemble/assemble .net MSIL. I found a dll plugin ,i want to dissamble it for studing , so i ildasm
|
| Is it common to delegate most of the legwork to Windows services? | 12 Jun 2006 07:02 GMT | 2 |
I want a process to be running always and it is supposed to do a lot of stuff like: 1. reading and writing to files 2. watching a file system folder
|
| ClickOnce doesn't include data files | 12 Jun 2006 03:04 GMT | 4 |
I have an application that I'd like to deploy via ClickOnce from a NETWORK share server. I've walked through the wizard and deployed the application, but when I run the app all of my data files are missing. I have XML, TXT and custom data files that my application uses during ...
|
| Sending Email Through Exchange With Framework 2.0 | 11 Jun 2006 18:47 GMT | 3 |
I have a web app in C# 2.0 that needs to send email through exchange. I can't use SMTP because I need to keep a history of what is sent. I used MAPI in the past with 1.1 will that still work or is there a better way?
|
| Viewing another applications WndProc (like spy++) | 11 Jun 2006 00:47 GMT | 1 |
I would like to monitor other applications WM_ACTIVATE messages. In win32, this involves a bit of tricky coding involving hooks. But how to do this from a .NET application? Also, please note, I want to monitor all applications not just .NET
|
| Can you develop dotnet app's in Windows Media Center? | 10 Jun 2006 10:04 GMT | 6 |
Can you develop dotnet app's in Windows Media Center?
|
| about [SuppressUnmanagedCodeSecurity] | 10 Jun 2006 07:30 GMT | 2 |
I'm not exactly sur in which context it is valid / usefull. For example will it suppres the stack in the following sample below when using the ScreenGraphics class? (i.e. I wonder if it will work even if it is not applied to the Gdi32 class,
|
| Problem with Dictionary<T,U>.Keys enumerator returning invalid keys | 10 Jun 2006 03:09 GMT | 2 |
I'm experiencing some wierd behavior with a Dictionary<T,U> class using foreach loops, such that the Key returned in the foreach is not contained in the dictionary. code:
|
| Cancel Constructor (Me = Nothing) | 10 Jun 2006 02:38 GMT | 8 |
Most of my Objects have a constructor like this "Public Sub New(ID as Integer)". But when this ID isn't valid, I end up with an instantiated object, that doesn't contain values. Is there a way to kind of cancel the constructor
|
| Remoting TCP vs HTTP | 09 Jun 2006 22:12 GMT | 4 |
hi guys i want to discuss about pro and cons of using tcp in remoting and i would like to see if all techies share their practical experience on this group thanks in advance
|
| Remove Class Attribute with Reflection | 09 Jun 2006 20:26 GMT | 2 |
I am currently stuck with a problem concerning reflection. We have to remove a Custom class attribute from an instance before giving the instance to another subsystem. Is this possible using Reflection ? I know one can get the Custom Attributes
|
| Case-Insensitive SortedList Keys | 09 Jun 2006 20:22 GMT | 1 |
Boy, the documentation for creating a SortedList whose text-based key will be case-insensitive is impossible for me to understand. I want to create a SortedList where the KEY for every element will always be a String and where a lookup on that SortedList (SL["Xyz"]) will be
|