Quote Originally Posted by pourkascheff View Post
Thank you sir. I only checked its properties in property grid and it wasn't available there but it seems in code things are in godmode.

I added them both in Form1 load event but nothing happened. Neither of them are unavailable. Even mouse scroll does not work.
Info: FlowLayoutPanel1 WrapContents is false.
Try adding this

Code:
    Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles Me.Shown
        FlowLayoutPanel1.AutoScroll = False
        FlowLayoutPanel1.HorizontalScroll.Visible = True
        FlowLayoutPanel1.VerticalScroll.Visible = True
    End Sub