Results 1 to 10 of 10

Thread: what is the name of this control?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Aug 2010
    Posts
    27

    what is the name of this control?

    i have no idea what the name of this control,but its look nice!
    any suggestions?
    thanks
    Name:  Untitled-2.jpg
Views: 202
Size:  51.0 KB

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: what is the name of this control?

    That is the Windows Add/Remove programs dialog, you can launch it:

    vb Code:
    1. ‘Launch Windows Add/Remove Programs Dialog
    2. Dim dblReturn As Double
    3. dblReturn = Shell("rundll32.exe shell32.dllControl_RunDLL appwiz.cpl1" 5)

    Not sure if there is a control like it available in VB6 though.

    Edit:

    Fixed the above code!
    Last edited by Nightwalker83; Oct 18th, 2012 at 05:31 AM. Reason: Adding more!
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3
    PowerPoster
    Join Date
    Feb 2012
    Location
    West Virginia
    Posts
    14,206

    Re: what is the name of this control?

    If you are talking about the control used in the add remove programs to display the list then that looks like maybe a ListView control. But I think it could be done with a grid control or it could possibly even be HTML. No way to tell for sure that I know of.

  4. #4
    PowerPoster Zvoni's Avatar
    Join Date
    Sep 2012
    Location
    To the moon and then left
    Posts
    5,263

    Re: what is the name of this control?

    I'm pretty sure it's HTML, because the Add/Remove-Panel is one of the reasons you cannot de-install Internet-Explorer.
    Well, at least i think to remember reading this somewhere.
    Last edited by Zvoni; Tomorrow at 31:69 PM.
    ----------------------------------------------------------------------------------------

    One System to rule them all, One Code to find them,
    One IDE to bring them all, and to the Framework bind them,
    in the Land of Redmond, where the Windows lie
    ---------------------------------------------------------------------------------
    People call me crazy because i'm jumping out of perfectly fine airplanes.
    ---------------------------------------------------------------------------------
    Code is like a joke: If you have to explain it, it's bad

  5. #5
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: what is the name of this control?

    I seriously doubt there is any HTML involved. It is probably a customized ListView-like control.

    In modern versions of Windows they've switched to using a regular Win32 ListView control.

  6. #6

    Thread Starter
    Junior Member
    Join Date
    Aug 2010
    Posts
    27

    Re: what is the name of this control?

    hey guys, i recently find out how to make list like i've posted above..on vb6 we can use Xtre*e S*ite Pro ActiveX, itu support XAML and not require .Net..!

  7. #7
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: what is the name of this control?

    The closest thing I can find using standard VB6 controls is some careful use of the DataRepeater control.

    Using this, you can vary the active RepeatedControl in several ways, such as changing colors, font sizes, repositioning controls, making some visible or invisible, etc. However I can't find any way to have the active RepeatedControl have a different size from that of the inactive images the DataRepeater displays.

    I also see that using a Common Controls 6.0 manifest to apply the uxTheme results in some controls having a backdrop color other than that of the background they are sited on. I'm not sure if that's white, or the system ButtonFace color or what. But I do know that changing the backdrop for the inactive state to something weird like orange still gets a light-colored, close to white backdrop area around the buttion.

    Weird.
    Attached Images Attached Images  

  8. #8
    PowerPoster Zvoni's Avatar
    Join Date
    Sep 2012
    Location
    To the moon and then left
    Posts
    5,263

    Re: what is the name of this control?

    I still say it has to do with HTML, which also this link implies:
    http://www.pcreview.co.uk/forums/add...-t1713570.html
    Last edited by Zvoni; Tomorrow at 31:69 PM.
    ----------------------------------------------------------------------------------------

    One System to rule them all, One Code to find them,
    One IDE to bring them all, and to the Framework bind them,
    in the Land of Redmond, where the Windows lie
    ---------------------------------------------------------------------------------
    People call me crazy because i'm jumping out of perfectly fine airplanes.
    ---------------------------------------------------------------------------------
    Code is like a joke: If you have to explain it, it's bad

  9. #9
    PowerPoster
    Join Date
    Sep 2006
    Location
    Egypt
    Posts
    2,579

    Re: what is the name of this control?

    The easily way to know a control is using Spy++ or similar tool.



  10. #10
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: what is the name of this control?

    Quote Originally Posted by Zvoni View Post
    I still say it has to do with HTML, which also this link implies:
    http://www.pcreview.co.uk/forums/add...-t1713570.html
    You may have a point.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width