Page 1 of 1

Startpage by using an combobox

Posted: Fri Jul 27, 2018 10:18 am
by Dummy1912
Hello,

How can i use my combobox to view the printpages i want to see
on my preview document
Code: Select all
If Not ComboBox2.Items.Contains(String.Format("{0}", Me.PrintPreviewControl1.PageCount)) Then
            ComboBox2.Items.Add(String.Format("{0}", Me.PrintPreviewControl1.PageCount))
        End If
        
        'we have 2 pages
        
        Private SubiComboBox2_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox2.SelectedIndexChanged
        Dim sheets As Double = ComboBox2.SelectedText.ToString
        Me.PrintPreviewControl1.StartPage += sheets
    End Sub
If we select 1 we get the first page thats cool
but when we select 2 we don't get the next page
we like to use our combobox as a sort of next page and previous page option instead of buttons

Thank you.

Re: Startpage by using an combobox

Posted: Fri Jul 27, 2018 4:57 pm
by CodenStuff
Not sure about this one. Try using just "=" instead of "+="
Code: Select all
'we have 2 pages Private SubiComboBox2_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox2.SelectedIndexChanged Dim sheets As Double = ComboBox2.SelectedText.ToString Me.PrintPreviewControl1.StartPage = sheets End Sub

Re: Startpage by using an combobox

Posted: Sat Jul 28, 2018 5:00 am
by Dummy1912
:errm;
didn't think of that.. taking hours to look at the complete code for this..
and it was just my mistake ahahhaahaha

Thanks friend ;)