Hi guyz,
I'm just wondering if it's possible to add the mouse when capturing the screen or monitor
in vb.net?
because I'm doing a project that would record the screen and I'm actually successfull doing that by capturing
the screen and include it in a timer, but my only problem is the mouse or the cursor isn't showing.
below is my sample code.
Dim ScreenSize As Size = New Size(TotalScreenWitdh, MonitorHeightArray(0))
Dim BMP As New Bitmap(TotalScreenWitdh, MonitorHeightArray(0))
Dim GraphX As Graphics = FromImage(BMP)
GraphX.CopyFromScreen(New Point(0, 0), New Point(0, 0), ScreenSize)
Picturebox.Image = bmp
Thanks in advance.