Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 146007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:31:29+00:00 2026-05-11T08:31:29+00:00

The ToolStripManager is hopelessly broken. LoadSettings doesn’t do a thing…and I’m evidently not the

  • 0

The ToolStripManager is hopelessly broken. LoadSettings doesn’t do a thing…and I’m evidently not the only one with this problem:

http://social.msdn.microsoft.com/forums/en-US/winforms/thread/656f5332-610d-42c3-ae2d-0ffb84a74b34/

https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=128042

So…anyone have a workaround? The one posted in that thread just moved all the toolbars to the bottom of the window.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:31:29+00:00Added an answer on May 11, 2026 at 8:31 am

    Here is my solution:

    Declare this struct to store the settings of a toolbar:

    [Serializable] public struct ToolStripSettings {     public bool Visible;     public Point Location; } 

    Code to save

    // save toolbar settings List<ToolStripSettings> toolSettings = new List<ToolStripSettings>(); // mToolbars is initialized in the constructor to contain all of your toolbar members // you could also probably populate it with reflection foreach (ToolStrip ts in mToolbars) {     ToolStripSettings tss = new ToolStripSettings();     tss.Visible = ts.Visible;     tss.Location = ts.Location;     toolSettings.Add(tss); } // serialize the toolSettings list wherever you keep the  // rest of your user-specific settings 

    Code to restore

    // Load toolstrip settings, if any if (/*deserialized storage location*/ != null) {     for (int i = 0; i < mToolbars.Length; i++)     {         mToolbars[i].Visible = /*deserialized storage location*/[i].Visible;         mToolbars[i].Location = /*deserialized storage location*/[i].Location;     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been using the toolscriptmanager included in the AjaxControlToolkit on my site. This one
I want to create a notification icon like the the red one in the
I have enabled tooltips in my JTable by overriding the JComponent method that the
I'm using the tooltipManager as described HERE . I want to display a custom
Is there a way to change private static field of an alien class? For
I need to show htmlText in custom tooltip created by TooltipManager. Below is the
I am working on a kit of simple Java agents to help me (and
since JTree & TreeModel don't provide tooltips straight out-of-the-box, what do you think, what
I looked into a nice way to display tooltips dynamically and I found OverLibWrapper
I found some informations on the internet but nothing helped me out. How can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.