當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET Marshal.GetHRForLastWin32Error方法代碼示例

本文整理匯總了VB.NET中System.Runtime.InteropServices.Marshal.GetHRForLastWin32Error方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET Marshal.GetHRForLastWin32Error方法的具體用法?VB.NET Marshal.GetHRForLastWin32Error怎麽用?VB.NET Marshal.GetHRForLastWin32Error使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Runtime.InteropServices.Marshal的用法示例。


在下文中一共展示了Marshal.GetHRForLastWin32Error方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: Win32

' 導入命名空間
Imports System.Runtime.InteropServices

Module Win32
    ' Use DllImportAttribute to inport the Win32 MessageBox
    ' function.  Set the SetLastError flag to true to allow
    ' the function to set the Win32 error.
    <DllImportAttribute("user32.dll", SetLastError:=True, CharSet:=CharSet.Unicode)> _
    Function MessageBox(ByVal hwnd As IntPtr, ByVal text As String, ByVal caption As String, ByVal type As UInt32) As Integer
    End Function

End Module

Module Program


    Sub Run()



        ' Call the MessageBox with an invalid window handle to
        ' produce a Win32 error.

        Console.WriteLine("Calling Win32 MessageBox with error...")

        Win32.MessageBox(New IntPtr(123132), "Press OK...", "Press OK Dialog", 0)

        ' Get the last error and display it.
        Dim HRESULT As Integer

        HRESULT = Marshal.GetHRForLastWin32Error()

        Console.WriteLine("The last Win32 Error was: " + HRESULT)

    End Sub

    Sub Main(ByVal args() As String)

        Run()

    End Sub

End Module

' This code example displays the following to the console: 
'
' Calling Win32 MessageBox with error...
' The last Win32 Error was: -2147023496
開發者ID:VB.NET開發者,項目名稱:System.Runtime.InteropServices,代碼行數:48,代碼來源:Marshal.GetHRForLastWin32Error


注:本文中的System.Runtime.InteropServices.Marshal.GetHRForLastWin32Error方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。