I'm having a problem getting the correct formatting based on a the text of cell AD5. I'm wanting specific formatting if AD5 contains "Gregg Donley" to crop an image a certain way and if AD5 contains any other name to crop differently. I've tried Select Case but it doesn't seem to work properly. Any help would be greatly appreciated.
<code style="font-family: monospace, monospace; margin: 0px 2px; border: 0px; border-radius: 2px; display: block; font-size: 1em; line-height: 1.42857142857143em; padding: 0px !important; background-color: transparent;">Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal _
bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Private Const KEYEVENTF_KEYUP = &H2 ' key up
Private Const VK_SNAPSHOT = &H2C ' print screen key
Private Const VK_MENU = &H12 ' alt key
Private Const VK_CONTROL = &H11 ' ctrl key
Sub ScreensCapture(vk)
keybd_event vk, 0, 0, 0
keybd_event VK_SNAPSHOT, 0, 0, 0
keybd_event VK_SNAPSHOT, 0, KEYEVENTF_KEYUP, 1
keybd_event vk, 0, KEYEVENTF_KEYUP, 0
End Sub
Sub Window_Capture_VBA(Optional sTitle = "")
Dim celltxt As String
Application.CutCopyMode = False
If sTitle <> "" Then
AppActivate sTitle
Application.Wait Now() + TimeValue("00:00:01")
ScreensCapture VK_MENU
Else
ScreensCapture VK_CONTROL
End If
Application.Wait Now() + TimeValue("00:00:01")
Sheets("temp").Select
Sheets("temp").Paste
Application.CutCopyMode = False
Select Case Range("ad5").Value
Case "Gregg Donley"
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 83.2499212598
Selection.ShapeRange.ScaleHeight 0.8928571429, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -41
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementLeft 306
Selection.ShapeRange.ScaleWidth 0.787278415, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -153
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -41
ActiveWindow.SmallScroll Down:=21
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleHeight 0.873513627, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -153
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = 2
ActiveWindow.ScrollColumn = 2
ActiveWindow.ScrollColumn = 3
ActiveWindow.ScrollColumn = 4
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleWidth 0.7284768212, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = 2
Case Else
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 150.7499212598
Selection.ShapeRange.ScaleHeight 0.8081821253, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -75
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementLeft 353.25
Selection.ShapeRange.ScaleWidth 0.7556748605, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -176
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -75
ActiveWindow.SmallScroll Down:=24
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 0.00007874015748
Selection.ShapeRange.ScaleHeight 0.8584564145, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -176
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -30
ActiveWindow.ScrollColumn = 7
ActiveWindow.ScrollColumn = 8
ActiveWindow.ScrollColumn = 9
ActiveWindow.ScrollColumn = 10
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleWidth 0.6823365858, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -3
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -30
End Select
Selection.Copy
Sheets(1).Activate
Call InsertXSec
End Sub
Sub xsection_Screen_Shot()
Window_Capture_VBA "SES" ' captures window titled "SES"
End Sub
Sub InsertXSec()
Range("L23").Select
ActiveSheet.Unprotect Password:=""
On Error Resume Next
Set n = ActiveSheet.Pictures.Paste()
With Range("G14")
t = .Top
l = .Left
End With
With n
.Top = t
.Left = l
.ShapeRange.LockAspectRatio = msoFalse
.Width = 768
.Height = 465
Application.ScreenUpdating = False
Application.CutCopyMode = False
End With
ActiveSheet.Pictures.Select
Call XSec
Application.ScreenUpdating = False
If Err Then MsgBox "You do not have an image in your clipboard.": Exit Sub
End Sub
Sub XSec()
'
' Macro3 Macro
With Selection.ShapeRange.Line
.Visible = msoTrue
.ForeColor.RGB = RGB(0, 0, 0)
.Transparency = 0
End With
With Selection.ShapeRange.Line
.Visible = msoTrue
.Weight = 1
End With
End Sub</code>
<code style="font-family: monospace, monospace; margin: 0px 2px; border: 0px; border-radius: 2px; display: block; font-size: 1em; line-height: 1.42857142857143em; padding: 0px !important; background-color: transparent;">Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal _
bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Private Const KEYEVENTF_KEYUP = &H2 ' key up
Private Const VK_SNAPSHOT = &H2C ' print screen key
Private Const VK_MENU = &H12 ' alt key
Private Const VK_CONTROL = &H11 ' ctrl key
Sub ScreensCapture(vk)
keybd_event vk, 0, 0, 0
keybd_event VK_SNAPSHOT, 0, 0, 0
keybd_event VK_SNAPSHOT, 0, KEYEVENTF_KEYUP, 1
keybd_event vk, 0, KEYEVENTF_KEYUP, 0
End Sub
Sub Window_Capture_VBA(Optional sTitle = "")
Dim celltxt As String
Application.CutCopyMode = False
If sTitle <> "" Then
AppActivate sTitle
Application.Wait Now() + TimeValue("00:00:01")
ScreensCapture VK_MENU
Else
ScreensCapture VK_CONTROL
End If
Application.Wait Now() + TimeValue("00:00:01")
Sheets("temp").Select
Sheets("temp").Paste
Application.CutCopyMode = False
Select Case Range("ad5").Value
Case "Gregg Donley"
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 83.2499212598
Selection.ShapeRange.ScaleHeight 0.8928571429, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -41
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementLeft 306
Selection.ShapeRange.ScaleWidth 0.787278415, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -153
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -41
ActiveWindow.SmallScroll Down:=21
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleHeight 0.873513627, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -153
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = 2
ActiveWindow.ScrollColumn = 2
ActiveWindow.ScrollColumn = 3
ActiveWindow.ScrollColumn = 4
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleWidth 0.7284768212, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1438
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 777
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = 2
Case Else
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 150.7499212598
Selection.ShapeRange.ScaleHeight 0.8081821253, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = 0
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -75
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementLeft 353.25
Selection.ShapeRange.ScaleWidth 0.7556748605, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -176
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -75
ActiveWindow.SmallScroll Down:=24
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.IncrementTop 0.00007874015748
Selection.ShapeRange.ScaleHeight 0.8584564145, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -176
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -30
ActiveWindow.ScrollColumn = 7
ActiveWindow.ScrollColumn = 8
ActiveWindow.ScrollColumn = 9
ActiveWindow.ScrollColumn = 10
Selection.ShapeRange.LockAspectRatio = msoFalse
Selection.ShapeRange.ScaleWidth 0.6823365858, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.PictureFormat.Crop.PictureWidth = 1445
Selection.ShapeRange.PictureFormat.Crop.PictureHeight = 785
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetX = -3
Selection.ShapeRange.PictureFormat.Crop.PictureOffsetY = -30
End Select
Selection.Copy
Sheets(1).Activate
Call InsertXSec
End Sub
Sub xsection_Screen_Shot()
Window_Capture_VBA "SES" ' captures window titled "SES"
End Sub
Sub InsertXSec()
Range("L23").Select
ActiveSheet.Unprotect Password:=""
On Error Resume Next
Set n = ActiveSheet.Pictures.Paste()
With Range("G14")
t = .Top
l = .Left
End With
With n
.Top = t
.Left = l
.ShapeRange.LockAspectRatio = msoFalse
.Width = 768
.Height = 465
Application.ScreenUpdating = False
Application.CutCopyMode = False
End With
ActiveSheet.Pictures.Select
Call XSec
Application.ScreenUpdating = False
If Err Then MsgBox "You do not have an image in your clipboard.": Exit Sub
End Sub
Sub XSec()
'
' Macro3 Macro
With Selection.ShapeRange.Line
.Visible = msoTrue
.ForeColor.RGB = RGB(0, 0, 0)
.Transparency = 0
End With
With Selection.ShapeRange.Line
.Visible = msoTrue
.Weight = 1
End With
End Sub</code>