About 50 results
Open links in new tab
  1. Problem getting Process.MainWindowTitle when running app as …

    Aug 21, 2008 · So back to the main question, Why when the app is running as a Windows service does it seem unable to pull the MainWindowTitle of any process that is running. It works fine …

  2. Get DMI information in C# - social.msdn.microsoft.com

    Jun 12, 2012 · I know each PC has a collection of information that stores information like its manufecturer name, its model number, etc. that is called the DMI. I tried to search for a …

  3. In C# is there a way of refreshing query in EXCEL (REFRESH ALL)

    Sep 2, 2019 · Need C# code in SSIS Sript task which should refresh all excel data which extracts from a table using Microsoft query.

  4. How to stop the infinite loop? - social.msdn.microsoft.com

    Oct 30, 2012 · That would potentially allow you to continue on and execute other code in your main method at the same time, but unless the method you're calling specifically provides some …

  5. Disable GC - social.msdn.microsoft.com

    May 25, 2011 · I want to implement logic to garbage collector using c#.net. i.e. want to code to do GC in my own logic. So my Questions are: 1. Where should i write code to do it? 2. If it is …

  6. How to get type of interfaces that class implements?

    Sep 28, 2012 · 1. I think a more scalable solution can be devised using Type.FindInterfaces (). 2. I've improvised the example code given for the Type.FindInterfaces () method in MSDN. 3. It …

  7. C# goes to fast - social.msdn.microsoft.com

    Jun 15, 2009 · using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Jasmien_Rekenen { class Opgave { public int _getal1 { get; set ...

  8. Calling a C++ DLL CLASS METHODS from c

    Jul 19, 2009 · The class object needs to be allocated in unmanaged memory. There is no way to invoke the constructor or to pass the hidden "this" pointer that an instance method needs. …

  9. How to print the more than one pages in asp.net using C#

    Oct 7, 2021 · How to print the Details of the students ,each one in separate page. no need click the print button for every student. by clicking only once ,all student details should be print. i …

  10. C# program passes an uint [] which contains a string pointer to a …

    Jun 11, 2012 · I created a small C# and a C++ project to test passing an uint [] array which contains a pointer pointing to a string. I use "IntPtr ptr = Marshal.StringToCoTaskMemAnsi …