Er... hmmm. Only just occured to me that you may not be using 1.5 oh well here are some 1.5esque instructions to get you going

Create a new folder somewhere where you can prepare your new component.
Download yourself a copy of ADOdb and put it to it's own folder. Then create a compoennt install XMl file. should look summit like this:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install SYSTEM "http://dev.joomla.org/xml/1.5/component-install.dtd">
<install type="component" version="1.5">
<name>My Extension</name>
<creationDate>MonthName Year</creationDate>
<author>Author's Name</author>
<authorEmail>Author's Email</authorEmail>
<authorUrl>Author's Website</authorUrl>
<copyright>Copyright Notice</copyright>
<license>Component License Agreement</license>
<version>Component Version</version>
<description>Component Description</description>
<administration>
<menu>My Extension</menu>
<files>
<filename>admin.myextension.php</filename>
<filename>config.xml</filename>
<folder>adobd</folder>
</files>
</administration>
<install />
<uninstall />
</install>
Create an XML file named config.xml and put this in it:
Code:
<?xml version="1.0" encoding="utf-8"?>
<config>
<params>
<param name="username" type="text" label="Username" description="MSSQL Username" size="30" />
<param name="password" type="password" label="Password" description="MSSQL Password" size="30" />
<param name="server" type="text" label="Server" description="MSSQL Server" size="30" />
</params>
</config>
Then create a file called admin.myextension.php and add this to it:
[php]// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
JToolBarHelper::preferences();[/php]
That should get you started. Once you;ve done that bung it all in an archive and try and install it as a component!
Note that I just wrote this on the fly so there are probably some mistakes lol.
@Moderators
Can we split this thread into two? Seems to have gone way off topic... fanks!
