Click here to Skip to main content
15,885,216 members

Comments by AlmirM (Top 5 by date)

AlmirM 22-Nov-12 2:44am View    
Thanks for reply. Eventually it turned out as very simple task by adding tread in Progress changed event. It works as charm
Almir
AlmirM 20-Nov-12 9:03am View    
When I copy/paste

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam);

Then DllImport is underlined saying that I missing type or reference. What shoul I referernce to in order to make this working
Please help
AlmirM 20-Nov-12 8:50am View    
This translator does not return anything after I copy/paste my line of code...
Did you try? If yes can you please then let me about the results
Thanks
AlmirM 14-Oct-12 4:17am View    
OK...my bad...It was up to me why this error stat to appears...
AlmirM 13-Oct-12 16:25pm View    
Thanks
i followed your proposal as follows


Collapse | Copy Code
if (customTabControl1.TabPages.Contains(Page2))
{
customTabControl1.SelectedTab = Page2;
}
else
{

customTabControl1.TabPages.Add(Page2);
customTabControl1.SelectedTab = Page2;
}
but I get the following error when I try to Select added tabpage Page2

cannot access a disposed object

Can you help me to solve the problem.

Thanks