Click here to Skip to main content
15,898,134 members
Home / Discussions / C#
   

C#

 
Question[Message Deleted] Pin
mobius11100119-Nov-08 5:56
mobius11100119-Nov-08 5:56 
GeneralCross-post Pin
Wendelius19-Nov-08 6:18
mentorWendelius19-Nov-08 6:18 
GeneralRe: Cross-post Pin
mobius11100119-Nov-08 6:51
mobius11100119-Nov-08 6:51 
QuestionTooltip for Menu Item Pin
#realJSOP19-Nov-08 5:48
professional#realJSOP19-Nov-08 5:48 
AnswerRe: Tooltip for Menu Item [modified] Pin
led mike19-Nov-08 6:06
led mike19-Nov-08 6:06 
AnswerRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 6:32
mentorWendelius19-Nov-08 6:32 
GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 6:38
professional#realJSOP19-Nov-08 6:38 
GeneralRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 6:48
mentorWendelius19-Nov-08 6:48 
Odd, I tried with the following (just a fresh, single form application) and it worked fine. If you try this code do you still experience the same problem.
namespace WindowsFormsApplication4 {
   partial class Form1 {
      /// <summary>
      /// Required designer variable.
      /// </summary>
      private System.ComponentModel.IContainer components = null;

      /// <summary>
      /// Clean up any resources being used.
      /// </summary>
      /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
      protected override void Dispose(bool disposing) {
         if (disposing && (components != null)) {
            components.Dispose();
         }
         base.Dispose(disposing);
      }

      #region Windows Form Designer generated code

      /// <summary>
      /// Required method for Designer support - do not modify
      /// the contents of this method with the code editor.
      /// </summary>
      private void InitializeComponent() {
         this.menuStrip1 = new System.Windows.Forms.MenuStrip();
         this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
         this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
         this.menuStrip1.SuspendLayout();
         this.SuspendLayout();
         // 
         // menuStrip1
         // 
         this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem1});
         this.menuStrip1.Location = new System.Drawing.Point(0, 0);
         this.menuStrip1.Name = "menuStrip1";
         this.menuStrip1.Size = new System.Drawing.Size(284, 24);
         this.menuStrip1.TabIndex = 0;
         this.menuStrip1.Text = "menuStrip1";
         // 
         // toolStripMenuItem1
         // 
         this.toolStripMenuItem1.AutoToolTip = true;
         this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem2});
         this.toolStripMenuItem1.Name = "toolStripMenuItem1";
         this.toolStripMenuItem1.Size = new System.Drawing.Size(125, 20);
         this.toolStripMenuItem1.Text = "toolStripMenuItem1";
         // 
         // toolStripMenuItem2
         // 
         this.toolStripMenuItem2.AutoToolTip = true;
         this.toolStripMenuItem2.Image = global::WindowsFormsApplication4.Properties.Resources._3_5_Disk_Drive;
         this.toolStripMenuItem2.Name = "toolStripMenuItem2";
         this.toolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
         this.toolStripMenuItem2.ToolTipText = "I\'m tooltip";
         // 
         // Form1
         // 
         this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
         this.ClientSize = new System.Drawing.Size(284, 264);
         this.Controls.Add(this.menuStrip1);
         this.MainMenuStrip = this.menuStrip1;
         this.Name = "Form1";
         this.Text = "Form1";
         this.menuStrip1.ResumeLayout(false);
         this.menuStrip1.PerformLayout();
         this.ResumeLayout(false);
         this.PerformLayout();

      }

      #endregion

      private System.Windows.Forms.MenuStrip menuStrip1;
      private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
      private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
   }
}


The need to optimize rises from a bad design.

My articles[^]

GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 7:15
professional#realJSOP19-Nov-08 7:15 
GeneralRe: Tooltip for Menu Item Pin
Wendelius19-Nov-08 7:40
mentorWendelius19-Nov-08 7:40 
GeneralRe: Tooltip for Menu Item Pin
#realJSOP19-Nov-08 8:10
professional#realJSOP19-Nov-08 8:10 
QuestionRe: Tooltip for Menu Item Pin
postonoh19-Nov-08 6:36
postonoh19-Nov-08 6:36 
Questionwhat to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Pr@teek B@h!19-Nov-08 5:42
Pr@teek B@h!19-Nov-08 5:42 
AnswerRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Ennis Ray Lynch, Jr.19-Nov-08 5:49
Ennis Ray Lynch, Jr.19-Nov-08 5:49 
QuestionRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Pr@teek B@h!19-Nov-08 6:07
Pr@teek B@h!19-Nov-08 6:07 
AnswerRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Ennis Ray Lynch, Jr.19-Nov-08 6:12
Ennis Ray Lynch, Jr.19-Nov-08 6:12 
GeneralRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Pr@teek B@h!19-Nov-08 6:18
Pr@teek B@h!19-Nov-08 6:18 
GeneralRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Ennis Ray Lynch, Jr.19-Nov-08 6:25
Ennis Ray Lynch, Jr.19-Nov-08 6:25 
GeneralRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Pr@teek B@h!19-Nov-08 7:00
Pr@teek B@h!19-Nov-08 7:00 
AnswerRe: what to do when message size is bigger than the byte[] size in Socket.BeginReceive? Pin
Pr@teek B@h!20-Nov-08 3:27
Pr@teek B@h!20-Nov-08 3:27 
QuestionMillisecond Timer Period Pin
ScotDolan19-Nov-08 5:36
ScotDolan19-Nov-08 5:36 
AnswerRe: Millisecond Timer Period Pin
S. Senthil Kumar19-Nov-08 5:48
S. Senthil Kumar19-Nov-08 5:48 
AnswerRe: Millisecond Timer Period Pin
Pr@teek B@h!19-Nov-08 5:49
Pr@teek B@h!19-Nov-08 5:49 
AnswerRe: Millisecond Timer Period Pin
DaveyM6919-Nov-08 12:18
professionalDaveyM6919-Nov-08 12:18 
GeneralRe: Millisecond Timer Period Pin
Pr@teek B@h!20-Nov-08 3:24
Pr@teek B@h!20-Nov-08 3:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.