|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Where are on the web the WM constants ??Hi guys,
what are the best place on the web where I can find the list of all thh constants like: WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) .... etc ... to be used for instance with: Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message) '... End Sub Thank you very much in advance -Pam
http://msdn.microsoft.com
Win32 API under library link. tm <pamelaflue***@libero.it> wrote in message Show quoteHide quote news:1138312110.317769.94790@o13g2000cwo.googlegroups.com... > Hi guys, > > what are the best place on the web where I can find the list of all thh > constants like: > WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) > ... etc ... > > to be used for instance with: > > Protected Overrides Sub WndProc(ByRef m As > System.Windows.Forms.Message) > '... > End Sub > > Thank you very much in advance > > -Pam > This site is very useful. Try it!
http://www.pinvoke.net/ Karol Deland Show quoteHide quote "Toff McGowen" wrote: > http://msdn.microsoft.com > > Win32 API under library link. > > tm > > <pamelaflue***@libero.it> wrote in message > news:1138312110.317769.94790@o13g2000cwo.googlegroups.com... > > Hi guys, > > > > what are the best place on the web where I can find the list of all thh > > constants like: > > WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) > > ... etc ... > > > > to be used for instance with: > > > > Protected Overrides Sub WndProc(ByRef m As > > System.Windows.Forms.Message) > > '... > > End Sub > > > > Thank you very much in advance > > > > -Pam > > > > > Awesome. That site goes in my highly critiqued, "guard it like you would
your own children" favourites list. tm Show quoteHide quote "Karol Deland" <KarolDel***@discussions.microsoft.com> wrote in message news:0C76E50A-6C3F-4F07-8669-5A450B9E2580@microsoft.com... > This site is very useful. Try it! > http://www.pinvoke.net/ > > Karol Deland > > "Toff McGowen" wrote: > > > http://msdn.microsoft.com > > > > Win32 API under library link. > > > > tm > > > > <pamelaflue***@libero.it> wrote in message > > news:1138312110.317769.94790@o13g2000cwo.googlegroups.com... > > > Hi guys, > > > > > > what are the best place on the web where I can find the list of all thh > > > constants like: > > > WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) > > > ... etc ... > > > > > > to be used for instance with: > > > > > > Protected Overrides Sub WndProc(ByRef m As > > > System.Windows.Forms.Message) > > > '... > > > End Sub > > > > > > Thank you very much in advance > > > > > > -Pam > > > > > > > > > Karol,
Thanks looks nice Cor Show quoteHide quote "Karol Deland" <KarolDel***@discussions.microsoft.com> schreef in bericht news:0C76E50A-6C3F-4F07-8669-5A450B9E2580@microsoft.com... > This site is very useful. Try it! > http://www.pinvoke.net/ > > Karol Deland > > "Toff McGowen" wrote: > >> http://msdn.microsoft.com >> >> Win32 API under library link. >> >> tm >> >> <pamelaflue***@libero.it> wrote in message >> news:1138312110.317769.94790@o13g2000cwo.googlegroups.com... >> > Hi guys, >> > >> > what are the best place on the web where I can find the list of all thh >> > constants like: >> > WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) >> > ... etc ... >> > >> > to be used for instance with: >> > >> > Protected Overrides Sub WndProc(ByRef m As >> > System.Windows.Forms.Message) >> > '... >> > End Sub >> > >> > Thank you very much in advance >> > >> > -Pam >> > >> >> >> thank you!! I have taken a look at:
http://www.pinvoke.net/default.aspx/Enums.WindowsMessages impressive! But isn't there a place where each one of these is explained, besides than a list? -Pam pamelaflue***@libero.it wrote:
> thank you!! I have taken a look at: The MSDN Library.> http://www.pinvoke.net/default.aspx/Enums.WindowsMessages > > impressive! > > But isn't there a place where each one of these is explained, besides > than a list? -- Larry Lard Replies to group please <pamelaflue***@libero.it> schrieb:
> what are the best place on the web where I can find the list of all thh The most reliable way is to translate the '#define's in the according header> constants like: > WM_QUERYENDSESSION As Integer = &H11 (possibly with some explanations) > ... etc ... files. The name of the header file containing the define is listed in the documentation. My ActiveVB-coworker Christoph von Wittich provides an API viewer that can export declares/... for VB.NET: ApiViewer <URL:http://www.apiviewer.de/> English translation: ApiViewer (en) <URL:http://www.activevb.de/rubriken/apiviewer/index-apiviewereng.html> Ken Tucker [MVP] wrote an add-in for VS.NET 2003: VB API Viewer 2003 <URL:http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=673d6b40-3b9b-46a7-a958-a25f4e87568a> pinvoke.net is a web-based collaborative wiki that collects declares/... for different .NET programming languages: pinvoke.net: the interop wiki! <URL:http://www.pinvoke.net/> If you don't want to struggle with the declares yourself, you can use this library: A Win32 Library for .NET <URL:http://www.codeproject.com/csharp/win32.asp> -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> Thank you very much for this resource !!
I just installed it! PS I saw that within the environment listed there is no .NET. Is it the same to use vb6 ? <pamelaflue***@libero.it> schrieb:
> I just installed it! What did you install?> > PS > I saw that within the environment listed there is no .NET. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> <pamelaflue***@libero.it> schrieb:
> it's called API viewer 2004. AFAIK it doesn't integrate with VS.NET, but in the ApiViewer's "Options" > > Got the wrong one? dialog the programming language can be selected. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/>
what collection obj can hold 3 parameters per index?
C# to VB.net conversion for "?" conditionals currency manager Cascading list boxes What am I missing?? Waiting for a shell command Column names in Dataset Creating a dynamic array in VB NET listview rows hiding vb.net containment of a rectangle in an irregular region |
|||||||||||||||||||||||