Showing posts with label tabs. Show all posts
Showing posts with label tabs. Show all posts

Saturday, 27 February 2016

How to Add an FTP Server to SharepointIn Feburary 2016 27,

In Feburary 2016 27,
Select the 'Web Options' button on the control panel for the web site.
Choose the Sharepoint domain that represents the website on the control panel and left click the 'Web Service' page from the menu tabs. On the Web Services page, select the 'Edit' button on the user interface.
Select the 'Add New Assignment' menu option from the program menu and left click an existing windows subaccount from the menu.
Choose an FTP subuser on the next menu and then enter a 'Nickname and Email' to use the FTP services and select the 'OK' menu button. The Sharepoint now has an FTP server configured.
In Feburary 2016 27,

Sunday, 14 February 2016

How to Disable the Insert Key on a ComputerIn Feburary 2016 14,

In Feburary 2016 14,
Open up your Microsoft Word and click on the 'Tools' menu. Choose 'Customize' from the drop-down list. This will open the Customize window.
Select 'Options' from the top tabs and hit the 'Keyboard' button on the bottom of the window.
Scroll through the Categories list until you come to 'All Commands' and highlight it. Move over to the Commands list and select 'Overtype'.
Click on the word 'Insert' under the Current keys box and select 'Normal' in the 'Save Changes In' box. Hit the 'Remove' button on the bottom of the window.
Choose the 'Close' button on the Customize Keyboard and the Customize windows. Your have now disabled the Insert key from your computer.
In Feburary 2016 14,

Thursday, 4 February 2016

How to Set Up Ricoh Scanning Via FTPIn Feburary 2016 04,

In Feburary 2016 04,
Press the 'Setting' tab on the front panel of the Ricoh device. This will bring you into a menu in which you can make several global settings for the copier.
Select 'Scanning.' There will be several tabs that will appear in the 'Settings' menu. Press the 'Scanning' tab to be brought into the scanning setup and options area.
Select 'Scan Options.' Depending on the model Ricoh you have, this option may read differently. However, select the option that allows you to set or alter the scanning options, including the destination.
Press the 'FTP' option. Once pressed, you will need to know the FTP server address. Enter the FTP information in the dialog box that appears after selecting to scan to the FTP server.
Press 'Okay' to save your settings.
Scan test documents to the FTP server. Working with your IT staff, scan several documents to the FTP server and make sure that all scanned documents are stored in the FTP server.
In Feburary 2016 04,

Tuesday, 2 February 2016

How to Exit From a Sub in VBAIn Feburary 2016 02,

In Feburary 2016 02,
Open the VBA editor. Double-click on one of the Microsoft Office programs that you want work with. Click on the 'Developer' tab and then click on 'Visual Basic.' If you don't see the 'Developer' tab, click on the 'File' tab and then 'Options.' Click on the 'Customize Ribbon' tab in the 'Options' dialog box. Click on 'Main tabs,' and then click on the 'Developer' check box. Click 'OK' to close the 'Options' dialog box.
Navigate to the sub procedure that you want to work with in the Visual Basic Editor. Double-click on the page in the right pane to open it. To work on a new procedure, click on 'Insert' and then 'Sub Procedure.'
Add the 'Exit Sub' command in the sub procedure where you want to exit a certain block of code. This will be between the Sub and End Sub commands. Usually, the Exit Sub command is added right after the code handler. Here is an example of a code block with an Exit Sub command:'Sub message ()MsgBox 'Hello World!'On Error GoTo Error_Handler:Worksheets('Welcome Message').ActivateExit SubError_Handler:If Err.Number = 9 Then
Worksheets.Add.Name = 'Welcome Message'Resume
End IfEnd Sub'The sub procedure shows a message box that says 'Hello World.' If for some reason the program can't display the message, it is directed to the 'Error_Handler' block. To stop the code from continuing to cycle through the same bits of code, the 'Exit Sub' command is given.
In Feburary 2016 02,