Results 1 to 19 of 19

Thread: What component(s)?

  1. #1

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Arrow What component(s)?

    somebody knows what component is the project explorer, properties window, form layout in VB? the one that we always drog on or close. i mean both sides of the main form. any help plz. tnx in advance.
    Last edited by noielen; Dec 8th, 2005 at 12:50 AM. Reason: incomplete statement
    noister
    <advertising link removed by moderator>

  2. #2
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    Do you mean dockable windows?

    Look into this:
    http://www.vbaccelerator.com/home/VB...ar/article.asp
    (Download the code from the link in the nav bar on the left of the page)

    Its complicated, but its a lot easier than writing the code from scratch.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  3. #3

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    yes the dockable windows. i try to check, tnx bro!
    noister
    <advertising link removed by moderator>

  4. #4

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    but how can i find it? or the accelerator? how can i have on that so that i can edit/modify?
    noister
    <advertising link removed by moderator>

  5. #5
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    You need to download the project from the link on the left of the page. Register the .OCX. You must also download the SSubTmr6.dll and the toolbar/rebar control (.OCX). Do a search on their website to find these. Then register all the DLLs and OCXs and add the component to your project.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  6. #6

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    i already download, but how to add it to the components of my project? check?
    noister
    <advertising link removed by moderator>

  7. #7
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    Press "Ctrl+T" in VB.

    Did you download the "SSubTmr6.dll" and the "vbalTbar6.ocx" and register them?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  8. #8

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    how to register? i already download in .zip file, i unziped both files, i will copy it to system32?
    noister
    <advertising link removed by moderator>

  9. #9

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    hey pls continue... help plz...

  10. #10
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    Yes copy them to system 32 and double click them to register them.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  11. #11
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: What component(s)?

    Quote Originally Posted by eyeRmonkey
    Yes copy them to system 32 and double click them to register them.
    Eh... you need to use regsvr32...

    Start -> Run ->
    Code:
    regsvr32 dllname.dll

  12. #12
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: What component(s)?

    Selecting them through the Project/Components (or References as the case dictates) window will also register them right from the IDE.

  13. #13
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: What component(s)?

    That's the first I heard of that? Nobody has ever said that before. That is very useful if it's true.

  14. #14
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    Quote Originally Posted by penagate
    Eh... you need to use regsvr32...

    Start -> Run ->
    Code:
    regsvr32 dllname.dll
    In Windows XP if you double click a DLL or OCX it will be automatically registered.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  15. #15
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: What component(s)?

    Nope, not here...

  16. #16
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: What component(s)?

    Really? Thats weird. Its works for me and I have heard others say the same (I think?). Maybe I have something weird installed?

    Actually regsvr is just associated with those files. When you double click the file, it gets ShellExecuted with its default program (regsvr32.exe) and that automatically knows what to do.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  17. #17
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: What component(s)?

    More likely my computer is shot. I'm rebuilding and reinstalling everything very soon.

  18. #18
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    Re: What component(s)?

    Quote Originally Posted by eyeRmonkey
    Really? Thats weird. Its works for me and I have heard others say the same (I think?). Maybe I have something weird installed?

    Actually regsvr is just associated with those files. When you double click the file, it gets ShellExecuted with its default program (regsvr32.exe) and that automatically knows what to do.
    When you double-click a DLL or OCX in any Windows OS to date, you are prompted to choose a program to open with. If you choose regsvr32 for both, it will always register tham after that.

    Also, I have an UnRegister .reg file you can import to your registry that gives you an UnRegister option if you right-click them. Save this to a file.REG:

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe]
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe\shell]
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe\shell\open]
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe\shell\open\command]
    @="\"C:\\WINDOWS\\system32\\regsvr32.exe\" \"%1\""
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe\shell\UnRegister]
    
    [HKEY_CLASSES_ROOT\Applications\regsvr32.exe\shell\UnRegister\command]
    @="\"C:\\WINDOWS\\system32\\regsvr32.exe\" \"-u \" \"%1\""
    Nobody knows what software they want until after you've delivered what they originally asked for.

    Don't solve problems which don't exist.

    "If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)

    2 idiots don't make a genius.

  19. #19

    Thread Starter
    Fanatic Member noielen's Avatar
    Join Date
    Nov 2005
    Location
    Cebu, Phil.
    Posts
    680

    Re: What component(s)?

    tnx to all
    Last edited by noielen; Mar 9th, 2006 at 01:41 AM.

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