| Thread | Last Post | Replies |
|
| PInvoke Question - C to C# | 10 Jul 2008 15:16 GMT | 5 |
I have a pInvoke question. This is the C function that is exported from one of the C dll, extern __declspec(dllexport) IM_RET_CODE ST_import (IM_MODE mode, char *filename,
|
| Control.BeginInvoke is NOT fire-and-forget | 10 Jul 2008 15:13 GMT | 10 |
As much as the CLR team assures us that it's ok to fire-and-forget Control.BeginInvoke, it seems it isn't. Maybe this is a bug. See for example: the comments in http://blogs.msdn.com/cbrumme/archive/2003/05/06/51385.aspx
|
| Anyone know Japanese? | 10 Jul 2008 14:51 GMT | 1 |
http://www.microsoft.com/japan/windowsserver2008/powershell-tool.mspx http://www.visio.jp/dl/visPowerShell/index.html I'd be very interested in seeing this ported from Japanese to English and from VB.NET to C#.
|
| What should I Use ? | 10 Jul 2008 14:06 GMT | 10 |
Imagine I've an array of int : int[] anArray = new int[..]; I want to extract all the integer that are superior to 500 I can do :
|
| Object Oriented Specific Question | 10 Jul 2008 14:00 GMT | 7 |
Why would I ever use an interface when I could use an abstract class? Assuming the only limitation is only having one base class, would this change assuming you could implement multiple inheritance (and guarantee not creating ambiguity issues)?
|
| XSL transforms | 10 Jul 2008 13:50 GMT | 11 |
I have a XML file with belonging XSL file. Opening the XML file in IE7 works just fine. But when using the following code I get the error message: "Attribute and namespace nodes cannot be added to the parent element after a text, comment, pi, or sub-element node has already been ...
|
| foreach with parallel iterations of multiple properties | 10 Jul 2008 13:27 GMT | 6 |
Is it possible to write a foreach so that it simultaneously iterates through two collections ( or two properties of the same collection ) ? Following is *only meant as an example* : -- iterate a dictionary obtaining the next key and value on each iteration.
|
| What do I need to run a .NET application | 10 Jul 2008 13:10 GMT | 1 |
If I'm about to run a .NET window application form on a computer where XP is used as OS what do I need to download ? The application is using .NET framework 2.0
|
| problem in using win32 DLL in c# | 10 Jul 2008 13:09 GMT | 8 |
hi ,everyone ,please check my codes,i am really confused. the codes of win32 dll is as follows: ***********************the win32 DLL writen in c++***************** extern "C"
|
| Memory usage | 10 Jul 2008 12:54 GMT | 3 |
I understand how .NET will force a garbage collection before an out of memory exception etc, but I am still concerned with how much memory my .NET app seems to hold onto according to the task manager. Constantly my apps (all running via terminal services on the same machine)
|
| Delete multiple records with Linq | 10 Jul 2008 12:28 GMT | 2 |
How can I delete multiple records with Linq? On the internet I found the DeleteAll function, but this one does not exist in my library. Please help me out.
|
| Add functionality to Console.WriteLine, sort of like defining a ma | 10 Jul 2008 11:41 GMT | 3 |
I am trying to create a class or function which does one extra thing then performs a normal Console.WriteLine, preferrably with all the overloads available and intact. Where I currently have:
|
| Skeletonizing / Thinning Algorithm for Images | 10 Jul 2008 10:32 GMT | 5 |
I looking for an algorithm that will skeletonize / thin binary (black and white) images. Something like shown in the image: http://www.1delphistreet.com/Upload_PSC/ScreenShots/PIC20038201256376067.gif Can somebody please point me to some source code that will do that?
|
| How to override windows notifications/balloons/popups/outlook reminders | 10 Jul 2008 09:18 GMT | 5 |
I have a full-screen C# app, but windows notifications (the little balloons on the bottom right-hand of the screen) and outlook reminders will pop on top of my app. i want to prevent them from doing so. does anyone know how?
|
| Windows Service in C# | 10 Jul 2008 09:01 GMT | 4 |
These days i'm creating a windows service in c# which reads some data from a file and saves it in a database. The data in the file changes every minute. I am using FileSystemWatcher object which monitors that file for
|