Hey is there a way to have mousewheel panning in a custom UserControl? I meen like in Internet Explorer when you click the middle mouse button you enter in panMode. or can you give me a link to information on how to make a implementation of this!! :~
osto
Posts
-
mousewheel!!! -
Video Editing Component?well for something small microsoft made a tool that you can cut/paste AVIEDIT.EXE i think is on one version on vc++ or better yet check the web for free avi editor or on sourceforge.net anyway you probably need some better to do what you asked!
-
Lock the mouse to my applicationi thought this was a big developer NO-NO!:mad:
-
This is not really a programming question:doh: hum algorithm analysis...FUN FUN FUN
-
ListView and Inserting SubitemsListViewItem item = lstProducts.Items.Add("Column1");//<-first item.SubItems.Add("Column2"); item.SubItems.Add("Column3"); item.SubItems.Add("Column4"); item.SubItems.Add("Column5"); easy? ;P and if you want to update a previously created column listName.Items[index].SubItems[subIndex].Text = "";
-
C# with MFCwhy are you using win32 for a dialog box anyway? show us WndProc and the one that create the dialog!
-
C# with MFCShow us some code!
-
Web controlwell i as wondering witch one as best for viewing a generated html report!
-
Web controlhey anybody try to use MSHTML.ShowHTMLDialog? or everybody using AxWebBrowser! X|
-
statusbar UIjust wondering what methods do i need to override to be able to change bankground color of the status bar? set for exemple a gradient fill backgroung like with iexplorer/explorer. so far i got just been able to have the devider but no bg :(
private void statusbarDrawItem(object sender, System.Windows.Forms.StatusBarDrawItemEventArgs sbdevent) { StatusBarPanel ssb = sbdevent.Panel; Rectangle rect = sbdevent.Bounds; sbdevent.Graphics.DrawLine(new Pen(Color.White), rect.Right-1,rect.Top,rect.Right-1,rect.Bottom-2); sbdevent.Graphics.DrawLine(SystemPens.ControlDark, rect.Right-2,rect.Top,rect.Right-2,rect.Bottom-2);}