In Feburary 2016 29,
When you first open Filezilla, a large window opens with several windows within in the main window. The top window is where Filezilla will show its commands as it works. Below that on the left is the local computer, your computer. On the right is where you will see files from the remote computer. Each computer is broken down into two windows each, the upper window for directories, and the lower pane for directory contents. At the bottom in where progress of each uploading file is displayed.
Check with your webhost for your FTP host name, your username and password, which may be given by the host, or you have chosen. Click on the File drop down menu and chose Site Manager. A new window will open.
In Site Manager chose New Site. In the Select Entry pane, a new icon appears. Type in the name of your site.
In the pane to the right of the Select Entry, click on the General Tab. Here you will find several options. Type in the host name, usually in the format of ftp.(your-domain-name).com. Chose FTP Server Type. Chose the type of logon, usually that is normal.
Type in your username and password and click connect. The Site Manager will close automatically and you will see the commands to logon in the top pane of the main window.
If everything went right a list of folders should be displayed in the right hand panes of the main window. Now it is simple as finding your files in the left hand directory pane, and drag and drop them into the right hand pane, or vise versa.
Filezilla will decide for you what type of file you are transferring, but other FTP clients will ask you for a type, or assume a type.
In Feburary 2016 29,
Showing posts with label displayed. Show all posts
Showing posts with label displayed. Show all posts
Monday, 29 February 2016
Friday, 19 February 2016
How to Use a Listbox Control in MFC Visual C++In Feburary 2016 19,
In Feburary 2016 19,
Create a new project in Visual Studio to manipulate the control. From the upper menu bar, click 'File' > 'New' and select 'MFC AppWizard(exe)' in the 'Projects' tab. Enter a name for the project in the 'Project name' text box and click 'OK.' Select the 'Dialog based' radio button and click 'Finish' and then 'OK.' A dialog screen with two control buttons, one 'OK' and one 'Cancel,' is displayed in the Design View mode.
Add MFC controls on the dialog screen: one list box and some auxiliary controls to make the tutorial more interesting. To find a list box, move the mouse over the controls toolbox and read the popup balloons. Click the 'List Box' icon and click on the dialog screen to add it there. In a similar fashion add an 'Edit Box' and two 'Buttons.'
Modify the MFC controls. Right-click on the list box, select 'Properties' and change the ID to IDC_MYLISTBOX, under the 'General' tab. Do the same to the edit box and change its ID to IDC_MYEDITBOX. In one button, change the ID to IDC_MYBUTTONADD and the Caption to 'Add.' In the other button, change the ID and Caption to IDC_MYBUTTONREM and 'Remove,' respectively.
Join the list box and edit box using the Class Wizard. From the upper menu, click 'View' > 'Classwizard' or press Ctrl+W. Select 'IDC_MYLISTBOX' under the 'Member Variables' tab and click 'Add Variable.' Type 'm_myListBox' in the 'Member variable name' text box and select 'Control' under 'Category.' Click 'OK.' Next, select 'IDC_MYEDITBOX,' click 'Add Variable' and give the name 'm_myEditBox.' Don't change the combo boxes. Click 'OK' to close the class wizard.
Give some functionality to the Add button. Double-click the 'Add' button. When the 'Add Member Function' window appears, click 'OK.' Copy and paste the following code inside the '::OnMybuttonadd()' function, under the comment:
CString str;
UpdateData();
str = m_myEditBox;
UpdateData(FALSE);
m_myListBox.AddString(str);
Repeat Step 5 for the 'Remove' button. Copy and paste the following code inside the '::OnMybuttonrem()' function, under the comment:
int pos;
CString str;
pos = m_myListBox.GetCurSel();
m_myListBox.DeleteString(pos);
Compile and run the code. Type some text in the edit box and click the Add button. That text will be added as a row in the list box. Next, highlight a list box row and click Remove. This action deletes the row.
In Feburary 2016 19,
Create a new project in Visual Studio to manipulate the control. From the upper menu bar, click 'File' > 'New' and select 'MFC AppWizard(exe)' in the 'Projects' tab. Enter a name for the project in the 'Project name' text box and click 'OK.' Select the 'Dialog based' radio button and click 'Finish' and then 'OK.' A dialog screen with two control buttons, one 'OK' and one 'Cancel,' is displayed in the Design View mode.
Add MFC controls on the dialog screen: one list box and some auxiliary controls to make the tutorial more interesting. To find a list box, move the mouse over the controls toolbox and read the popup balloons. Click the 'List Box' icon and click on the dialog screen to add it there. In a similar fashion add an 'Edit Box' and two 'Buttons.'
Modify the MFC controls. Right-click on the list box, select 'Properties' and change the ID to IDC_MYLISTBOX, under the 'General' tab. Do the same to the edit box and change its ID to IDC_MYEDITBOX. In one button, change the ID to IDC_MYBUTTONADD and the Caption to 'Add.' In the other button, change the ID and Caption to IDC_MYBUTTONREM and 'Remove,' respectively.
Join the list box and edit box using the Class Wizard. From the upper menu, click 'View' > 'Classwizard' or press Ctrl+W. Select 'IDC_MYLISTBOX' under the 'Member Variables' tab and click 'Add Variable.' Type 'm_myListBox' in the 'Member variable name' text box and select 'Control' under 'Category.' Click 'OK.' Next, select 'IDC_MYEDITBOX,' click 'Add Variable' and give the name 'm_myEditBox.' Don't change the combo boxes. Click 'OK' to close the class wizard.
Give some functionality to the Add button. Double-click the 'Add' button. When the 'Add Member Function' window appears, click 'OK.' Copy and paste the following code inside the '::OnMybuttonadd()' function, under the comment:
CString str;
UpdateData();
str = m_myEditBox;
UpdateData(FALSE);
m_myListBox.AddString(str);
Repeat Step 5 for the 'Remove' button. Copy and paste the following code inside the '::OnMybuttonrem()' function, under the comment:
int pos;
CString str;
pos = m_myListBox.GetCurSel();
m_myListBox.DeleteString(pos);
Compile and run the code. Type some text in the edit box and click the Add button. That text will be added as a row in the list box. Next, highlight a list box row and click Remove. This action deletes the row.
In Feburary 2016 19,
Tuesday, 16 February 2016
How to Change the Text Editor in Joomla!In Feburary 2016 16,
In Feburary 2016 16,
Enter the URL for the administrator login page into your browser address bar. Enter your name and password into the fields and press 'Enter.' The Joomla! administrator template will load.
Click on the 'Global Configuration' icon in the control panel displayed immediately after login. The fourth option shown in the site settings is the default WYSIWYG editor. Select a different editor from the drop-down menu.
Click on the 'Save' option in the Global Configuration menu to save the changes.
Changing a User's Editor
Click on the 'User Manger' icon in the control panel, and allow the user manager to load. Click on the blue user name of the user you wish to change the editor for. The form for editing the user's details will load.
Select the editor to enable for the user from the drop-down editor menu in the parameters section of the User Details form.
Click on the 'Save' icon in the Edit User Details menu on the right side of the screen. The user is now assigned to the editor you chose.
In Feburary 2016 16,
Enter the URL for the administrator login page into your browser address bar. Enter your name and password into the fields and press 'Enter.' The Joomla! administrator template will load.
Click on the 'Global Configuration' icon in the control panel displayed immediately after login. The fourth option shown in the site settings is the default WYSIWYG editor. Select a different editor from the drop-down menu.
Click on the 'Save' option in the Global Configuration menu to save the changes.
Changing a User's Editor
Click on the 'User Manger' icon in the control panel, and allow the user manager to load. Click on the blue user name of the user you wish to change the editor for. The form for editing the user's details will load.
Select the editor to enable for the user from the drop-down editor menu in the parameters section of the User Details form.
Click on the 'Save' icon in the Edit User Details menu on the right side of the screen. The user is now assigned to the editor you chose.
In Feburary 2016 16,
Subscribe to:
Comments (Atom)