Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

CreateDC (gdi32)
 
.
Summary
Creates a device context for a device using the specified name.

C# Signature:

[DllImport("gdi32.dll")]
static extern IntPtr CreateDC(string lpszDriver, string lpszDevice,
   string lpszOutput, IntPtr lpInitData);

VB.NET Signature

<DllImport("gdi32.dll", SetLastError:=True, CharSet:=CharSet.Ansi)> _
public Function CreateDC(<MarshalAs(UnmanagedType.LPStr)>lpszDriver As String, _
              <MarshalAs(UnmanagedType.LPStr)>lpszDevice As String, _
              <MarshalAs(UnmanagedType.LPStr)>lpszOutput As String, _
              lpInitData As IntPtr) As IntPtr
End Function

VB Signature:

Declare Function CreateDC Lib "gdi32.dll" ( _
   lpszDriver As String, lpszDevice As String, _
   lpszOutput As String, lpInitData As IntPtr) As IntPtr

Notes:

None.

Tips & Tricks:

Please add some!

Please add some

Sample Code:

Please add some!

using System;

using System.Drawing;

using System.Runtime.InteropServices;

using System.Windows.Forms;

Alternative Managed API:

Do you know one? Please contribute it!

namespace SetPixel

{

    public partial class Form1 : Form
    {
    public Form1()
    {
        InitializeComponent();
        hdc = CreateDC("DISPLAY", null, null, IntPtr.Zero); // create a new dc,yeni bir dc yaratıyoruz.Yeni bir system dc si yaratıyoruz.
    }
    [DllImport("gdi32.dll", EntryPoint = "CreateDC", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern IntPtr CreateDC(string lpszDriver, string lpszDeviceName, string lpszOutput, IntPtr devMode);

Documentation
CreateDC on MSDN

    [DllImport("gdi32.dll")]
    static extern uint SetPixel(IntPtr hdc, int X, int Y, uint crColor); // Bu fonksiyon verdiğimiz dc ye sahip grafiklere piksel girer.
    IntPtr hdc;

    private void timer1_Tick(object sender, EventArgs e)
    {
        for (int x = 0; x < 1000; x += 5)
        {
        for (int y = 0; y < 1000; y += 5)
        {
            SetPixel(hdc, x, y, (uint)Color.Black.ToArgb());
        }
        }
    }
    }

}

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
CreateDC on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions