Hi There,

I have a workbook that pull data to a sheet that will print tout to Dymo label printer.
Issues I am having is setting the paper size for the 30256 Shipping Label. On my PC the VB macro will assign this paper size to PaperSize = 204, every PC has a different Page Size Code.
Is there a way to VB the Drop Down name that is displayed in the Page Setup?

Thanks in Advance.

Current code that works for my PC.

Sub PrintToAnotherPrinter()
Application.DisplayAlerts = False

Application.ScreenUpdating = False
Dim strCurrentPrinter As String
    strCurrentPrinter = Application.ActivePrinter ' store the current active printer
    On Error Resume Next ' ignore printing errors
    DymoPrint = FindPrinter("DYMO LabelWriter 450 Turbo")
    Application.ActivePrinter = DymoPrint ' change to another printer
    Sheet10.Visible = xlSheetVisible
    Sheet10.Select
       With ActiveSheet.PageSetup
        .PrintTitleRows = ""
        .PrintTitleColumns = ""
    End With
    ActiveSheet.PageSetup.PrintArea = "$A$10:$G$18"
    With ActiveSheet.PageSetup
        .LeftHeader = ""
        .CenterHeader = ""
        .RightHeader = ""
        .LeftFooter = ""
        .CenterFooter = ""
        .RightFooter = ""
        .LeftMargin = Application.InchesToPoints(0)
        .RightMargin = Application.InchesToPoints(0)
        .TopMargin = Application.InchesToPoints(0)
        .BottomMargin = Application.InchesToPoints(0)
        .HeaderMargin = Application.InchesToPoints(0)
        .FooterMargin = Application.InchesToPoints(0)
        .PrintHeadings = False
        .PrintGridlines = False
        .PrintComments = xlPrintNoComments
        .PrintQuality = Array(300, 600)
        .CenterHorizontally = True
        .CenterVertically = True
        .Orientation = xlLandscape
        .Draft = False
        .PaperSize = 204
        .FirstPageNumber = xlAutomatic
        .Order = xlDownThenOver
        .BlackAndWhite = False
        .Zoom = 100
        .PrintErrors = xlPrintErrorsDisplayed
        .OddAndEvenPagesHeaderFooter = False
        .DifferentFirstPageHeaderFooter = False
        .ScaleWithDocHeaderFooter = True
        .AlignMarginsHeaderFooter = True
        .EvenPage.LeftHeader.Text = ""
        .EvenPage.CenterHeader.Text = ""
        .EvenPage.RightHeader.Text = ""
        .EvenPage.LeftFooter.Text = ""
        .EvenPage.CenterFooter.Text = ""
        .EvenPage.RightFooter.Text = ""
        .FirstPage.LeftHeader.Text = ""
        .FirstPage.CenterHeader.Text = ""
        .FirstPage.RightHeader.Text = ""
        .FirstPage.LeftFooter.Text = ""
        .FirstPage.CenterFooter.Text = ""
        .FirstPage.RightFooter.Text = ""
    End With
    Range("A10:G18").PrintOut ' print the active sheet
    Application.ActivePrinter = strCurrentPrinter 'change back to the original printer
    Sheet10.Visible = xlSheetHidden
    On Error GoTo 0 ' resume normal error handling
End Sub