In Feburary 2016 24,
If you are computer savvy, you can write a program on your own in which you can load documents and run searches on them. But if you have a limited amount of time or limited computer skills, consider using programs from companies such as Sendouts or Recruiting Wizard. Regardless of which method you choose, you must upload the resumes you have received to the program (simply use the 'attach' button as you would with a regular document in an e-mail).
Consider the requirement for each open position. If you're looking for someone with a certain type of experience, run a search through the resumes for words related to that experience. This will help you narrow down the field.
Build your system so that you will be able to search for several features at once. This can include the amount of experience a person has and the type of positions he has held in the past, as well as values or career goals indicated in the resume.
Run frequent searches through your resume-tracking software as you add more resumes. This software is designed to save you from having to read through every submission.
In Feburary 2016 24,
Showing posts with label document. Show all posts
Showing posts with label document. Show all posts
Wednesday, 24 February 2016
Sunday, 21 February 2016
How to Use CPanel to Create a WebsiteIn Feburary 2016 21,
In Feburary 2016 21,
Create your website files using Notepad or an HTML program. Save the files on your computer and remember where you saved them.
Log in to Cpanel. Use the information your hosting provider gave you to log in to your Cpanel account.
Access the main directory. Click on the icon that says 'File Manager' and then select the 'Document Root' folder for your domain. Next click on ''public_html'.
Upload your website files. You will see a split screen. One side represents your computer's drive, the other side represents the Cpanel tool. Transfer your website HTML files from your computer to Cpanel by highlighting the files and clicking on the transfer arrow.
Test your website. To ensure that your files have been properly uploaded, type your web address in your browser window.
Installing Website Software
Log in to your Cpanel account.Scroll down to 'Software and Services' and click on 'Fantastico Deluxe'.
Decide on which software you want to use to create your website. Fantastico has many choices of website software categorized as either 'Blogs' or 'Content Management Systems'. If you click on each software selection you can see its features. Your choice will depend on what your needs are.
Make your software selection and click on it. Next click on 'New Installation' to begin the installation process.
Follow the prompts to install the software. Usually you will just have to enter basic information such as the name of your site, your email address and a site password.
Wait for the installation to complete; the screen will prompt you when this is the case. You will also receive an email if you provided your email address.
Use the web software to create your website. Now that the software is installed, you can begin adding content to your website. The email you received after installation will provided details on how to log in to the administration panel so that you can begin to add content.
In Feburary 2016 21,
Create your website files using Notepad or an HTML program. Save the files on your computer and remember where you saved them.
Log in to Cpanel. Use the information your hosting provider gave you to log in to your Cpanel account.
Access the main directory. Click on the icon that says 'File Manager' and then select the 'Document Root' folder for your domain. Next click on ''public_html'.
Upload your website files. You will see a split screen. One side represents your computer's drive, the other side represents the Cpanel tool. Transfer your website HTML files from your computer to Cpanel by highlighting the files and clicking on the transfer arrow.
Test your website. To ensure that your files have been properly uploaded, type your web address in your browser window.
Installing Website Software
Log in to your Cpanel account.Scroll down to 'Software and Services' and click on 'Fantastico Deluxe'.
Decide on which software you want to use to create your website. Fantastico has many choices of website software categorized as either 'Blogs' or 'Content Management Systems'. If you click on each software selection you can see its features. Your choice will depend on what your needs are.
Make your software selection and click on it. Next click on 'New Installation' to begin the installation process.
Follow the prompts to install the software. Usually you will just have to enter basic information such as the name of your site, your email address and a site password.
Wait for the installation to complete; the screen will prompt you when this is the case. You will also receive an email if you provided your email address.
Use the web software to create your website. Now that the software is installed, you can begin adding content to your website. The email you received after installation will provided details on how to log in to the administration panel so that you can begin to add content.
In Feburary 2016 21,
Thursday, 18 February 2016
How to Get TD Class Value in JqueryIn Feburary 2016 18,
In Feburary 2016 18,
Open the Web page in Notepad or a code editor, and look for the jQuery library file. If your code contains no reference to this file, add this code:Place this reference between the '
' tags of your Web page code or just above the closing '
' tag.
Add a pair of 'Write all jQuery code between the '
' tags.
Write a function to check for when the document finishes loading. This is also known as the 'document ready' function:$(function () {});The above code is short-hand for '$(document).ready()'.
Declare an array type variable that will hold the class values of your '' tags:var tdValue = [];Add this code between the curly braces of the 'document ready' function.
Iterate through each instance of '' in the Web page code by creating an 'each()' loop:$('td').each(function(i) {});This code goes after the array declaration. Note that 'each()' attaches to the 'td' selector, and a variable 'i' is passed as a parameter in the function. You need the 'i' variable to get values from the array.
Set your array equal to the results of the 'attr()' function inside the 'each()' loop:tdValue[i] = $(this).attr('class');The 'this' selector gets the parent selector, in this case 'td' from the selector in the line of code above it. Use 'class' inside 'attr()' to get the value of the class attribute for each '' tag.
Output the class name for each '' tag as text in each table cell by adding this line of code after the line containing your 'attr()' function:$(this).text(tdValue[i]);The finished script should look like this:$(function() {var tdValue = [];$('td').each(function(i) {
tdValue[i] = $(this).attr('class');$(this).text(tdValue[i]);
});});
In Feburary 2016 18,
Open the Web page in Notepad or a code editor, and look for the jQuery library file. If your code contains no reference to this file, add this code:Place this reference between the '
' tags of your Web page code or just above the closing '
' tag.
Add a pair of 'Write all jQuery code between the '
' tags.
Write a function to check for when the document finishes loading. This is also known as the 'document ready' function:$(function () {});The above code is short-hand for '$(document).ready()'.
Declare an array type variable that will hold the class values of your '' tags:var tdValue = [];Add this code between the curly braces of the 'document ready' function.
Iterate through each instance of '' in the Web page code by creating an 'each()' loop:$('td').each(function(i) {});This code goes after the array declaration. Note that 'each()' attaches to the 'td' selector, and a variable 'i' is passed as a parameter in the function. You need the 'i' variable to get values from the array.
Set your array equal to the results of the 'attr()' function inside the 'each()' loop:tdValue[i] = $(this).attr('class');The 'this' selector gets the parent selector, in this case 'td' from the selector in the line of code above it. Use 'class' inside 'attr()' to get the value of the class attribute for each '' tag.
Output the class name for each '' tag as text in each table cell by adding this line of code after the line containing your 'attr()' function:$(this).text(tdValue[i]);The finished script should look like this:$(function() {var tdValue = [];$('td').each(function(i) {
tdValue[i] = $(this).attr('class');$(this).text(tdValue[i]);
});});
In Feburary 2016 18,
Wednesday, 17 February 2016
How to Do a Trading StatementIn Feburary 2016 17,
In Feburary 2016 17,
Include the title 'Trading Statement' at the top of the form. Underneath the title, the statement should include the time period that is being covered with the words, 'For the year ended 20XX.'
Gather the information needed for preparing this document. This includes all information regarding trades made using the trading account. Income amounts are needed, as well as all expenses from this period.
Calculate the gross profit. The total amount of money received is recorded first on the trading statement. Gross profit is found by adding up all money received. This amount is then reduced by deducting the cost of goods sold. To find this amount, you must start with the opening stock value at the beginning of the period. All purchases are added to that, and the closing value of the stock is deducted. This amount represents the cost of purchasing the stocks. These amounts are all written in the trading statement.
List all expenses incurred. Expenses include all items that money was spent on during this period. The expenses must be incurred in regard to the purchasing and selling of stocks in this trading account. After each expense is listed individually, the expenses are totaled and listed as 'total expenses.'
Subtract the expenses from the gross profit. This answer represents the net profit or net loss by the purchases and sales of stocks in the trading account for the period referenced. This is the bottom line on the trading statement.
In Feburary 2016 17,
Include the title 'Trading Statement' at the top of the form. Underneath the title, the statement should include the time period that is being covered with the words, 'For the year ended 20XX.'
Gather the information needed for preparing this document. This includes all information regarding trades made using the trading account. Income amounts are needed, as well as all expenses from this period.
Calculate the gross profit. The total amount of money received is recorded first on the trading statement. Gross profit is found by adding up all money received. This amount is then reduced by deducting the cost of goods sold. To find this amount, you must start with the opening stock value at the beginning of the period. All purchases are added to that, and the closing value of the stock is deducted. This amount represents the cost of purchasing the stocks. These amounts are all written in the trading statement.
List all expenses incurred. Expenses include all items that money was spent on during this period. The expenses must be incurred in regard to the purchasing and selling of stocks in this trading account. After each expense is listed individually, the expenses are totaled and listed as 'total expenses.'
Subtract the expenses from the gross profit. This answer represents the net profit or net loss by the purchases and sales of stocks in the trading account for the period referenced. This is the bottom line on the trading statement.
In Feburary 2016 17,
Tuesday, 16 February 2016
How to Insert a Checkbox in Word 2004 for MacIn Feburary 2016 16,
In Feburary 2016 16,
Open Word 2004 and open the file that requires a check box.
Click your mouse cursor at the spot in your document where you want the check box to appear.
Click the 'Insert' option at the top of the computer screen. This opens a drop-down menu. Select 'Symbol.' The 'Symbol' window appears with a chart of possible symbols to choose from.
Select 'AppleGothic' in the 'Font' drop-down menu.
Scroll through the symbols until you arrive at 'AppleGothic character 166 (Unicode character 9634).' The symbol names appear under the chart of symbols as you scroll. This particular one is a check box. Click this symbol; a blue preview window will pop up.
Click the 'Insert' button at the bottom of the 'Symbol' window. You have now added a check box to your document.
In Feburary 2016 16,
Open Word 2004 and open the file that requires a check box.
Click your mouse cursor at the spot in your document where you want the check box to appear.
Click the 'Insert' option at the top of the computer screen. This opens a drop-down menu. Select 'Symbol.' The 'Symbol' window appears with a chart of possible symbols to choose from.
Select 'AppleGothic' in the 'Font' drop-down menu.
Scroll through the symbols until you arrive at 'AppleGothic character 166 (Unicode character 9634).' The symbol names appear under the chart of symbols as you scroll. This particular one is a check box. Click this symbol; a blue preview window will pop up.
Click the 'Insert' button at the bottom of the 'Symbol' window. You have now added a check box to your document.
In Feburary 2016 16,
Wednesday, 10 February 2016
How to Access Secure Email AttachmentsIn Feburary 2016 10,
In Feburary 2016 10,
Open the email that has an encrypted file or password-protected attachment.
Click on the attachment.
Input the password into the box when prompted to view the document. If the password is correct, the document will open.
In Feburary 2016 10,
Open the email that has an encrypted file or password-protected attachment.
Click on the attachment.
Input the password into the box when prompted to view the document. If the password is correct, the document will open.
In Feburary 2016 10,
Monday, 8 February 2016
How to Insert Text into Multiple Cells in OpenOfficeIn Feburary 2016 08,
In Feburary 2016 08,
Open the OpenOffice document that you want to edit.
Type the text that you want to duplicate into a single cell or group of cells.
Highlight the cells that contain the text and press 'Ctrl' and 'C' to copy them.
Highlight the rest of the cells to which you want to add the text.
Press 'Ctrl' and 'P' to paste the copied text into the highlighted cells.
In Feburary 2016 08,
Open the OpenOffice document that you want to edit.
Type the text that you want to duplicate into a single cell or group of cells.
Highlight the cells that contain the text and press 'Ctrl' and 'C' to copy them.
Highlight the rest of the cells to which you want to add the text.
Press 'Ctrl' and 'P' to paste the copied text into the highlighted cells.
In Feburary 2016 08,
Friday, 5 February 2016
How to Make a Link to FTP With Username PasswordIn Feburary 2016 05,
In Feburary 2016 05,
Open the HTML document in a text editor, such as Notepad.
Locate the area of the document where you want to add the FTP link.
Type the code 'FTP Link' to add the link. Replace 'user_name' with the username for the FTP server and replace 'password' with the password for the account. Replace 'hostname' with the hostname of the FTP server. Replace 'FTP Link' with any text you prefer.
Save and close the HTML file.
In Feburary 2016 05,
Open the HTML document in a text editor, such as Notepad.
Locate the area of the document where you want to add the FTP link.
Type the code 'FTP Link' to add the link. Replace 'user_name' with the username for the FTP server and replace 'password' with the password for the account. Replace 'hostname' with the hostname of the FTP server. Replace 'FTP Link' with any text you prefer.
Save and close the HTML file.
In Feburary 2016 05,
Subscribe to:
Comments (Atom)