473,830 Members | 1,840 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GetLastWin32Err or questions

GetLastWin32Err or exposes the Win32 GetLastError API method from
Kernel32.DLL. This method exists because it is not safe to make a direct
platform invoke call to GetLastError to obtain this information. If you want
to access this error code, you must call GetLastWin32Err or rather than
writing your own platform invoke definition for GetLastError and calling it.
The common language runtime can make internal calls to APIs that overwrite
the operating system maintained GetLastError.

You can only use this method to obtain error codes if you apply the
System.Runtime. InteropServices .DllImportAttri bute to the method signature
and set the SetLastError field to true. The process for this varies
depending upon the source language used: C# and C++ are false by default,
but the Declare statement in Visual Basic is true. For additional
information about the GetLastError and SetLastError Win32 API methods, see
the MSDN Library.

What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?

I'd like to messagebox only if there is an error.

How can I test for success/failure?

Thanks a lot


Aug 8 '07 #1
10 2166
What does the last paragraph mean?
>
Especially the "...only... if you apply the ..." part

What Declare are they taking about?
System.Runtime. InteropServices .DllImportAttri bute to the method signature
and set the SetLastError field to true.
Below is an example of what the last paragraph is talking about:

<DllImport("ole 32.dll", EntryPoint:="CL SIDFromString", _
SetLastError:=T rue, CharSet:=CharSe t.Auto, _
CallingConventi on:=CallingConv ention.StdCall) _
Public Shared Function CLSIDFromString ( _
<MarshalAs(Unma nagedType.LPWSt r)ByVal pwcsName As String, _
ByRef pclsid As Guid) As Integer
End Function

" active" <ac********** @a-znet.comwrote in message
news:O2******** *****@TK2MSFTNG P05.phx.gbl...
GetLastWin32Err or exposes the Win32 GetLastError API method from
Kernel32.DLL. This method exists because it is not safe to make a direct
platform invoke call to GetLastError to obtain this information. If you
want to access this error code, you must call GetLastWin32Err or rather
than writing your own platform invoke definition for GetLastError and
calling it. The common language runtime can make internal calls to APIs
that overwrite the operating system maintained GetLastError.

You can only use this method to obtain error codes if you apply the
System.Runtime. InteropServices .DllImportAttri bute to the method signature
and set the SetLastError field to true. The process for this varies
depending upon the source language used: C# and C++ are false by default,
but the Declare statement in Visual Basic is true. For additional
information about the GetLastError and SetLastError Win32 API methods, see
the MSDN Library.

What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?

I'd like to messagebox only if there is an error.

How can I test for success/failure?

Thanks a lot


Aug 8 '07 #2
I think I've got it.
Since I'm using Declares I need not do it.
But if I do a DllImport in C# I must do it if I want to use
GetLastWin32Err or after calling that sub.
Right?

But what about sending to a messagebox only if there is an error.

How can I test for success/failure?

Is not zero always an error and zero return success?
As always, thanks for the help!


"Michael Phillips, Jr." <mp*********@no spam.jun0.c0mwr ote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?
>System.Runtime .InteropService s.DllImportAttr ibute to the method signature
and set the SetLastError field to true.

Below is an example of what the last paragraph is talking about:

<DllImport("ole 32.dll", EntryPoint:="CL SIDFromString", _
SetLastError:=T rue, CharSet:=CharSe t.Auto, _
CallingConventi on:=CallingConv ention.StdCall) _
Public Shared Function CLSIDFromString ( _
<MarshalAs(Unma nagedType.LPWSt r)ByVal pwcsName As String, _
ByRef pclsid As Guid) As Integer
End Function

" active" <ac********** @a-znet.comwrote in message
news:O2******** *****@TK2MSFTNG P05.phx.gbl...
>GetLastWin32Er ror exposes the Win32 GetLastError API method from
Kernel32.DLL . This method exists because it is not safe to make a direct
platform invoke call to GetLastError to obtain this information. If you
want to access this error code, you must call GetLastWin32Err or rather
than writing your own platform invoke definition for GetLastError and
calling it. The common language runtime can make internal calls to APIs
that overwrite the operating system maintained GetLastError.

