anyone can help me...
I have developed vb.net deskstop application.I want to open popup in button click event but when popuup open in second time first display blank space after that popup contain dispay.
my code is :
Dim popup As New ToolStripDropDown()
popup.Margin = Padding.Empty
popup.Padding = Padding.Empty
popup.Width = 150
popup.Height = 150
Dim host As New ToolStripControlHost(Panel2)
host.Margin = Padding.Empty
host.Padding = Padding.Empty
'host.Width = 50
popup.Items.Add(host)
popup.Show(200, 200)