Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7673531
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:31:59+00:00 2026-05-31T16:31:59+00:00

Am using Mediainfo library in my C# project,before start invoking this dll,i just ran

  • 0

Am using Mediainfo library in my C# project,before start invoking this dll,i just ran VC++ program that comes with the package and deployed in to my local system.am not sure what exactly it did when it deploys,it register something in the system,so my process can identify the mediainfo.dll,so it worked well in my local (32bit).

When i start deploying in Testserver,i can’t run or deploy the VC++(bcoz test server don’t have visual studio to do that,except debugger).so am getting this error

 public class MediaInfo
{
    //Import of DLL functions. DO NOT USE until you know what you do (MediaInfo DLL do NOT use CoTaskMemAlloc to allocate memory)  

    [DllImport("MediaInfo.dll")]
    private static extern IntPtr MediaInfo_New();


    //MediaInfo class

    public String Inform()
    {
        if (Handle == (IntPtr)0)
            return "Unable to load MediaInfo library";
        if (MustUseAnsi)
            return Marshal.PtrToStringAnsi(MediaInfoA_Inform(Handle, (IntPtr)0));
        else
            return Marshal.PtrToStringUni(MediaInfo_Inform(Handle, (IntPtr)0));
    }
    public String Get(StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo, InfoKind KindOfSearch)
    {
        if (Handle == (IntPtr)0)
            return "Unable to load MediaInfo library";
        if (MustUseAnsi)
        {
            IntPtr Parameter_Ptr=Marshal.StringToHGlobalAnsi(Parameter);
            String ToReturn=Marshal.PtrToStringAnsi(MediaInfoA_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, Parameter_Ptr, (IntPtr)KindOfInfo, (IntPtr)KindOfSearch));
            Marshal.FreeHGlobal(Parameter_Ptr);
            return ToReturn;
        }
        else
            return Marshal.PtrToStringUni(MediaInfo_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, Parameter, (IntPtr)KindOfInfo, (IntPtr)KindOfSearch));
    }
    public String Get(StreamKind StreamKind, int StreamNumber, int Parameter, InfoKind KindOfInfo)
    {
        if (Handle == (IntPtr)0)
            return "Unable to load MediaInfo library";
        if (MustUseAnsi)
            return Marshal.PtrToStringAnsi(MediaInfoA_GetI(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, (IntPtr)Parameter, (IntPtr)KindOfInfo));
        else
            return Marshal.PtrToStringUni(MediaInfo_GetI(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, (IntPtr)Parameter, (IntPtr)KindOfInfo));
    }
    public String Option(String Option, String Value)
    {
        if (Handle == (IntPtr)0)
            return "Unable to load MediaInfo library";
        if (MustUseAnsi)
        {
            IntPtr Option_Ptr=Marshal.StringToHGlobalAnsi(Option);
            IntPtr Value_Ptr=Marshal.StringToHGlobalAnsi(Value);
            String ToReturn=Marshal.PtrToStringAnsi(MediaInfoA_Option(Handle, Option_Ptr, Value_Ptr));
            Marshal.FreeHGlobal(Option_Ptr);
            Marshal.FreeHGlobal(Value_Ptr);
            return ToReturn;
        }
        else
            return Marshal.PtrToStringUni(MediaInfo_Option(Handle, Option, Value));
    }
    public int State_Get() { if (Handle == (IntPtr)0) return 0; return (int)MediaInfo_State_Get(Handle); }
    public int Count_Get(StreamKind StreamKind, int StreamNumber) { if (Handle == (IntPtr)0) return 0; return (int)MediaInfo_Count_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber); }
    private IntPtr Handle;
    private bool MustUseAnsi;

    //Default values, if you know how to set default values in C#, say me
    public String Get(StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo) { return Get(StreamKind, StreamNumber, Parameter, KindOfInfo, InfoKind.Name); }
    public String Get(StreamKind StreamKind, int StreamNumber, String Parameter) { return Get(StreamKind, StreamNumber, Parameter, InfoKind.Text, InfoKind.Name); }
    public String Get(StreamKind StreamKind, int StreamNumber, int Parameter) { return Get(StreamKind, StreamNumber, Parameter, InfoKind.Text); }
    public String Option(String Option_) { return Option(Option_, ""); }
    public int Count_Get(StreamKind StreamKind) { return Count_Get(StreamKind, -1); }
}

Just google thru SourceForge.net found this https://sourceforge.net/projects/mediainfo/forums/forum/297610/topic/4037237 but still i don’t know what they are suggesting.

