+ Reply to Thread
Results 1 to 2 of 2

protecting and unprotecting

Hybrid View

  1. #1
    Registered User
    Join Date
    01-22-2010
    Location
    Norway
    MS-Off Ver
    Excel 2007
    Posts
    33

    protecting and unprotecting

    At the moment I get an error when pressing the save as pdf button I've made. I believe this is because it is protected.

    I've got a code that I would like to unprotect right before color change, and protect after pdf is made and color changed back. I've tried a few things, but I'm not really sure what I'm doing.

    I've used before
    .Unprotect
    and
    .Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, AllowFormattingRows:=True
    But this doesn't work. Has this got something to do with the (Cancel As Boolean)?

    Anyways:

    Sub RDB_Sheet_Level_Names_To_PDF_And_Create_Mail()
        Dim FileName As String
        
        
        Sheets("Samlet").Range("C25:H26,G41:G42,G45:G55,E58:G58").Font.ColorIndex = 2
        FileName = Create_PDF_Sheet_Level_Names("addtopdf", "", True, False)
      
        If FileName <> "" Then
            RDB_Mail_PDF_Outlook FileName, "", "Emnet går her", _
                                 "Se vedlegg" _
                               & vbNewLine & vbNewLine & "Mvh. ", False
    
        Else
            MsgBox "Not possible to create the PDF, possible reasons:" & vbNewLine & _
                   "Microsoft Add-in is not installed" & vbNewLine & _
                   "You Canceled the GetSaveAsFilename dialog" & vbNewLine & _
                   "The path to Save the file in arg 2 is not correct" & vbNewLine & _
                   "You didn't want to overwrite the existing PDF if it exist"
        End If
            Sheets("Samlet").Range("C25:H26,G41:G42,G45:G55,E58:G58").Font.ColorIndex = 3
        
    End Sub
    Any help would be very helpful. I'm learning slowly, but I seem to be hitting a lot of walls

  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: protecting and unprotecting

    Sub RDB_Sheet_Level_Names_To_PDF_And_Create_Mail()
        Dim FileName As String
    
        With Sheets("Samlet")
        
            .Unprotect
            .Range("C25:H26,G41:G42,G45:G55,E58:G58").Font.ColorIndex = 2
            FileName = Create_PDF_Sheet_Level_Names("addtopdf", "", True, False)
          
            If FileName <> "" Then
                RDB_Mail_PDF_Outlook FileName, "", "Emnet går her", _
                                     "Se vedlegg" _
                                   & vbNewLine & vbNewLine & "Mvh. ", False
        
            Else
                MsgBox "Not possible to create the PDF, possible reasons:" & vbNewLine & _
                       "Microsoft Add-in is not installed" & vbNewLine & _
                       "You Canceled the GetSaveAsFilename dialog" & vbNewLine & _
                       "The path to Save the file in arg 2 is not correct" & vbNewLine & _
                       "You didn't want to overwrite the existing PDF if it exist"
            End If
            
            .Range("C25:H26,G41:G42,G45:G55,E58:G58").Font.ColorIndex = 3
            .Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, AllowFormattingRows:=True
        End With
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1