@ ডেমোস্টেনেক্সের উত্তরটি আরও একধাপ এগিয়ে নিয়ে যাওয়া, আপনি যদি নিজের মাইক্রোসফ্ট এক্সেল অবজেক্টস এবং ইউজারফোর্মে কোডটি ট্র্যাক করে রাখতে চান তবে আপনাকে কিছুটা কৃপণ হতে হবে।
আমি SaveCodeModules()
রফতানির পরিকল্পনা করছি এমন বিভিন্ন ধরণের কোডের জন্য অ্যাকাউন্টে আমার ফাংশনটি পরিবর্তন করেছিলাম :
Sub SaveCodeModules(dir As String)
'This code Exports all VBA modules
Dim moduleName As String
Dim vbaType As Integer
With ThisWorkbook.VBProject
For i = 1 To .VBComponents.count
If .VBComponents(i).CodeModule.CountOfLines > 0 Then
moduleName = .VBComponents(i).CodeModule.Name
vbaType = .VBComponents(i).Type
If vbaType = 1 Then
.VBComponents(i).Export dir & moduleName & ".vba"
ElseIf vbaType = 3 Then
.VBComponents(i).Export dir & moduleName & ".frm"
ElseIf vbaType = 100 Then
.VBComponents(i).Export dir & moduleName & ".cls"
End If
End If
Next i
End With
End Sub
ইউজারফর্মগুলি ভিবিএ কোডের মতোই রফতানি এবং আমদানি করা যায়। পার্থক্যটি হ'ল দুটি ফর্ম তৈরি করা হবে যখন কোনও ফর্ম রফতানি করা হয় (আপনি একটি .frm
এবং একটি পাবেন.frx
প্রতিটি ইউজারফর্মের জন্য ফাইল পাবেন)। এর মধ্যে একটি আপনার লেখা সফ্টওয়্যার ধারণ করে এবং অন্যটি একটি বাইনারি ফাইল যা (আমি বেশ নিশ্চিত) ফর্মের বিন্যাসটি সংজ্ঞায়িত করে।
মাইক্রোসফ্ট এক্সেল অবজেক্টস (এমইও) (অর্থ Sheet1
, Sheet2
, ThisWorkbook
ইত্যাদি) একটি রূপে এক্সপোর্ট করা যাবে.cls
ফাইল। যাইহোক, আপনি যখন এই কোডটি আপনার ওয়ার্কবুকটিতে ফিরে পেতে চান, আপনি যদি ভিবিএ মডিউলটির মতো একইভাবে এটি আমদানির চেষ্টা করেন, তবে শীটটি ইতিমধ্যে ওয়ার্কবুকটিতে উপস্থিত থাকলে আপনি একটি ত্রুটি পাবেন।
এই সমস্যাটি সম্পর্কে জানার জন্য, আমি সিদ্ধান্ত নিয়েছি যে এক্সেলগুলিতে .cls ফাইলটি আমদানির চেষ্টা না করে বরং তার .cls
পরিবর্তে একটি স্ট্রিং হিসাবে ফাইলটি এক্সেলে পড়তে হবে, তারপরে এই স্ট্রিংটি ফাঁকা এমইওতে আটকে দিন। এখানে আমার আমদানি কোড কোড রয়েছে:
Sub ImportCodeModules(dir As String)
Dim modList(0 To 0) As String
Dim vbaType As Integer
' delete all forms, modules, and code in MEOs
With ThisWorkbook.VBProject
For Each comp In .VBComponents
moduleName = comp.CodeModule.Name
vbaType = .VBComponents(moduleName).Type
If moduleName <> "DevTools" Then
If vbaType = 1 Or _
vbaType = 3 Then
.VBComponents.Remove .VBComponents(moduleName)
ElseIf vbaType = 100 Then
' we can't simply delete these objects, so instead we empty them
.VBComponents(moduleName).CodeModule.DeleteLines 1, .VBComponents(moduleName).CodeModule.CountOfLines
End If
End If
Next comp
End With
' make a list of files in the target directory
Set FSO = CreateObject("Scripting.FileSystemObject")
Set dirContents = FSO.getfolder(dir) ' figure out what is in the directory we're importing
' import modules, forms, and MEO code back into workbook
With ThisWorkbook.VBProject
For Each moduleName In dirContents.Files
' I don't want to import the module this script is in
If moduleName.Name <> "DevTools.vba" Then
' if the current code is a module or form
If Right(moduleName.Name, 4) = ".vba" Or _
Right(moduleName.Name, 4) = ".frm" Then
' just import it normally
.VBComponents.Import dir & moduleName.Name
' if the current code is a microsoft excel object
ElseIf Right(moduleName.Name, 4) = ".cls" Then
Dim count As Integer
Dim fullmoduleString As String
Open moduleName.Path For Input As #1
count = 0 ' count which line we're on
fullmoduleString = "" ' build the string we want to put into the MEO
Do Until EOF(1) ' loop through all the lines in the file
Line Input #1, moduleString ' the current line is moduleString
If count > 8 Then ' skip the junk at the top of the file
' append the current line `to the string we'll insert into the MEO
fullmoduleString = fullmoduleString & moduleString & vbNewLine
End If
count = count + 1
Loop
' insert the lines into the MEO
.VBComponents(Replace(moduleName.Name, ".cls", "")).CodeModule.InsertLines .VBComponents(Replace(moduleName.Name, ".cls", "")).CodeModule.CountOfLines + 1, fullmoduleString
Close #1
End If
End If
Next moduleName
End With
End Sub
আপনি যদি dir
এই দুটি ফাংশনের ইনপুট দ্বারা বিভ্রান্ত হন তবে এটি আপনার কোড ভান্ডার মাত্র! সুতরাং, আপনি এই ফাংশনগুলিকে কল করতে চাইবেন:
SaveCodeModules "C:\...\YourDirectory\Project\source\"
ImportCodeModules "C:\...\YourDirectory\Project\source\"