look like they ask to import the com object but anyone please guide me how to import the com object in C# ?

Some how its fail to import the dll,is this any other way to import or just give the path to find the dll ?

like

PathToMediaInfoDLL := "C:\Documents and Settings\Administrator\My Documents\autohotkey\MediaInfo.dll"

Thanks a bunch in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T16:32:00+00:00Added an answer on May 31, 2026 at 4:32 pm

    To run MediaInfo in c# you don’t need to run any VC++. Just download binaries. But you need to remeber about few things:

    First: Use correct version of mediainfo.dll x32 or x64.

    Second: The path were media library is needs to be visible by system. So or MediaInfo.dll is in the same folder as application, or folder is added to system paths.

    Third: Use attached to library c# wrapper class for easier interop.

    Below is the proper wrapper class dowloaded from source forge:

    // MediaInfoDLL - All info about media files, for DLL
    // Copyright (C) 2002-2009 Jerome Martinez, Zen@MediaArea.net
    //
    // This library is free software; you can redistribute it and/or
    // modify it under the terms of the GNU Lesser General Public
    // License as published by the Free Software Foundation; either
    // version 2.1 of the License, or (at your option) any later version.
    //
    // This library is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    // Lesser General Public License for more details.
    //
    // MediaInfoDLL - All info about media files, for DLL
    // Copyright (C) 2002-2009 Jerome Martinez, Zen@MediaArea.net
    //
    // This library is free software; you can redistribute it and/or
    // modify it under the terms of the GNU Lesser General Public
    // License as published by the Free Software Foundation; either
    // version 2.1 of the License, or (at your option) any later version.
    //
    // This library is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    // Lesser General Public License for more details.
    //
    // You should have received a copy of the GNU Lesser General Public
    // License along with this library; if not, write to the Free Software
    // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    //
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    //
    // Microsoft Visual C# wrapper for MediaInfo Library
    // See MediaInfo.h for help
    //
    // To make it working, you must put MediaInfo.Dll
    // in the executable folder
    //
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    
    using System;
    using System.Runtime.InteropServices;
    
    namespace MediaInfoLib
    {
        public enum StreamKind
        {
            General,
            Video,
            Audio,
            Text,
            Chapters,
            Image
        }
    
        public enum InfoKind
        {
            Name,
            Text,
            Measure,
            Options,
            NameText,
            MeasureText,
            Info,
            HowTo
        }
    
        public enum InfoOptions
        {
            ShowInInform,
            Support,
            ShowInSupported,
            TypeOfValue
        }
    
        public enum InfoFileOptions
        {
            FileOption_Nothing      = 0x00,
            FileOption_NoRecursive  = 0x01,
            FileOption_CloseAll     = 0x02,
            FileOption_Max          = 0x04
        };
    
    
        public class MediaInfo
        {
            //Import of DLL functions. DO NOT USE until you know what you do (MediaInfo DLL do NOT use CoTaskMemAlloc to allocate memory)  
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_New();
            [DllImport("MediaInfo.dll")]
            private static extern void   MediaInfo_Delete(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Open(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string FileName);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Open(IntPtr Handle, IntPtr FileName);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Open_Buffer_Init(IntPtr Handle, Int64 File_Size, Int64 File_Offset);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Open(IntPtr Handle, Int64 File_Size, Int64 File_Offset);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Open_Buffer_Continue(IntPtr Handle, IntPtr Buffer, IntPtr Buffer_Size);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Open_Buffer_Continue(IntPtr Handle, Int64 File_Size, byte[] Buffer, IntPtr Buffer_Size);
            [DllImport("MediaInfo.dll")]
            private static extern Int64  MediaInfo_Open_Buffer_Continue_GoTo_Get(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern Int64  MediaInfoA_Open_Buffer_Continue_GoTo_Get(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Open_Buffer_Finalize(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Open_Buffer_Finalize(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern void   MediaInfo_Close(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Inform(IntPtr Handle, IntPtr Reserved);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Inform(IntPtr Handle, IntPtr Reserved);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_GetI(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_GetI(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, [MarshalAs(UnmanagedType.LPWStr)] string Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Option(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string Option, [MarshalAs(UnmanagedType.LPWStr)] string Value);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoA_Option(IntPtr Handle, IntPtr Option,  IntPtr Value);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_State_Get(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfo_Count_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber);
    
            //MediaInfo class
            public MediaInfo()
            {
                Handle = MediaInfo_New();
                if (Environment.OSVersion.ToString().IndexOf("Windows")==-1)
                    MustUseAnsi=true;
                else
                    MustUseAnsi=false;
            }
            ~MediaInfo() { MediaInfo_Delete(Handle); }
            public int Open(String FileName)
            {
                if (MustUseAnsi)
                {
                    IntPtr FileName_Ptr = Marshal.StringToHGlobalAnsi(FileName);
                    int ToReturn = (int)MediaInfoA_Open(Handle, FileName_Ptr);
                    Marshal.FreeHGlobal(FileName_Ptr);
                    return ToReturn;
                }
                else
                    return (int)MediaInfo_Open(Handle, FileName);
            }
            public int Open_Buffer_Init(Int64 File_Size, Int64 File_Offset)
            {
                return (int)MediaInfo_Open_Buffer_Init(Handle, File_Size, File_Offset);
            }
            public int Open_Buffer_Continue(IntPtr Buffer, IntPtr Buffer_Size)
            {
                return (int)MediaInfo_Open_Buffer_Continue(Handle, Buffer, Buffer_Size);
            }
            public Int64 Open_Buffer_Continue_GoTo_Get()
            {
                return (int)MediaInfo_Open_Buffer_Continue_GoTo_Get(Handle);
            }
            public int Open_Buffer_Finalize()
            {
                return (int)MediaInfo_Open_Buffer_Finalize(Handle);
            }
            public void Close() { MediaInfo_Close(Handle); }
            public String Inform()
            {
                if (MustUseAnsi)
                    return Marshal.PtrToStringAnsi(MediaInfoA_Inform(Handle, (IntPtr)0));
                else
                    return Marshal.PtrToStringUni(MediaInfo_Inform(Handle, (IntPtr)0));
            }
            public String Get(StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo, InfoKind KindOfSearch)
            {
                if (MustUseAnsi)
                {
                    IntPtr Parameter_Ptr=Marshal.StringToHGlobalAnsi(Parameter);
                    String ToReturn=Marshal.PtrToStringAnsi(MediaInfoA_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, Parameter_Ptr, (IntPtr)KindOfInfo, (IntPtr)KindOfSearch));
                    Marshal.FreeHGlobal(Parameter_Ptr);
                    return ToReturn;
                }
                else
                    return Marshal.PtrToStringUni(MediaInfo_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, Parameter, (IntPtr)KindOfInfo, (IntPtr)KindOfSearch));
            }
            public String Get(StreamKind StreamKind, int StreamNumber, int Parameter, InfoKind KindOfInfo)
            {
                if (MustUseAnsi)
                    return Marshal.PtrToStringAnsi(MediaInfoA_GetI(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, (IntPtr)Parameter, (IntPtr)KindOfInfo));
                else
                    return Marshal.PtrToStringUni(MediaInfo_GetI(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber, (IntPtr)Parameter, (IntPtr)KindOfInfo));
            }
            public String Option(String Option, String Value)
            {
                if (MustUseAnsi)
                {
                    IntPtr Option_Ptr=Marshal.StringToHGlobalAnsi(Option);
                    IntPtr Value_Ptr=Marshal.StringToHGlobalAnsi(Value);
                    String ToReturn=Marshal.PtrToStringAnsi(MediaInfoA_Option(Handle, Option_Ptr, Value_Ptr));
                    Marshal.FreeHGlobal(Option_Ptr);
                    Marshal.FreeHGlobal(Value_Ptr);
                    return ToReturn;
                }
                else
                    return Marshal.PtrToStringUni(MediaInfo_Option(Handle, Option, Value));
            }
            public int State_Get() { return (int)MediaInfo_State_Get(Handle); }
            public int Count_Get(StreamKind StreamKind, int StreamNumber) { return (int)MediaInfo_Count_Get(Handle, (IntPtr)StreamKind, (IntPtr)StreamNumber); }
            private IntPtr Handle;
            private bool MustUseAnsi;
    
            //Default values, if you know how to set default values in C#, say me
            public String Get(StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo) { return Get(StreamKind, StreamNumber, Parameter, KindOfInfo, InfoKind.Name); }
            public String Get(StreamKind StreamKind, int StreamNumber, String Parameter) { return Get(StreamKind, StreamNumber, Parameter, InfoKind.Text, InfoKind.Name); }
            public String Get(StreamKind StreamKind, int StreamNumber, int Parameter) { return Get(StreamKind, StreamNumber, Parameter, InfoKind.Text); }
            public String Option(String Option_) { return Option(Option_, ""); }
            public int Count_Get(StreamKind StreamKind) { return Count_Get(StreamKind, -1); }
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        public class MediaInfoList
        {
            //Import of DLL functions. DO NOT USE until you know what you do (MediaInfo DLL do NOT use CoTaskMemAlloc to allocate memory)  
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_New();
            [DllImport("MediaInfo.dll")]
            private static extern void MediaInfoList_Delete(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_Open(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string FileName, IntPtr Options);
            [DllImport("MediaInfo.dll")]
            private static extern void MediaInfoList_Close(IntPtr Handle, IntPtr FilePos);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_Inform(IntPtr Handle, IntPtr FilePos, IntPtr Reserved);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_GetI(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_Get(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber, [MarshalAs(UnmanagedType.LPWStr)] string Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_Option(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string Option, [MarshalAs(UnmanagedType.LPWStr)] string Value);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_State_Get(IntPtr Handle);
            [DllImport("MediaInfo.dll")]
            private static extern IntPtr MediaInfoList_Count_Get(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber);
    
            //MediaInfo class
            public MediaInfoList() { Handle = MediaInfoList_New(); }
            ~MediaInfoList() { MediaInfoList_Delete(Handle); }
            public int Open(String FileName, InfoFileOptions Options) { return (int)MediaInfoList_Open(Handle, FileName, (IntPtr)Options); }
            public void Close(int FilePos) { MediaInfoList_Close(Handle, (IntPtr)FilePos); }
            public String Inform(int FilePos) { return Marshal.PtrToStringUni(MediaInfoList_Inform(Handle, (IntPtr)FilePos, (IntPtr)0)); }
            public String Get(int FilePos, StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo, InfoKind KindOfSearch) { return Marshal.PtrToStringUni(MediaInfoList_Get(Handle, (IntPtr)FilePos, (IntPtr)StreamKind, (IntPtr)StreamNumber, Parameter, (IntPtr)KindOfInfo, (IntPtr)KindOfSearch)); }
            public String Get(int FilePos, StreamKind StreamKind, int StreamNumber, int Parameter, InfoKind KindOfInfo) { return Marshal.PtrToStringUni(MediaInfoList_GetI(Handle, (IntPtr)FilePos, (IntPtr)StreamKind, (IntPtr)StreamNumber, (IntPtr)Parameter, (IntPtr)KindOfInfo)); }
            public String Option(String Option, String Value) { return Marshal.PtrToStringUni(MediaInfoList_Option(Handle, Option, Value)); }
            public int State_Get() { return (int)MediaInfoList_State_Get(Handle); }
            public int Count_Get(int FilePos, StreamKind StreamKind, int StreamNumber) { return (int)MediaInfoList_Count_Get(Handle, (IntPtr)FilePos, (IntPtr)StreamKind, (IntPtr)StreamNumber); }
            private IntPtr Handle;
    
            //Default values, if you know how to set default values in C#, say me
            public void Open(String FileName) { Open(FileName, 0); }
            public void Close() { Close(-1); }
            public String Get(int FilePos, StreamKind StreamKind, int StreamNumber, String Parameter, InfoKind KindOfInfo) { return Get(FilePos, StreamKind, StreamNumber, Parameter, KindOfInfo, InfoKind.Name); }
            public String Get(int FilePos, StreamKind StreamKind, int StreamNumber, String Parameter) { return Get(FilePos, StreamKind, StreamNumber, Parameter, InfoKind.Text, InfoKind.Name); }
            public String Get(int FilePos, StreamKind StreamKind, int StreamNumber, int Parameter) { return Get(FilePos, StreamKind, StreamNumber, Parameter, InfoKind.Text); }
            public String Option(String Option_) { return Option(Option_, ""); }
            public int Count_Get(int FilePos, StreamKind StreamKind) { return Count_Get(FilePos, StreamKind, -1); }
        }
    
    } //NameSpace
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using ASP.NET MVC there are situations (such as form submission) that may require a
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Using JDeveloper , I started developing a set of web pages for a project
Using C#, I need a class called User that has a username, password, active
using sp_who2 I found that a process is executing a select that has been
Using this code, the following execution yields strange results: C 100 R W The
using xmltextreader, how would I load a hashtable. XML: <base><user name=john>2342343</user><user name=mark>239099393</user></base> This was
Using report builder 3.0, I have a report that queries a cube. How do
Using Entity Framework CodeFirst, how do I create a created datetime column that gets
using file_get_contents , I open an Internet URL and get the contents of this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.