You can only use this method to obtain error codes if you apply the
System.Runtime .InteropService s.DllImportAttr ibute to the method signature
and set the SetLastError field to true. The process for this varies
depending upon the source language used: C# and C++ are false by default,
but the Declare statement in Visual Basic is true. For additional
information about the GetLastError and SetLastError Win32 API methods,
see the MSDN Library.

What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?

I'd like to messagebox only if there is an error.

How can I test for success/failure?

Thanks a lot



Aug 8 '07 #3
" active" <ac********** @a-znet.comschrieb
GetLastWin32Err or exposes the Win32 GetLastError API method from
Kernel32.DLL. This method exists because it is not safe to make a
direct platform invoke call to GetLastError to obtain this
information. If you want to access this error code, you must call
GetLastWin32Err or rather than writing your own platform invoke
definition for GetLastError and calling it. The common language
runtime can make internal calls to APIs that overwrite the operating
system maintained GetLastError.

You can only use this method to obtain error codes if you apply the
System.Runtime. InteropServices .DllImportAttri bute to the method
signature and set the SetLastError field to true. The process for
this varies depending upon the source language used: C# and C++ are
false by default, but the Declare statement in Visual Basic is true.
For additional
information about the GetLastError and SetLastError Win32 API
methods, see the MSDN Library.

What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?
Declare Sub bla Lib "kernel32.d ll" ()
The paragraph says that calling GetLastWin32Err or only makse sense if the
API function called is declared using the DllImportAttrib ute while
specifying SetLastError=Tr ue. It depends on the language how this can be
done. In VB, you have two ways to declare an external function:

- Using the DllImport attribute
- Using the Declare statement (as shown above)

It says that, using the Declare statment, the SetLastError field is set to
True by default, so you don't have to (or can't) explicitly set it to true.

I'd like to messagebox only if there is an error.

How can I test for success/failure?
If you used the Declare statement for declaring the function called, simply
call GetLastWin32Err or afterwards. Nothing else has to be done.

If you used the DllImportAtribt e for declaring the function, you must set
SetLastError = True in the declaration:

<DllImportAttri bute("kernel32. dll", setlasterror:=T rue)_
Shared Sub bla()
End Sub
Armin

Aug 8 '07 #4
>The functions themselves return success or failure.

I was thinking that if I called GetLastWin32Err or when there was no error
the return might indicate that fact.

thanks
Aug 8 '07 #5
>>
>You can only use this method to obtain error codes if you apply the
System.Runtime .InteropService s.DllImportAttr ibute to the method
signature and set the SetLastError field to true. The process for
this varies depending upon the source language used: C# and C++ are
false by default, but the Declare statement in Visual Basic is true.
For additional
information about the GetLastError and SetLastError Win32 API
methods, see the MSDN Library.

What does the last paragraph mean?

Especially the "...only... if you apply the ..." part

What Declare are they taking about?

Declare Sub bla Lib "kernel32.d ll" ()

>>
What Declare are they taking about?

Declare Sub bla Lib "kernel32.d ll" ()

I was trying to turn the "SetLastErr or field to true" into a statement about
GetLastWin32Err or. Not too bright!
How about your example above.
"kernel32.d ll" is just an example?
GetLastWin32Err or applies to other dll's, right?
Thanks
Aug 8 '07 #6
So it's not VB vs c#, it's vb's Declare vs vb or C# DllImportAttrib ute
thanks
>
If you used the Declare statement for declaring the function called,
simply
call GetLastWin32Err or afterwards. Nothing else has to be done.

If you used the DllImportAtribt e for declaring the function, you must set
SetLastError = True in the declaration:

<DllImportAttri bute("kernel32. dll", setlasterror:=T rue)_
Shared Sub bla()
End Sub
Armin

Aug 8 '07 #7
" active" <ac********** @a-znet.comschrieb
>
What Declare are they taking about?
Declare Sub bla Lib "kernel32.d ll" ()

