I already found solution for this.
Thanks.
Code:
Sub Print_option()
If MsgBox("Are you sure you want to print this document? ", vbYesNo, "SAVE PAPER!Check Before you Print!") = vbYes Then
   PrintLabels
Else
  MsgBox "Printing Cancelled!"
End If
End Sub