 |
|
|
 |
|
 |
In the source file NavigateBarColorTable, the function
public override string ToString()
of the Office2007Silver and Office2007Black class returns a wrong value.
A silly, but if you want correct it...
Good job,
10x
Sandro
|
|
|
|
 |
|
 |
Hello
First of all I want to congratulate you for excelent control. I am using it in my project with success.
Recently however I have requirement to "reinitialize" my application (e.g. logout and login again with different user). Initially I do not have any button on it, cause I am building buttons dynamically in application. Now in logout I want to first remove all exesting buttons from navigatebar control (to have same look and feel like it was when user started application first time).
I thought best way would be to tell
this.navigateBar.NavigateBarButtons.Clear();
but this doesn't seem to work (everything is still there, more over when I try to again add button with same key as before it fails). If I am going with removing buttons one by one (for example by using RemoveByKey) it is time consuming (events are getting fired) and after all I can't manage to remove all buttons (in fact they are removed, but last button is still showed - vissible although it doesn't exist).
Is there some posibility (quick hack, or what ever) to bring back control in "virgin" state, like it was when I first started application before I add any button to it?
Thanks
|
|
|
|
 |
|
 |
Great. Thank you
|
|
|
|
 |
|
 |
excellent work, thanks for sharing :^:
|
|
|
|
 |
|
 |
Hi,
I've added the reference MT.Windows.UI to my project, but I get the following error:
"Invalid Resx file. Could not load type MT.WindowsUI.NavigationPane.NavigateBarColorTable, MT.WindowsUI, Version=2.6.4.0, Culture=neutral, PublicKeyToken=6a0e81d0b9165633 which is used in the .RESX file. Ensure that the necessary references have been added to your project."
Is there another reference that I should add?
Additional: I am using VS 2010
Thanx
|
|
|
|
 |
|
 |
I run the solution in visual studio 2010 but i didnt get any error..
if you get the all source code from here and compile in visual studio 2010..
|
|
|
|
 |
|
 |
I did convert it to VS 2010 and compiled, I used the only .dll as a reference in my project and added the control to my toolbox..
When I add the control to the form I receive the afforementioned error.
|
|
|
|
 |
|
 |
For anyone else having this problem:
Sorted it out, my Target Framework was 4.0 Client Profile, it should be 4.0 only.
This will add the System.Design reference which solved the problem
|
|
|
|
 |
|
 |
If I use Navigation Pane at my UserControl, Visual Studio 2008 crashes when I open UserControl designer and want to change size of Navigation Pane or it's dock style.
Additional info:
APPCRASH
devenv.exe
mscorlib.ni.dll
Exception code: c00000fd
|
|
|
|
 |
|
 |
Your control not go into .net ToolStripContainer???
div class="signature">Ahmed Mostafa ElDeeb
Solution Developer
email: amostafa84@hotmail.com
|
|
|
|
 |
|
 |
If you want a sidebar in MS OUTLOOK, there are a new products named OL-Assistant(http://www.outlooksidebar.net[^]) and help you.
First make sure you installed MS Outlook in your PC, and then
download OL-Assistant from right panel in Home page or other page, and then install it.
Second, you can download plug-in for OL-Assistant and install it.
if you wanna own plug-in, please sign in and goto developer page.
there, you will find some sample that tell you how to do.Cheers, Zhouxiaotan
http://wwww.outlooksidebar.net
|
|
|
|
 |
|
 |
Hi.
I want to reorder buttons in my code, but I can't find right way to do this.
I tried to use combinations of "Remove - Insert" method, but buttons displayed incorrectly.
Please help!!!
|
|
|
|
 |
|
 |
Try navigateBar.ChangeButtonPosition(Button,Postion)
|
|
|
|
 |
|
 |
Thanks for your reply. It's work.
|
|
|
|
 |
|
|
 |
|
 |
Use it as dll
Iker eL_FRuTeRo
|
|
|
|
 |
|
|
 |
|
|
 |
|
 |
I would like but do not have time
|
|
|
|
 |
|
|
 |
|
 |
When I want display more buttons dragging panel its become invisible, error is here:
void ReDisplayNavigateBarButtons()
{
try
{
int j = 0;
overFlowItemCount = 0;
for (int i = 0; i < this.NavigateBarButtons.Count; i++)
{
if (this.NavigateBarButtons[i].IsDisplayed)
{
this.NavigateBarButtons[i].Visible = (j < displayedButtonCount);
// If not displayed in navigatebar then show on overflowpanel
if (!this.NavigateBarButtons[i].Visible)
overFlowItemCount++;
j++;
}
else
{
this.NavigateBarButtons[i].Visible = false;
}
}
---> if (displayedButtonCount > j)
---> displayedButtonCount = j;
if (OnNavigateBarDisplayedButtonCountChanged != null)
OnNavigateBarDisplayedButtonCountChanged();
}
catch { }
}
in this 2 lines correct it
|
|
|
|
 |
|
 |
When I add only 1 or 2 button/s the horizontal splitter is not painted (or rendered)
If I have 4 button a splitter works fine but if the user logged out in my app then I will fire an event to check permissions and hide 2 or 3 buttons so after call this event the splitter rendering no works.
How can i fix this issue? Regards
|
|
|
|
 |
|
 |
How is it possible to use the dll in Access 03 or 07?
|
|
|
|
 |
|
 |
hi,
how can we add sub menus in each tab menu? for example in the mail tab menu i want to add sub menu for two links
thanks a lot
|
|
|
|
 |