↓ Skip to Main Content
Useful code Programming with VBA, C# and Python

Main Navigation

  • All
  • VBA
    • VBA Tools
    • VBA Online Resources
    • All VBA articles
  • Python
  • Else
    • C#
  • Reviews
    • List of reviews
  • YouTube
  • PayPal
  • About
Useful code Programming with VBA, C# and Python

Off Canvas Menu

  • All
  • VBA
    • VBA Tools
    • VBA Online Resources
    • All VBA articles
  • Python
  • Else
    • C#
  • Reviews
    • List of reviews
  • YouTube
  • PayPal
  • About

Month: November 2020

Home › 2020 › November
VBA – Folders and Files Functions
VBA \ Excel

VBA – Folders and Files Functions

Vitosh Nov 11, 2020 Tagged with check if folder is empty, create text file, delete all files from folder, VBA

Check if folder is empty: Public Function FolderIsEmpty(myPath As String) As Boolean FolderIsEmpty = CBool(Dir(myPath & “*.*”) = “”) End Function Delete all files in a folder: Public Sub DeleteAllFiles(path As String) Kill path & “*.*” End Sub Create text …

VBA – Folders and Files Functions Read more →

Django – CRUD application with Python
Python

Django – CRUD application with Python

Vitosh Nov 10, 2020 Tagged with application, CRUD, django, forms, GET, oop, POST, Python

Making a CRUD application with Python is actually one of the basic thing a Python Developer should be able to do. Although some may argue it is extremely basic – it is not. Requirements The basic requirements for this one, …

Django – CRUD application with Python Read more →

Copyright © 2026 VitoshAcademy