Posts

Showing posts from June, 2023

Multi Word DOC print

Image
How to print multi doc file  Sub PrintMultipleFiles()     Dim objWord As Object     Dim objDoc As Object     Dim strFolder As String     Dim strFile As String     ' Set the folder path where your documents are located     strFolder = "C:\YourFolderPath\"     ' Create an instance of Word     Set objWord = CreateObject("Word.Application")     objWord.Visible = False ' Set to True if you want Word to be visible     ' Loop through each file in the folder     strFile = Dir(strFolder & "*.doc") ' Change the file extension if necessary     Do While strFile <> ""         ' Open the document         Set objDoc = objWord.Documents.Open(strFolder & strFile)         ' Print the document         objDoc.PrintOut         ' Close the document    ...

django create website and application

01 create folder test  02 install python least virsion 03 test open folder  04 run cmd  05 django-admin 06 django-admin startproject test 07 python manage.py runserver  08  python manage.py runserver4444 09  python manage.py createsupersuper