I was trying to turn the "SetLastErr or field to true" into a
statement about GetLastWin32Err or. Not too bright!
Sorry, I don't understand.
How about your example above.
"kernel32.d ll" is just an example?
GetLastWin32Err or applies to other dll's, right?
Right.
Armin
Aug 8 '07 #8
" active" <ac********** @a-znet.comschrieb :
How about your example above.
"kernel32.d ll" is just an example?
GetLastWin32Err or applies to other dll's, right?
Yes, to all DLLs setting Win32 error codes, such as the system DLLs
"kernel32.d ll", "gdi32.dll" , ...

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Aug 8 '07 #9
thanks

"Armin Zingler" <az*******@free net.dewrote in message
news:u8******** ******@TK2MSFTN GP05.phx.gbl...
>" active" <ac********** @a-znet.comschrieb
>
What Declare are they taking about?

Declare Sub bla Lib "kernel32.d ll" ()


I was trying to turn the "SetLastErr or field to true" into a
statement about GetLastWin32Err or. Not too bright!

Sorry, I don't understand.
>How about your example above.
"kernel32.dl l" is just an example?
GetLastWin32Er ror applies to other dll's, right?

Right.
Armin

Aug 8 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
4111
by: softwareengineer2006 | last post by:
All Interview Questions And Answers 10000 Interview Questions And Answers(C,C++,JAVA,DOTNET,Oracle,SAP) I have listed over 10000 interview questions asked in interview/placement test papers for all companies between year 2000-2005 in my website http://www.geocities.com/allinterviewquestion/ So please have a look and make use of it.
1
3187
by: [Joe] | last post by:
Is there any way to get a text description of Last Error ?
0
4608
by: connectrajesh | last post by:
INTERVIEWINFO.NET http://www.interviewinfo.net FREE WEB SITE AND SERVICE FOR JOB SEEKERS /FRESH GRADUATES NO ADVERTISEMENT
2
7230
by: freepdfforjobs | last post by:
Full eBook with 4000 C#, JAVA,.NET and SQL Server Interview questions http://www.questpond.com/SampleInterviewQuestionBook.zip Download the JAVA , .NET and SQL Server interview sheet and rate yourself. This will help you judge yourself are you really worth of attending interviews. If you own a company best way to judge if the candidate is worth of it. http://www.questpond.com/InterviewRatingSheet.zip
4
2514
by: Drew | last post by:
I posted this to the asp.db group, but it doesn't look like there is much activity on there, also I noticed that there are a bunch of posts on here pertaining to database and asp. Sorry for cross-posting. I am trying to build a "checklist", where a user can navigate to an ASP page on the intranet which shows a list of "questions" that the user can check off. I am trying to figure out how to do this so that it is scalable, but I am...
4
8833
by: Larry Smith | last post by:
Hi there, Does anyone know if this (example) is safe: internal static extern int GetWindowRect(IntPtr hWnd, ref RECT rect); int rc = GetWindowRect(hWnd, ref rect); if (rc == 0)
8
7991
by: Krypto | last post by:
Hi, I have used Python for a couple of projects last year and I found it extremely useful. I could write two middle size projects in 2-3 months (part time). Right now I am a bit rusty and trying to catch up again with Python. I am now appearing for Job Interviews these days and I am wondering if anybody of you appeared for a Python Interview. Can you please share the questions you were asked. That will be great help to me.
0
1510
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers7.html C# Interview Questions and Answers 6 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers-6.html C# Interview Questions and Answers 5...
1
1628
by: ramu | last post by:
C# Interview Questions and Answers8 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers8.html C# Interview Questions and Answers7 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers7.html C# Interview Questions and Answers 6 http://allinterviewsbooks.blogspot.com/2008/07/c-interview-questions-and-answers-6.html C# Interview Questions and Answers 5...
0
9777
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10473
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10518
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10196
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9307
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7737
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6939
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5614
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3070
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.