Online Home of Yash Kapoor
Online Home
Tuesday, November 18, 2025
Monday, November 17, 2025
How to stop applicaion in seconds in excel - step by step macro wait for one second
Application.Wait (Now + TimeValue("00:00:01"))
How to copy a cell in Excel with VBA and how to show MessageBox in excel - alert in Excel
Selection.Copy
MsgBox "Copied ---- " & Selection
Note:- Copy Only a single cell , if more than one cell copied, it will give error
Thursday, November 13, 2025
Action Replay extension for Chrome - How to auto replay work flows or How to auto play actions of website
> With the help of Action Replay Extension in chrome
> Google chrome recorder can also be used for replay of steps.
Tuesday, November 11, 2025
How to type auto in windows 11 with powershell - sending keys in power shell
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point(100, 200)
$wshell = New-Object -ComObject wscript.shell
$wshell.AppActivate("Title of the application window") # Activate the target window
Start-Sleep -Seconds 5 # Give time for the window to activate
$wshell.SendKeys("Hello World{ENTER}")
After 5 seconds, it will paste in the window where cursor is clciked
Subscribe to:
Comments (Atom)