اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

مجموعة من المكرو اعجبتني تمنع تغير اسم الملف


الردود الموصى بها

الاخوة الافاضل السلام عليكم ورحمة الله

اثناء تجوالي في المنتديات الاجنبية وجدة مجموعة من المكرو تمنع تغيير اسم الملف مع امكانية حفظه في موقع اخر او درايف اخر فاحببت ان اشارككم بها

المكرو :

Private Sub Workbook_BeforeSave _

(ByVal SaveAsUI As Boolean, Cancel As Boolean)

'This macro prevents saving the excel file (workbook) under a

'different name.

'However, the file can be saved in a different location, but

'still under the same file name.

'

'This MUST be placed in "ThisWorkbook" and NOT in a Module.

'

Dim NamePath As String

Dim strName As String

Dim lFind As Long

If SaveAsUI = True Then

Cancel = True

With Application

.EnableEvents = False

NamePath = .GetSaveAsFilename

strName = Mid(NamePath, InStrRev(NamePath, "\", -1, vbTextCompare) + 1, 256)

If NamePath = "False" Then

.EnableEvents = True

Exit Sub

ElseIf strName <> Me.Name Then

MsgBox "You cannot save as another name"

.EnableEvents = True

Exit Sub

Else

Me.SaveAs NamePath

.EnableEvents = True

End If

End With

End If

End Sub

ملاحظة : يجب حفظ المكرو في ThisWorkbook ليتم تفعيلة

وهذا مكرو اخر يوقف خاصية حفظ باسم او Save As حيث انه سيمنع تغير الاسم والموقع

المكرو :

Private Sub Workbook_BeforeSave (ByVal SaveAsUI As Boolean, Cancel As Boolean)

'This macro disables the "Save As" Feature in Excel

'This means that a user will not be able to save this

'workbook(file) under a different name or in a different location

'

'This MUST be placed in "ThisWorkbook" and NOT in a Module.

'

If SaveAsUI = True Then Cancel = True

End Sub

ملاحظة : يجب حفظ المكرو في ThisWorkbook ليتم تفعيلة

مع تمنياتي للجميع بتوفيق

اخوكم بوفيصل

رابط هذا التعليق
شارك

  • 4 years later...

اخى العزيز

بارك الله لك على هذة الاشياء الجميلة والمفيدة

 

ولكن هناك شسىء مهم جدا لابد ان تضعة فى الحسبان ان فى ناس ما زالت بتتعلم وما يتعرفش المكان المناسب الى تضع فية هذة الاشياء

 

فنرجو الاساتذة الافاضل يشرح ازاى الناس الى بتتعلم تستفيد من الاكواتد الجميلة دى وتقول لينا مكان وضع هذة الاكواد

وربنا يجعلة فى ميزان حسناتكم

رابط هذا التعليق
شارك

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information