or
private void InitializeComponent(){ this.radTrackBar1 = new Telerik.WinControls.UI.RadTrackBar(); ((System.ComponentModel.ISupportInitialize)(this.radTrackBar1)).BeginInit(); this.SuspendLayout(); // // radTrackBar1 // this.radTrackBar1.Location = new System.Drawing.Point(13, 13); this.radTrackBar1.Maximum = 200F; this.radTrackBar1.Minimum = 20F; this.radTrackBar1.Name = "radTrackBar1"; this.radTrackBar1.Size = new System.Drawing.Size(150, 17); this.radTrackBar1.TabIndex = 0; this.radTrackBar1.TickStyle = Telerik.WinControls.Enumerations.TickStyles.None; this.radTrackBar1.Value = 100F; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.radTrackBar1); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.radTrackBar1)).EndInit(); this.ResumeLayout(false); this.PerformLayout();}


private void radGridView1_Initialized(object sender, EventArgs e) { radGridView1.Columns["Balance"].Expression = "Paid-Due+Expenses"; }private void LoadFiles(DirectoryInfo dir) { FileInfo[] files = dir.GetFiles(); this.lvFiles.Items.Clear(); this.lvFiles.Items.BeginUpdate(); foreach (FileInfo file in files) { Telerik.WinControls.UI.ListViewDataItem listItem = new Telerik.WinControls.UI.ListViewDataItem(); this.lvFiles.Items.Add(listItem); listItem["Name"] = file.Name; listItem["DateTime"] = file.LastWriteTime.ToString(); listItem["Type"] = "file"; listItem["Size"] = UtilLib.FileIO.ToByteString(file.Length); listItem["Uploaded By"] = "Wango"; listItem.Tag = file; } this.lvFiles.Items.EndUpdate(); }
I have a CommandBar that always displays tooltips when opened from a .NET form, but when the control containing the CommandBar is used in a VB6 form, the tooltips do not display. Have you seen this before?