Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pmccombs

    Shared Memory possible?

    In Windows, shared memory generally refers to the system page file, and there are a number of Win32 APIs that you use to program with this. The practice of programming with shared memory is generally relegated to IPC tasks, and you need to consider synchronization and locking (IPC mutexes are...
  2. pmccombs

    Retrieving an icon from another assembly

    This might seem like a simple question, but I am not sure where to start. I have a FormManager class in an assembly dll. There are possibly various other assemblies that each contain a component that is managed by the FormManager class. These component assemblies also contain an icon that...
  3. pmccombs

    Free IIS ?!

    You might want to look at the Ximian Mono project on Linux. I don't know how mature their web framework and web services are, but ASP.NET under Mono is available.
  4. pmccombs

    How should C# handle objects allocated in Unmanaged Code?

    Hi, I have written a DLL in unmanaged code that has a certain function that returns a string. This string is allocated within the function. I can call this function from C# if I use the DllImport attribute and define a prototype in a class definition. The function works fine, and I can assign...
  5. pmccombs

    How do I handle an external event in C#?

    Hi, I have written an unmanaged Win32 DLL that generates events. The event it generates is a registered event of my choosing, which I have declared (via Win32 APIs, in C) in the following manner: const UINT wmMessage =...
  6. pmccombs

    Can I write unmanaged C# code?

    Regarding unmanaged C# code - Thanks for the replies! Here is what my own research has turned up on the subject: In Microsoft's Inside C# 2nd edition, it states, "unsafe code does not imply unmanaged code" or something along those lines. So, although I believe it is possible to...
  7. pmccombs

    Can I write unmanaged C# code?

    First of all, I need a little clarification: Just what is the difference between managed and unmanaged code? I have a general idea that unmanaged code is code found in DLLs, such as the system APIs. I'd like to write code like this. I have a need to write an external library that is available...

Part and Inventory Search

Back
Top