.
I'm using a trial version of GdViewerPro and I want to show an icon (a PNG image in a picturebox control) on the top of GdViewer in my form.
My project is in VC#2005 and my code is:
pictureBox1.BackColor = Color.Transparent;
pictureBox1.Parent = axGdViewer1;
pictureBox1.Location = new Point(20, 20);
This code works fine with integrated picturebox of visual studio (as a parent), but doesn't work with axGdViewer and I see a gray background in my icon yet.
What should i do to solve this problem?
