11.07.2013, 13:46
I have one dialog and i want when some clicks The button More on the bottom to open another dialog. Can someone give an example and explanation?
Thanks in advance!
Thanks in advance!
ShowPlayerDialog ( .. , dialog id , .. , "Close", "More" );
...
if (dialogid == dialog id )
{
if (!response)
{
// "more button"
ShowPlayerDialog ( .. , dialog id 2 , .. , "Close", "More" );
}
else
{
// ok button
}
}
...