VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

writing on the desktop

Harini Srinivasan  (1 Submission)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Thu 24th January 2002   Mon 8th February 2021

writing on the desktop

API Declarations


Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function GetWindowDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function SetPixel Lib "gdi32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long, ByVal crColor As Long) As Long
Private Declare Function TextOut Lib "gdi32" Alias "TextOutA" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long, ByVal lpString As String, ByVal nCount As Long) As Long
Private Declare Function GetWindow Lib "user32" (ByVal hwnd As Long, ByVal wCmd As Long) As Long
Private Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long
Private Declare Function LineTo Lib "gdi32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long

Rate writing on the desktop (2(2 Vote))
writing on the desktop.bas

writing on the desktop Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters