Uploaded November 2025 | Updated September 2026, 1 week ago
How to merge multiple Windows Scan images to a PDF.
I am limited to one page per scan with my Canon MG3600 flatbed scanner in the Windows Scan app. I workaround that in Windows 11 by merging the single page scan images to one pdf
Steps:
1. Scan as tiff or png
2. Sort scans in Explorer by date created, ascending
3. Select all scans in Explorer
4. Right Click first document and Print
5. Select Print to PDF as printer
#windowstips #windows11
P138
How to merge multiple Windows Scan images to a PDF.
I am limited to one page per scan with my Canon MG3600 flatbed scanner in the Windows Scan app. I workaround that in Windows 11 by merging the single page scan images to one pdf
Steps:
1. Scan as tiff or png
2. Sort scans in Explorer by date created, ascending
3. Select all scans in Explorer
4. Right Click first document and Print
5. Select Print to PDF as printer
#windowstips #windows11
P138








![C# - Simulate mouse drag with SendInput (codeproject implementation)
How I simulate dragging the mouse in other Windows apps using C# SendInput function. A download from codeproject.com is used to build functions to drag the left and right mouse.
InputSender Download:
https://www.codeproject.com/Articles/5264831/How-to-Send-Inputs-using-Csharp
C# Automation Playlist:
https://youtube.com/playlist?list=PLAW4P1Sb_oJbIJIQd8-HPmsVUE6Ez6NFL&si=3rb4bQHNPmHYsaXs
#csharp
private void LeftDrag(Point start, Point end)
{
InputSender.SetCursorPosition(start.X, start.Y);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftDown
}
});
Thread.Sleep(100);
InputSender.SetCursorPosition(end.X, end.Y);
// added to fix text not always being selected during drag
Thread.Sleep (100);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftUp
}
});
} C# - Simulate mouse drag with SendInput (codeproject implementation)](https://i.ytimg.com/vi/FD9GBM3qPFM/mqdefault.jpg)

