Search results for query: *

  1. C

    Ribbon Menus

    Can anyone tell me why Microsoft is not releasing their Ribbon Menus for use in development under vs 2005? Regards:confused:
  2. C

    Control Two Scroll Bars From Either

    My Bad, You said the value not the autoscroll position. Your suggestion works fine Thanks.:)
  3. C

    Control Two Scroll Bars From Either

    I tried this but does'nt work: Private Sub Panel1_Scroll(ByVal sender As Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles Panel1.Scroll Panel2.AutoScrollPosition = New Point(Panel1.AutoScrollPosition.X, Panel1.AutoScrollPosition.Y) End Sub Private Sub Panel2_Scroll(ByVal...
  4. C

    Control Two Scroll Bars From Either

    Hello All, I have two panels with picture boxes within, both have scroll bars because the images are too large for the panel. I'm trying to figure a way to control both horizontal scroll bars while scrolling either horizontal scroll bar on either panel. Another way of putting it, if I have two...
  5. C

    Visual Studio 2005 Windows Installer Custom Actions

    I am in the process of deploying a project using Visual Studio's Windows Installer but would like to check software activation keys before doing the install. I've looked at custom actions but they are executed after the installation. Is there a way to to this ? Regards:(
  6. C

    Vb.net COM object

    Try checking for exceptions after "Girder = Createobject("Girder.GirderEvent")" They are listed in help for Createobject Function. Regards
  7. C

    Textbox Flat instead of 3DFixed

    Having a weird problem. On some of my forms, my textboxes are appearing with flat with a blue border around them instead of fixed3d. My property for the textbox says BorderStyle Fixed3D. I'm using vb.net 2003. Anyone come accross this problem?
Back
Top