In Feburary 2016 29,
Go Daddy is an Arizona-based company that registers millions of Website domain names and hosts many sites as well as providing email, analytics and business tools.Log in to your Go Daddy Account Manager by typing your customer number or login name and password.
Click 'Web Hosting' from the 'Products' section.
Locate your hosting account and click 'Launch' next to it.
Type your external domain in the 'Enter domain' field.
Use the automatically generated user name in the 'FTP user name' field. If you wish to change your user name, click 'Change.' Enter your preferred FTP user name.
Type and retype a password that you wish to use to access the hosting account with FTP.
Click 'Finish.'
In Feburary 2016 29,
Showing posts with label tools. Show all posts
Showing posts with label tools. Show all posts
Monday, 29 February 2016
Tuesday, 23 February 2016
How to Update the Proxy of a Flash PlayerIn Feburary 2016 23,
In Feburary 2016 23,
Click 'Tools' and 'Internet Options' to open the settings dialog in Internet Explorer.
Click the 'Connections' tab, and then click 'LAN Settings' to open the proxy server settings.
Check the 'Use a proxy server for your LAN' option.
Enter the proxy server's address in the 'Address' text field.
Enter the proxy server's port in the 'Port' text field.
Click 'OK' to save your proxy settings.
In Feburary 2016 23,
Click 'Tools' and 'Internet Options' to open the settings dialog in Internet Explorer.
Click the 'Connections' tab, and then click 'LAN Settings' to open the proxy server settings.
Check the 'Use a proxy server for your LAN' option.
Enter the proxy server's address in the 'Address' text field.
Enter the proxy server's port in the 'Port' text field.
Click 'OK' to save your proxy settings.
In Feburary 2016 23,
Monday, 22 February 2016
How to Register My Internet BusinessIn Feburary 2016 22,
In Feburary 2016 22,
Determine a suitable name for your business. Select a simple, easy-to-remember and catchy name ending in '.com'--as you will be offering commercial services. The name you choose for the domain should reflect the nature of your business. For instance, if you are selling gardening tools on the Internet, your website's name should clearly indicate that it sells gardening equipment. However, you will have to be flexible while choosing the name because you will come across competitors with similar names. For this reason, you have to aim for a name that clearly indicates your services, while still managing to have it be different and innovative.
Look for places to register a domain name for your business. You can find some domain registering websites in Resources below.
Check on the domain registering website if your desired domain name is available. If the one you had in mind isn't available, try looking for anything similar. Shopping for an Internet domain is tricky. Different websites have different plans and prices so you will have to look around for best rates.
Find a hosting website for your business. Generally, the website that sells domain name offers hosting services as well, but you should consider looking at other hosting plans. According to webhostingchoice.com, the 10 best web hosting choices are Host Monster, Just Host, Web Hosting Pad, i Page, Blue Host, In Motion Hosting, Host Clear, Host Gator, Go Daddy and Yahoo.
In Feburary 2016 22,
Determine a suitable name for your business. Select a simple, easy-to-remember and catchy name ending in '.com'--as you will be offering commercial services. The name you choose for the domain should reflect the nature of your business. For instance, if you are selling gardening tools on the Internet, your website's name should clearly indicate that it sells gardening equipment. However, you will have to be flexible while choosing the name because you will come across competitors with similar names. For this reason, you have to aim for a name that clearly indicates your services, while still managing to have it be different and innovative.
Look for places to register a domain name for your business. You can find some domain registering websites in Resources below.
Check on the domain registering website if your desired domain name is available. If the one you had in mind isn't available, try looking for anything similar. Shopping for an Internet domain is tricky. Different websites have different plans and prices so you will have to look around for best rates.
Find a hosting website for your business. Generally, the website that sells domain name offers hosting services as well, but you should consider looking at other hosting plans. According to webhostingchoice.com, the 10 best web hosting choices are Host Monster, Just Host, Web Hosting Pad, i Page, Blue Host, In Motion Hosting, Host Clear, Host Gator, Go Daddy and Yahoo.
In Feburary 2016 22,
Friday, 19 February 2016
How to Use VBA to Import Data From Excel Into AccessIn Feburary 2016 19,
In Feburary 2016 19,
Launch Microsoft Office Excel and type 'data1' in A2, and 'data2' in B2. Press 'Ctrl' and 'S' to open the 'Save As' dialog Window and save the workbook in 'C:\Temp\' as 'dataToImport.xlsx.' Click 'Save' and close Excel.
Launch Microsoft Office Access, click 'Blank Database' and click the 'Create' button. Click 'Database Tools,' and click 'Visual Basic' to open the VB Editor Window. Click the 'Insert' menu and then click 'Module' to insert a new code module. Click the 'Tools' menu, click 'References,' and check the box next to 'Microsoft Excel
Object Library.'
Start by typing the following VBA code to create new sub procedure:Private Sub importExcelData()
Type the following to create variables you will use to read Excel: Dim xlApp As Excel.ApplicationDim xlBk As Excel.WorkbookDim xlSht As Excel.Worksheet
Type the following to create variables you will use in Access:Dim dbRst As RecordsetDim dbs As DatabaseDim SQLStr As String
Type the following to define database objects and also define the Excel workbook to use:Set dbs = CurrentDbSet xlApp = Excel.ApplicationSet xlBk = xlApp.Workbooks.Open('C:\Temp\dataToImport.xlsx')Set xlSht = xlBk.Sheets(1)
Create a new table with two columns in Access to import data from Excel. Type the following VBA code to create the table using the 'DoCmd' object:SQLStr = 'CREATE TABLE excelData(columnOne TEXT, columnTwo TEXT)'DoCmd.SetWarnings FalseDoCmd.RunSQL (SQLStr)
Open the table you just created by using a the Recordset object. Type the following to open the table and add a new row:Set dbRst = dbs.OpenRecordset('excelData')dbRst.AddNew
Type the following to get values from the Excel workbook, save them to your table and update the record:xlSht.Range('A2').SelectdbRst.Fields(0).Value = xlSht.Range('A2').ValuexlSht.Range('B2').SelectdbRst.Fields(1).Value = xlSht.Range('B2').ValuedbRst.Update
End your procedure by typing the following VBA code:dbRst.Closedbs.ClosexlBk.CloseEnd Sub
Press 'F5' to run the procedure. The data in your Excel workbook has just been imported into your Access table.
In Feburary 2016 19,
Launch Microsoft Office Excel and type 'data1' in A2, and 'data2' in B2. Press 'Ctrl' and 'S' to open the 'Save As' dialog Window and save the workbook in 'C:\Temp\' as 'dataToImport.xlsx.' Click 'Save' and close Excel.
Launch Microsoft Office Access, click 'Blank Database' and click the 'Create' button. Click 'Database Tools,' and click 'Visual Basic' to open the VB Editor Window. Click the 'Insert' menu and then click 'Module' to insert a new code module. Click the 'Tools' menu, click 'References,' and check the box next to 'Microsoft Excel
Object Library.'
Start by typing the following VBA code to create new sub procedure:Private Sub importExcelData()
Type the following to create variables you will use to read Excel: Dim xlApp As Excel.ApplicationDim xlBk As Excel.WorkbookDim xlSht As Excel.Worksheet
Type the following to create variables you will use in Access:Dim dbRst As RecordsetDim dbs As DatabaseDim SQLStr As String
Type the following to define database objects and also define the Excel workbook to use:Set dbs = CurrentDbSet xlApp = Excel.ApplicationSet xlBk = xlApp.Workbooks.Open('C:\Temp\dataToImport.xlsx')Set xlSht = xlBk.Sheets(1)
Create a new table with two columns in Access to import data from Excel. Type the following VBA code to create the table using the 'DoCmd' object:SQLStr = 'CREATE TABLE excelData(columnOne TEXT, columnTwo TEXT)'DoCmd.SetWarnings FalseDoCmd.RunSQL (SQLStr)
Open the table you just created by using a the Recordset object. Type the following to open the table and add a new row:Set dbRst = dbs.OpenRecordset('excelData')dbRst.AddNew
Type the following to get values from the Excel workbook, save them to your table and update the record:xlSht.Range('A2').SelectdbRst.Fields(0).Value = xlSht.Range('A2').ValuexlSht.Range('B2').SelectdbRst.Fields(1).Value = xlSht.Range('B2').ValuedbRst.Update
End your procedure by typing the following VBA code:dbRst.Closedbs.ClosexlBk.CloseEnd Sub
Press 'F5' to run the procedure. The data in your Excel workbook has just been imported into your Access table.
In Feburary 2016 19,
How to Use the vBulletin Tools in a .Php FileIn Feburary 2016 19,
In Feburary 2016 19,
Open the vBulletin.zip file and locate the “do_not_upload” folder.
Double-click the “do_not_upload” folder to access the “tools.php.”
Log in to the Web server hosting your vBulletin installation by using an FTP client.
Copy and paste the tools.php file to the “admincp” folder of vBulletin.
Launch any Web browser and navigate to Domain.com/forum/admincp/tools.php. Replace “Domain.com” with the URL of your vBulletin site.
Make the necessary changes to your site using the vBulletin Tool page.
Delete the tools.php file from your vBulletin installation after you are done making changes.
In Feburary 2016 19,
Open the vBulletin.zip file and locate the “do_not_upload” folder.
Double-click the “do_not_upload” folder to access the “tools.php.”
Log in to the Web server hosting your vBulletin installation by using an FTP client.
Copy and paste the tools.php file to the “admincp” folder of vBulletin.
Launch any Web browser and navigate to Domain.com/forum/admincp/tools.php. Replace “Domain.com” with the URL of your vBulletin site.
Make the necessary changes to your site using the vBulletin Tool page.
Delete the tools.php file from your vBulletin installation after you are done making changes.
In Feburary 2016 19,
Thursday, 18 February 2016
How to Solve a Proxy Error That's Not Allowing the ServerIn Feburary 2016 18,
In Feburary 2016 18,
Launch 'Internet Explorer' from the 'Start' menu under 'All Programs.'
Click the 'Tools' menu and select 'Internet Options.'
Click the 'Advanced' tab.
Click to clear the check beside 'Enable folder view for FTP sites.'
Click 'Apply.' Click 'OK.'
In Feburary 2016 18,
Launch 'Internet Explorer' from the 'Start' menu under 'All Programs.'
Click the 'Tools' menu and select 'Internet Options.'
Click the 'Advanced' tab.
Click to clear the check beside 'Enable folder view for FTP sites.'
Click 'Apply.' Click 'OK.'
In Feburary 2016 18,
Wednesday, 17 February 2016
How to Set Up FireFTP for BlueHostIn Feburary 2016 17,
In Feburary 2016 17,
Download and install the FireFTP FireFox add-on. (see Resources). Click 'Add to Firefox.' This will open the 'Software Installation' window. Click the 'Install Now' button. After it installs, close out and reopen FireFox.
Click 'Tools,' then click 'FireFTP in FireFox' to open the FireFTP program in the FireFox window.
Click on 'Create an account.' Enter your BlueHost FTP Web address, BlueHost FTP server in the 'Host' box and your user login and password for your BlueHost FTP server. Click 'OK.'
Click 'Connect.' FireFTP will connect to your Bluehost FTP server and present the files and folders on the right of the FireFTP screen.
Click 'Disconnect' to close out of the FTP connection when done.
In Feburary 2016 17,
Download and install the FireFTP FireFox add-on. (see Resources). Click 'Add to Firefox.' This will open the 'Software Installation' window. Click the 'Install Now' button. After it installs, close out and reopen FireFox.
Click 'Tools,' then click 'FireFTP in FireFox' to open the FireFTP program in the FireFox window.
Click on 'Create an account.' Enter your BlueHost FTP Web address, BlueHost FTP server in the 'Host' box and your user login and password for your BlueHost FTP server. Click 'OK.'
Click 'Connect.' FireFTP will connect to your Bluehost FTP server and present the files and folders on the right of the FireFTP screen.
Click 'Disconnect' to close out of the FTP connection when done.
In Feburary 2016 17,
Saturday, 13 February 2016
How to Use FireFTPIn Feburary 2016 13,
In Feburary 2016 13,
Install FireFTP. Go to the first resource (while running Firefox) and click the 'Download FireFTP' link. Click 'Allow' and 'Install Now' when prompted. When the installation finishes, click the 'Restart Firefox' button.
Click 'Tools' and 'FireFTP.'
Click 'Quick Connect.' Under 'Host,' type in the name of an FTP server. If you are unsure of one, you can use the FTP server for the University of Idaho: mirror.its.uidaho.edu. Select the 'Anonymous' box, since you do not have a user account for this server. Alternatively, if you have a username and password, enter them in the appropriate login boxes.
Click 'Connect.' Your computer's file system will be displayed on the left, and the file system for the server will be displayed on the right. To upload a file, select a file on the left and click the '->' button. This may fail if you lack write permission to the server. Generally, only users with passwords are able to write to a given FTP server. To download, select a file on the right side and click the '
In Feburary 2016 13,
Install FireFTP. Go to the first resource (while running Firefox) and click the 'Download FireFTP' link. Click 'Allow' and 'Install Now' when prompted. When the installation finishes, click the 'Restart Firefox' button.
Click 'Tools' and 'FireFTP.'
Click 'Quick Connect.' Under 'Host,' type in the name of an FTP server. If you are unsure of one, you can use the FTP server for the University of Idaho: mirror.its.uidaho.edu. Select the 'Anonymous' box, since you do not have a user account for this server. Alternatively, if you have a username and password, enter them in the appropriate login boxes.
Click 'Connect.' Your computer's file system will be displayed on the left, and the file system for the server will be displayed on the right. To upload a file, select a file on the left and click the '->' button. This may fail if you lack write permission to the server. Generally, only users with passwords are able to write to a given FTP server. To download, select a file on the right side and click the '
In Feburary 2016 13,
Thursday, 11 February 2016
How to Copy Paste From a Remote DesktopIn Feburary 2016 11,
In Feburary 2016 11,
Click the 'Start' menu on the computer where you're sitting. Select 'Control Panel'.
Open the 'Administrative Tools' icon in the Control Panel, then double-click 'Services'.
Scroll down the list of Windows services until you find the following entries:Network DDE DSDM Network DDEClipBook
Right-click each entry in turn and select 'Start' for each.
Repeat Steps 1-4 on the remote computer through the Remote Desktop. Once these steps are completed, you will be able to copy and paste between the computers.
In Feburary 2016 11,
Click the 'Start' menu on the computer where you're sitting. Select 'Control Panel'.
Open the 'Administrative Tools' icon in the Control Panel, then double-click 'Services'.
Scroll down the list of Windows services until you find the following entries:Network DDE DSDM Network DDEClipBook
Right-click each entry in turn and select 'Start' for each.
Repeat Steps 1-4 on the remote computer through the Remote Desktop. Once these steps are completed, you will be able to copy and paste between the computers.
In Feburary 2016 11,
Wednesday, 10 February 2016
How to Make an HTML CalendarIn Feburary 2016 10,
In Feburary 2016 10,
Use a html Calendar code generator. Most site provide free code generating services that provide you with the code already written. One site that provides this service is Waukegan Schools District 60. The district has put together a very effective web editor that generates a calendar code that any novice can use with ease. Once at the site scroll down to find the editor, which is located at the bottom of the page tabbed 'Calendar Tools'. In the Week Day Text Format area, you can choose whether to abbreviate or spell out days of the week, followed with the options of making them bold or italics. You also have the choice to choose the color of the text. After pressing the button to 'Create Calendar', you will be prompted to enter the month of your choice and the year. Completing those tasks will finish the code generation and your calendar is ready for editing. Copy and paste the code in Microsoft word or notepad.
Edit the HTML source code. Change the image source: Starting with 'http', change this present location to the location of the image you want to use.
Edit the days of the week. Change the days to the week by first locating the area needed for editing which can be found here:
Sun
Each line will have a different day of the week. At the word 'Sun' you can change that to whatever date you need. Also inserting the break tag
you can add meeting times, reminders or any other notes on that day. If done correctly it should look like this:
Sun
Don't forget to goto meeting at 6:30
Switch to your web page editor. There are many web editors out there being offered as freeware. One of those web editors is HTML List Editor. This simple editor allows you to write and edit HTML code and to save it as a web page for later viewing. There is also Microsoft Front Page which gives you a plethora of options to edit with, one being web page preview, normal view, and source code view. Even if you choose not to use a web editor this code generator will give you the basic template for creating an HTML calendar.
In Feburary 2016 10,
Use a html Calendar code generator. Most site provide free code generating services that provide you with the code already written. One site that provides this service is Waukegan Schools District 60. The district has put together a very effective web editor that generates a calendar code that any novice can use with ease. Once at the site scroll down to find the editor, which is located at the bottom of the page tabbed 'Calendar Tools'. In the Week Day Text Format area, you can choose whether to abbreviate or spell out days of the week, followed with the options of making them bold or italics. You also have the choice to choose the color of the text. After pressing the button to 'Create Calendar', you will be prompted to enter the month of your choice and the year. Completing those tasks will finish the code generation and your calendar is ready for editing. Copy and paste the code in Microsoft word or notepad.
Edit the HTML source code. Change the image source: Starting with 'http', change this present location to the location of the image you want to use.
Edit the days of the week. Change the days to the week by first locating the area needed for editing which can be found here:
Sun
Each line will have a different day of the week. At the word 'Sun' you can change that to whatever date you need. Also inserting the break tag
you can add meeting times, reminders or any other notes on that day. If done correctly it should look like this:
Sun
Don't forget to goto meeting at 6:30
Switch to your web page editor. There are many web editors out there being offered as freeware. One of those web editors is HTML List Editor. This simple editor allows you to write and edit HTML code and to save it as a web page for later viewing. There is also Microsoft Front Page which gives you a plethora of options to edit with, one being web page preview, normal view, and source code view. Even if you choose not to use a web editor this code generator will give you the basic template for creating an HTML calendar.
In Feburary 2016 10,
Tuesday, 9 February 2016
How to Build a Merchant WebsiteIn Feburary 2016 09,
In Feburary 2016 09,
Select your company name. Your name should be easy to remember. Once you've selected your name, purchase a domain name from GoDaddy.com (see Resources).
Choose an E-commerce site to host your Web site. Volusion.com offers an entire package that includes your domain name, shopping cart and Web hosting, starting at $19.95. Corecommerce.com is another E-commerce site that offers packages for as little as $29.95 (you will need to purchase your own domain name). Both sites offer business e-mail addresses, Web site templates (and the ability to use your own design), marketing tools, accounting tools, data feeds, Google AdWords coupons, the ability to create coupons or newsletters for your store and the ability to accept a number of different payment methods such as Paypal, Google Checkout and credit cards. GoDaddy.com allows you to pick and choose the services you need, such as a domain name or shopping cart. Web hosting starts at $4.99. If you aren't familiar with SEO and online selling, an all-inclusive site such as Corecommerce.com may be the way to go. Both Volusion.com and Corecommerce.com offer a free 30-day trial.
Build an attractive storefront. Take high-quality images of your products and create clear and thorough product descriptions that use relevant key words.
Create your business profile on an About Me page on the Web site that includes some information about how your business began, your vision and your goals. Create a Shipping and Returns page as well as a Privacy Notice page that tells your customers how you intend to use and safeguard their personal information.
Minimize risks by using security measures such as Secure Socket Layer (SSL) certificates such as those offered by VeriSign and payment gateways such as Authorize.net (see Resources). Contact your hosting site to see what services they offer or which gateways are compatible.
In Feburary 2016 09,
Select your company name. Your name should be easy to remember. Once you've selected your name, purchase a domain name from GoDaddy.com (see Resources).
Choose an E-commerce site to host your Web site. Volusion.com offers an entire package that includes your domain name, shopping cart and Web hosting, starting at $19.95. Corecommerce.com is another E-commerce site that offers packages for as little as $29.95 (you will need to purchase your own domain name). Both sites offer business e-mail addresses, Web site templates (and the ability to use your own design), marketing tools, accounting tools, data feeds, Google AdWords coupons, the ability to create coupons or newsletters for your store and the ability to accept a number of different payment methods such as Paypal, Google Checkout and credit cards. GoDaddy.com allows you to pick and choose the services you need, such as a domain name or shopping cart. Web hosting starts at $4.99. If you aren't familiar with SEO and online selling, an all-inclusive site such as Corecommerce.com may be the way to go. Both Volusion.com and Corecommerce.com offer a free 30-day trial.
Build an attractive storefront. Take high-quality images of your products and create clear and thorough product descriptions that use relevant key words.
Create your business profile on an About Me page on the Web site that includes some information about how your business began, your vision and your goals. Create a Shipping and Returns page as well as a Privacy Notice page that tells your customers how you intend to use and safeguard their personal information.
Minimize risks by using security measures such as Secure Socket Layer (SSL) certificates such as those offered by VeriSign and payment gateways such as Authorize.net (see Resources). Contact your hosting site to see what services they offer or which gateways are compatible.
In Feburary 2016 09,
Monday, 8 February 2016
How to Find Stored PasswordsIn Feburary 2016 08,
In Feburary 2016 08,
Open the 'Tools' menu on your Internet browsing application and click on the 'Options' tab.
Click the 'Security' tab in the 'Options' menu.
Click 'Saved Passwords' in your 'Options' menu, and click 'Show Passwords.' Click 'OK' on the warning box, and your passwords will be presented with their corresponding websites.
In Feburary 2016 08,
Open the 'Tools' menu on your Internet browsing application and click on the 'Options' tab.
Click the 'Security' tab in the 'Options' menu.
Click 'Saved Passwords' in your 'Options' menu, and click 'Show Passwords.' Click 'OK' on the warning box, and your passwords will be presented with their corresponding websites.
In Feburary 2016 08,
Sunday, 7 February 2016
How to Create Alternating Background Colors in Table Rows With CSSIn Feburary 2016 07,
In Feburary 2016 07,
Here's a simple table with alternating gray and white rows. This technique will work for any color scheme or any size table.
Build the table using your normal HTML table-building tools.
In the stylesheet, create a class that can be applied to alternating TR (table row) elements. Here's an example:
.rowcolor {
background: #CCCCCC;
}
In the HTML, add the class to alternating rows in your table. Apply it to the TR element. See image for example.
If you would like to have a different color for the row of the table that contains the headings, you can create a new class or id rule in your stylesheet that will only apply a background color to the TH elements.
In Feburary 2016 07,
Here's a simple table with alternating gray and white rows. This technique will work for any color scheme or any size table.
Build the table using your normal HTML table-building tools.
In the stylesheet, create a class that can be applied to alternating TR (table row) elements. Here's an example:
.rowcolor {
background: #CCCCCC;
}
In the HTML, add the class to alternating rows in your table. Apply it to the TR element. See image for example.
If you would like to have a different color for the row of the table that contains the headings, you can create a new class or id rule in your stylesheet that will only apply a background color to the TH elements.
In Feburary 2016 07,
Labels:
alternating,
Build,
Building,
color,
HTML,
normal,
scheme,
size,
stylesheet,
tools
How to Use FTP in FirefoxIn Feburary 2016 07,
In Feburary 2016 07,
Download the FireFTP plugin at the Mozilla website. When the download is finished, open the file with Mozilla FireFox and follow the instructions to install the FireFTP plugin.
Start the plugin by going to the 'Tools' section on the menu bar and selecting 'FireFTP' in the drop-down menu. Once the plugin is enabled, then you can start using it to connect to various FTP servers on the web.
Connect to an FTP server by selecting the 'Create an account' drop-down menu. When the Account Manager screen appears, input your FTP server information in the fields and click on 'Connect' to connect to the server.
Transfer files to your FTP server by selecting the files in the left window pane and clicking the right arrow. Conversely, you can transfer files from your FTP server by selecting the files in the right window pane and clicking the left arrow.
In Feburary 2016 07,
Download the FireFTP plugin at the Mozilla website. When the download is finished, open the file with Mozilla FireFox and follow the instructions to install the FireFTP plugin.
Start the plugin by going to the 'Tools' section on the menu bar and selecting 'FireFTP' in the drop-down menu. Once the plugin is enabled, then you can start using it to connect to various FTP servers on the web.
Connect to an FTP server by selecting the 'Create an account' drop-down menu. When the Account Manager screen appears, input your FTP server information in the fields and click on 'Connect' to connect to the server.
Transfer files to your FTP server by selecting the files in the left window pane and clicking the right arrow. Conversely, you can transfer files from your FTP server by selecting the files in the right window pane and clicking the left arrow.
In Feburary 2016 07,
Thursday, 4 February 2016
How to Fix the Ran Online Script ErrorIn Feburary 2016 04,
In Feburary 2016 04,
Click the 'Tools' menu in the Internet Explorer window.
Click the 'Internet Options' button.
Click on the 'Advanced' tab.
Click the 'Disable Script Debugging' tab.
Click the 'OK' button.
Unblock Active Scripting
Open Internet Explorer.
Click the 'Tools' button and then click the 'Internet Options' menu.
Click the 'Security' tab.
Click 'Default Level.'
Click the 'OK' button.
Remove Temporary Internet Files
Open Internet Explorer.
Click the 'Tools' button and then click 'Internet Options.'
Click on the 'General' tab. Click the 'Settings' button under the 'Temporary Internet Files' menu.
Click 'Delete' files and click 'OK.' Click the 'Delete Cookies' button and then click the 'OK' button.
Click the 'Clear History' button and then click 'Yes.' Click the 'OK' button.
In Feburary 2016 04,
Click the 'Tools' menu in the Internet Explorer window.
Click the 'Internet Options' button.
Click on the 'Advanced' tab.
Click the 'Disable Script Debugging' tab.
Click the 'OK' button.
Unblock Active Scripting
Open Internet Explorer.
Click the 'Tools' button and then click the 'Internet Options' menu.
Click the 'Security' tab.
Click 'Default Level.'
Click the 'OK' button.
Remove Temporary Internet Files
Open Internet Explorer.
Click the 'Tools' button and then click 'Internet Options.'
Click on the 'General' tab. Click the 'Settings' button under the 'Temporary Internet Files' menu.
Click 'Delete' files and click 'OK.' Click the 'Delete Cookies' button and then click the 'OK' button.
Click the 'Clear History' button and then click 'Yes.' Click the 'OK' button.
In Feburary 2016 04,
How to Start a Sports WebsiteIn Feburary 2016 04,
In Feburary 2016 04,
Choose a web hosting company that offers the ability to stream video for websites. There are many hosting companies to choose from (see Resources). Avoid free web hosting companies, as most don't offer enough storage space for the uploading sports media and will also use your website for their advertisements.
Select a domain name. It's a good idea to create a domain related to sports and is easy for people to remember. Check to see if the domain name is still available. There will be different top-level domain options to choose from. If you plan to sell products or advertisements on your website, go with .com for commercial. If your website is based on an organization, such as a soccer league, choose .org.
Design your sports website using the built-in design tools offered by your hosting company. Some hosting companies, like GoDaddy, will charge you a small fee to use their site builder, while other hosting companies, like Yahoo! Web Hosting, have free design tools to help create your website with no experience necessary.
Consider buying a professional sports template. This will help make your website stand out, without the worry of website designing. You will, however, still need to publish content, upload media and insert links. Ask your hosting company how to install a website template into the web host so it appears on the Internet when you publish the site.
Create sports-related content. Write biographies of famous players. Upload photos of sports events. Upload audio content of sports experts talking about the latest sports news. Upload video content from YouTube or other video sites on sports- related material to make your site more interesting. Add a poll asking sports fans' opinions about the latest deal. Install a forum that allows people to have conversations with each other, or a comment box underneath each post so people can comment about the latest news.
Consider adding a sports widget application to your site. A widget is a application that you can put into your blog or web page to allow for new updates, such as real-time scores, directly to your website. Doing this can make your site more attractive, deliver the most recent news, and get your visitors to stay around longer.
Review your website. Check to see if there are any problems that slow down the loading of your website. Make sure your links are placed in the right place, preferably right on top so your visitors know where to navigate when they first visit your website. Check to see if your website browser is compatible---it should look good in Internet Explorer as well as Mozilla Firefox. Select a font that looks professional. Comic Sans or bright green will make the site look amateurish. Proofread any content text for grammar and punctuation errors. Publish your content when you are finished reviewing and ready to make your website available for people to visit.
In Feburary 2016 04,
Choose a web hosting company that offers the ability to stream video for websites. There are many hosting companies to choose from (see Resources). Avoid free web hosting companies, as most don't offer enough storage space for the uploading sports media and will also use your website for their advertisements.
Select a domain name. It's a good idea to create a domain related to sports and is easy for people to remember. Check to see if the domain name is still available. There will be different top-level domain options to choose from. If you plan to sell products or advertisements on your website, go with .com for commercial. If your website is based on an organization, such as a soccer league, choose .org.
Design your sports website using the built-in design tools offered by your hosting company. Some hosting companies, like GoDaddy, will charge you a small fee to use their site builder, while other hosting companies, like Yahoo! Web Hosting, have free design tools to help create your website with no experience necessary.
Consider buying a professional sports template. This will help make your website stand out, without the worry of website designing. You will, however, still need to publish content, upload media and insert links. Ask your hosting company how to install a website template into the web host so it appears on the Internet when you publish the site.
Create sports-related content. Write biographies of famous players. Upload photos of sports events. Upload audio content of sports experts talking about the latest sports news. Upload video content from YouTube or other video sites on sports- related material to make your site more interesting. Add a poll asking sports fans' opinions about the latest deal. Install a forum that allows people to have conversations with each other, or a comment box underneath each post so people can comment about the latest news.
Consider adding a sports widget application to your site. A widget is a application that you can put into your blog or web page to allow for new updates, such as real-time scores, directly to your website. Doing this can make your site more attractive, deliver the most recent news, and get your visitors to stay around longer.
Review your website. Check to see if there are any problems that slow down the loading of your website. Make sure your links are placed in the right place, preferably right on top so your visitors know where to navigate when they first visit your website. Check to see if your website browser is compatible---it should look good in Internet Explorer as well as Mozilla Firefox. Select a font that looks professional. Comic Sans or bright green will make the site look amateurish. Proofread any content text for grammar and punctuation errors. Publish your content when you are finished reviewing and ready to make your website available for people to visit.
In Feburary 2016 04,
Wednesday, 3 February 2016
How to Use ListView With a CheckBox in VBAIn Feburary 2016 03,
In Feburary 2016 03,
Launch Microsoft Excel, click the 'Developer' tab and click 'Visual Basic' to open the VBA Editor window. Click the 'Insert' menu and click 'UserForm' to create a new form. Click the 'Tools,' click 'Additional Controls,' and check the box next to 'Microsoft ListView Control' to add a new 'ListView' control to your form.
Right-click the 'ListView' control and click 'Properties.' Scroll down the properties Window and choose 'True' next to 'Checkboxes.' Click 'CommandButton' from the 'Toolbox' pane and click the form to add a new button control. Add a second button using the same technique.
Double-click 'CommandButton1' to create a click event for this button. Add the following code to populate the 'ListBox' with three items:Me.ListView1.ListItems.Add(1) = 'Check Item 1'Me.ListView1.ListItems.Add(2) = 'Check Item 2'Me.ListView1.ListItems.Add(3) = 'Check Item 3'
Switch back to your form and double-click 'CommandButton2' to create a new click event for this button. Add the following code to loop through the 'ListBox' items and print any checked items to the 'Immediate' window:For counter = 1 To Me.ListView1.ListItems.Count
If Me.ListView1.ListItems.Item(counter).Checked ThenDebug.Print Me.ListView1.ListItems.Item(counter).TextEnd IfNext
Switch back to your form and click 'F5' to run the program. Click 'CommandButton1' to populate the 'ListView' control and click 'CommandButton2' to display checked items.
In Feburary 2016 03,
Launch Microsoft Excel, click the 'Developer' tab and click 'Visual Basic' to open the VBA Editor window. Click the 'Insert' menu and click 'UserForm' to create a new form. Click the 'Tools,' click 'Additional Controls,' and check the box next to 'Microsoft ListView Control' to add a new 'ListView' control to your form.
Right-click the 'ListView' control and click 'Properties.' Scroll down the properties Window and choose 'True' next to 'Checkboxes.' Click 'CommandButton' from the 'Toolbox' pane and click the form to add a new button control. Add a second button using the same technique.
Double-click 'CommandButton1' to create a click event for this button. Add the following code to populate the 'ListBox' with three items:Me.ListView1.ListItems.Add(1) = 'Check Item 1'Me.ListView1.ListItems.Add(2) = 'Check Item 2'Me.ListView1.ListItems.Add(3) = 'Check Item 3'
Switch back to your form and double-click 'CommandButton2' to create a new click event for this button. Add the following code to loop through the 'ListBox' items and print any checked items to the 'Immediate' window:For counter = 1 To Me.ListView1.ListItems.Count
If Me.ListView1.ListItems.Item(counter).Checked ThenDebug.Print Me.ListView1.ListItems.Item(counter).TextEnd IfNext
Switch back to your form and click 'F5' to run the program. Click 'CommandButton1' to populate the 'ListView' control and click 'CommandButton2' to display checked items.
In Feburary 2016 03,
Monday, 1 February 2016
How to Calculate Download TimeIn Feburary 2016 01,
In Feburary 2016 01,
Reference the size of the file. If you are downloading from a website, or an FTP site, the download size might be listed next to the download link. On a peer-to-peer transfer program, the size is usually listed in one of the columns.
Determine your connection speed. This information should have been provided when you signed up for your Internet service. If not, call you Internet service provider and ask them your connection speed. Common connection speeds are 56 Kb for dial up or 3.0 to 10.0 Mbps for high-speed access. You can also test your speed using online speed tools, such as Speedtest.net, Speakeasy.net and CNET.com.If you know the website or P2P connection speed, and it is slower than yours, then use that speed for the calculation. When downloading, you can only download as fast as the slowest connection.Alternatively, begin downloading the file and look at the progress window. Typically, the actual download speed is displayed. Using this figure saves you to trouble of determining your or the website's connection speed.
Convert the connection speed into the same units as displayed for the download. As an example, If the download was 200 MB, then you will want to convert your connection speed to MB. As an example, you might have a 3.0 Mbps connection. Note the difference between the capitalized and lower case 'B,' which signifies 'bytes' or 'bits' respectively. Since there are 8 bits in a byte, you would divide 3.0 Mb by 8 to convert the connection speed to 0.375 MB per second.
Divide the download size by the connection speed to calculate download time. In the example, 200 MB divided by 0.375 MB per second gives you a download speed of 533 seconds, or 8 minutes and 53 seconds.
In Feburary 2016 01,
Reference the size of the file. If you are downloading from a website, or an FTP site, the download size might be listed next to the download link. On a peer-to-peer transfer program, the size is usually listed in one of the columns.
Determine your connection speed. This information should have been provided when you signed up for your Internet service. If not, call you Internet service provider and ask them your connection speed. Common connection speeds are 56 Kb for dial up or 3.0 to 10.0 Mbps for high-speed access. You can also test your speed using online speed tools, such as Speedtest.net, Speakeasy.net and CNET.com.If you know the website or P2P connection speed, and it is slower than yours, then use that speed for the calculation. When downloading, you can only download as fast as the slowest connection.Alternatively, begin downloading the file and look at the progress window. Typically, the actual download speed is displayed. Using this figure saves you to trouble of determining your or the website's connection speed.
Convert the connection speed into the same units as displayed for the download. As an example, If the download was 200 MB, then you will want to convert your connection speed to MB. As an example, you might have a 3.0 Mbps connection. Note the difference between the capitalized and lower case 'B,' which signifies 'bytes' or 'bits' respectively. Since there are 8 bits in a byte, you would divide 3.0 Mb by 8 to convert the connection speed to 0.375 MB per second.
Divide the download size by the connection speed to calculate download time. In the example, 200 MB divided by 0.375 MB per second gives you a download speed of 533 seconds, or 8 minutes and 53 seconds.
In Feburary 2016 01,
Subscribe to:
Posts (Atom)