Fading Coder

One Final Commit for the Last Sprint

Applying the Factory Pattern within COM Components

In the previous discussion on the Abstract Factory pattern, we encountered a limitation regarding the flexibility of object creation. This article presents a solution using Component Object Model (COM) technology and explores how the Factory Pattern is utilized within it. The fundamental reason the...

Automating Word Document Consolidation with Python and COM

To merge multiple Word documents through a graphical interface, the following implementation utliizes the pywin32 library for COM automation and tkinter for the folder selection dialog. The solution assumes source files follow a numeric naming convention (e.g., 1.docx, 2.docx) to maintain sequential...