|
-
Dec 8th, 2005, 12:47 AM
#1
Thread Starter
Fanatic Member
-
Dec 8th, 2005, 01:11 AM
#2
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.
-
Dec 8th, 2005, 01:28 AM
#3
Thread Starter
Fanatic Member
Re: What component(s)?
yes the dockable windows. i try to check, tnx bro!
noister
<advertising link removed by moderator>
-
Dec 8th, 2005, 01:34 AM
#4
Thread Starter
Fanatic Member
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>
-
Dec 8th, 2005, 01:45 AM
#5
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.
-
Dec 8th, 2005, 01:54 AM
#6
Thread Starter
Fanatic Member
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>
-
Dec 8th, 2005, 02:11 AM
#7
Re: What component(s)?
Press "Ctrl+T" in VB.
Did you download the "SSubTmr6.dll" and the "vbalTbar6.ocx" and register them?
-
Dec 8th, 2005, 02:31 AM
#8
Thread Starter
Fanatic Member
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>
-
Dec 8th, 2005, 03:05 AM
#9
Thread Starter
Fanatic Member
Re: What component(s)?
hey pls continue... help plz...
-
Dec 8th, 2005, 09:59 AM
#10
Re: What component(s)?
Yes copy them to system 32 and double click them to register them.
-
Dec 8th, 2005, 12:51 PM
#11
Re: What component(s)?
 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
-
Dec 8th, 2005, 12:53 PM
#12
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.
-
Dec 8th, 2005, 01:03 PM
#13
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.
-
Dec 8th, 2005, 03:41 PM
#14
Re: What component(s)?
 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.
-
Dec 8th, 2005, 03:43 PM
#15
-
Dec 8th, 2005, 06:54 PM
#16
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.
-
Dec 8th, 2005, 07:01 PM
#17
Re: What component(s)?
More likely my computer is shot. I'm rebuilding and reinstalling everything very soon.
-
Dec 8th, 2005, 11:47 PM
#18
Re: What component(s)?
 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.
-
Dec 9th, 2005, 03:44 AM
#19
Thread Starter
Fanatic Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|