Hi all, I want to design a barcode template then I can dynamic print config with multi column and multi row in a page. Can you help me! Thanks
samulong
Posts
-
Print Barcode -
vertical scroll in listviewIs the listview (not listbox) not vertical scrollable? I have the style set as List and scollable = true but don't seem to get the vertical scroll.
-
Using ContextMenuStripHello! I want copy a select text in Webbrowser. How can I get select text? Please help, thanks!
-
Panel_DragDropI want to move a Panel from GroupBox1 to GroupBox2. Please repair my code: private void panel1_DragDrop(object sender, DragEventArgs e) { Panel a = (Panel)e.Data.GetData(typeof(Panel)); e.Effect = e.AllowedEffect; a.Location = new Point(e.X, e.Y); } private void panel1_MouseDown(object sender, MouseEventArgs e) { Panel p = (Panel)sender; if (e.Button == MouseButtons.Left) DoDragDrop(p, DragDropEffects.Copy); } private void panel1_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(typeof(Panel))) { e.Effect = DragDropEffects.Copy; } else { e.Effect = DragDropEffects.None; } } Thanks.
-
Custom TreeViewI want to design TreeView like list-friend on YahooMessage 8.0. The node include: 1. Busy icon 2. Avatar icon 3. Display name 4. Status message Please.
-
Fourth-State TreeView in C# 2005Design a custom TreeView The node include two ImageIndex and two Text
-
Fourth-State TreeView in C# 2005I want to design TreeView like list-friend on YahooMessage 8.0. Component: 1. Busy icon 2. Avatar icon 3. Display name 4. Status message Help me!!!