Fiverr – Microjobs Posting Platform If you are looking to hire quality expert to get your job done, Fiverr is right choice. Either you can post Job details with price & timeline, wait for experts to bid for it. Or you can directly filter available experts & pay for the […]
IPL 2020 All Teams Squad – Player List
IPL Teams & Franchises County cricket was never this famous in India before IPL. Currently, 8 teams will play the 13th edition of IPL T20 tournament, which starts on March 29th. The first match will be played between the defending champions Mumbai Indians & Chennai Super Kings. Opening ceremony & […]
Is Excel File already open in VBA – By Another User
Is Excel File already Open – Check in VBA? While opening a Excel file or be it any file with VBA, You may need to check if it is already opened by another user for editing. The file may present in local computer or a shared drive. In either way, […]
Windows 10 Free Upgrade from Windows 7,8
How to upgrade Windows 7 to Windows 10? Microsoft Windows 7 official support has ended on January 14 2010. More users are rushing up to upgrade to Windows 10. If you have a valid licence to use Windows 7 pro, home or Windows 8 pro/Home editions, then this option will […]
Excel VBA Delete Folder if Exists
Delete Folder using Excel VBA Macro This Excel VBA code will get folder path as input, check if it exists. Then it will delete if it exists. Important Note: Do not test this code with any important folder in your computer. You will end up in deleting important files in […]
VBA Msgbox with Yes No Cancel Options
User Input Msgbox with Yes No Cancel Some time the VBA code has to get approval from user with Yes/No/Cancel optop. Here is the simple code snippet that get the Yes, No, Cancel options in a popup window. Example scenario for this would be like if there is any file […]
Python Check if File Exists – Get Easy code
Using Python – Check if file exists in a path Python is a versatile programming language that is widely used for a variety of tasks. One of the common tasks is to check if a file exists in a specific path. In this article, we will discuss how Python check […]
PHP Check If File Exists in a Folder path – in 2 Easy ways
Get code from PHP check if file exists in a folder. This code can be used in wordpress or any php site to find if file is present in a server folder.
VBA Copy File to Folder
Excel VBA Macro to Copy File This page explains about 2 options to do file copy using Vba. CopyFile option from FileSystemObject VBA.Filecopy The first one has more options like: Adding wild cards with source file & option to overwrite a file if already exists. Vba built in Filecopy function […]
Python Unzip all Files in Directory – in just 4 Lines – Easy Code
This Python code unzip all files to directories and subdirectories in one step. All files in Zip archive will be extracted corresponding directoy structure.