Use WIN32 Function directly : DLL « Windows « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows » DLL 
24.1.2.Use WIN32 Function directly
Option Strict On

Public Module Tester

   Public Declare Unicode Function MessageBox Lib "User32.dll" Alias "MessageBoxW" (ByVal hWnd As IntPtr, ByVal lpText As String, _
          byVal lpCaption As String, ByVal uType As UShortAs Short

   Private Declare Unicode Function GetSystemDirectory Lib "kernel32.dll" Alias "GetSystemDirectoryW" _
           (ByVal lpBuffer As String, ByVal nSize As IntegerAs Integer

   Private Const MB_OK As Integer = &H0&
   Private Const MAX_LEN As Integer = 256

   Public Sub Main()
      Dim caption As String = "System Directory"
      Dim message As String
      Dim buffer As String = Space(MAX_LEN)
      Dim retChars As Integer

      retChars = GetSystemDirectory(buffer, Len(buffer))
      message = Left(buffer, retChars)

      MessageBox(Nothing, message, caption, MB_OK)
   End Sub
End Module
24.1.DLL
24.1.1.Create DLL library
24.1.2.Use WIN32 Function directly
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.