Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Good evening Group, Stuck with something I dont seem to able to solve. The code below works fine, almost. The loop updates the values in the cells, the embedded textbox is also up- dating fine but if more then one selection is made in the listbox the print preview does not update. The text from the first selection is not changed in the preview when it is actually is changed in the worksheet. Can anyone supply some inputs, please? Brgds CG Rosen ------------------------------------------------------------------------------------------------------------------ For i = 0 To Me.ListBox1.ListCount - 1 If Me.ListBox1.Selected(i) = True Then Sheets("print").TextBox1.Text = "" Sheets("print").Cells(1, 1) = Sheets("Sheet1").Cells((Me.ListBox1.List(i, 1)), 1) Sheets("print").Cells(2, 1) = Sheets("Sheet1").Cells((Me.ListBox12.List(i, 1)), 2) Sheets("print").TextBox1.Text = Sheets("Sheet1").Cells((Me.ListBox2.List(i, 1)), 3) Application.Dialogs(xlDialogPrinterSetup).Show UserForm1.Hide Application.Visible = True ActiveSheet.PrintPreview EnableChanges:=False Application.Visible = False End If Next i UserForm1.Show End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Plot Area Automatically Expands in Print and Print Preview | Charts and Charting in Excel | |||
Print and Print Preview Graphic Moving Resizing 2007/2003 | Excel Discussion (Misc queries) | |||
print preview v page break preview | Excel Discussion (Misc queries) | |||
cell borders that I create dont show on print preview or print | Excel Discussion (Misc queries) | |||
Why does macro speed slow after Excel Print or Print Preview? | Excel Programming |