"Shell About" Where and How?

ZeroEffect

Well-known member
Joined
Oct 24, 2004
Messages
180
Location
Detroit, MI
I was able to do this
Code:
    Private Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" (ByVal hWnd As Long, ByVal szApp As String, ByVal szOtherStuff As String, ByVal hIcon As Long) As Long


then call it this way

ShellAbout Me.hWnd, App.Title, "Blah Blah Blah.", ByVal 0&

But I cant seem to find any information on how to do this in .Net.

Does anyone have an idea. :confused:

Thanks

ZeroEffect
 
Hey I Found This

HJB417 said:

Hey I found This :D
Code:
    Public Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" (ByVal hwnd As IntPtr, ByVal szApp As String, ByVal szOtherStuff As String, ByVal hIcon As IntPtr) As Integer


and call this way

ShellAbout(Me.Handle, "Title goes here", "Things to say here", Me.Icon.Handle)

ZeroEffect
 

Similar threads

I
Replies
0
Views
156
Innovators World Wide
I
M
Replies
0
Views
115
Mostafa Salaheldien
M
G
Replies
0
Views
243
Gowrisankarrs
G
Back
Top