QUOTE(BenignDesign @ 5 Mar, 2008 - 03:28 PM)

I would be willing wager access2 is not a native english speaker and tried to explain himself as best he could. unfortunately, I have never used C# so I cannot offer assistance with the problem

Hi,
Yes ,english is not my mother langu... and i am sorry if i can't explane well. but i must try
ok i try to explane better.
i have a form (you can say like PM form in a msn messanger or yahoo messanger) i want the main things like text chat - font size - color and ... be in a form and also if user push a buttom she/he get addational page for voice and video things .
for this i try to make a project which i linked in first post . if you check that project you can see that you have a form and some buttom's and if you try "?" you can see a effect .
what i did in this project you can see it in project file but what i need is i want do same thing wht 2 form . it means if i push "?" i open a new form but whit this type of effect which is in this project .
i will copy the code here for pepole who don't trust my link :
this is code :
CODE
if (panel2.Width > 0)
{
while (panel2.Width > 0)
{
panel2.Width -= 2;
//Console.Beep(1700,5);
Application.DoEvents();
}
}
else
{
while (panel2.Width < 272)
{
panel2.Width += 2;
// Console.Beep(100, 5);
Application.DoEvents();
}
}
thanks for your help and your patience and agine sorry for my english .