C ++ Builder first-study and answer (thirteen)

zhaozj2021-02-16  44

C Builder first-study and answer

(Copyright requirements: this article only authorizes 9CBS to use, separate ccrun reproduced, other personal and websites must not be reproduced, extract, if there is special demand to contact the author)

Part II: Rapid improvement

I have a lot of friends since a long time, "C Builder Q & A" did not continue to write? I have been thinking about it or I should write it? The launch of CBX, plus Balan announced that it is not in the new CB version, let us have always loved CB, where is the next direction? Of course, I really hope that CB will continue, but don't fall, but for us, this can only be an expectation L.

The advantage of CB, I don't want to say more. Otherwise, there will be so many favorite people, and some kinds of friends still choose CB as a tool to enter C / C , which makes me think that this article is still worth writing, Because there is still a friend who is looking forward to her next. Here, I am grateful to these friends!

Not talking more, let me start a new chapter, here you will further understand the characteristics of CB, and I hope that our CB's camp is getting more and more powerful, and we hope that we have become a good friend in the true sense, mutual mutual J

Due to the limited time, the author level is limited, it is inevitable in the article, please indicate when J He is first expressed!

15. Menu

1) Q: There are a lot of menu items in C Builder, what do they have?

A: Ok, let us first understand this knowledge in the new chapter. The following figure is the name of the menu item in the C Builder integration development environment.

(1) The first is the File menu. With the File menu, we can open, save, shut down, and print new or existing projects and files. In this menu, contain such menus items:

"New" menu item opens a new project dialog that contains templates stored in the object storage. Here we can copy template objects, inheriting from templates to get a new object, or modify template objects.

The "New Application" menu item generates a new project according to the default engineering template set in the object storage, which is a new project containing an empty form.

The "New Form" menu item creates and joins a new form to the project, which is established based on the default Form template in the object storage.

"Open" is used to load an existing project, form, unit, or text file to the code editor.

The "Open Project" menu item is used to load an existing project.

The "Reopen" menu item is used to list the most recently closed projects and modules for users to choose, open.

The "Save" menu item is used to save the current file with the current file name.

The "Save AS" menu item is used for the renovation of the current file.

The "Save Project AS" menu item is used to save the current project file.

The "Save all" menu item is used to save all open files, which include project files and module files, and the like.

The "Close" menu item is used to turn off the window, unit or closes the current engineering.

The "Close All" menu item is used to close all open files.

The "Include Unit HDR" menu item adds a selected file with a #include statement to the active module. Thus establish a program between modules. This is still very useful.

The "Print" menu item is used to send the currently active file to the printer.

The "EXIT" menu item is used to turn off the open project and exit the C Builder integration development environment.

(2) The EDIT menu is used to manage text and components when design.

Where menu item "undo / undelete" is used to undo the last action.

"Redo" is used to recover the action that is undo by UNDO.

"CUT" is used to delete selected items and put this item on the clip board. "COPY" is used to copy the selected item to the shear board.

"Paste" is used to insert content on the clipboard into the code editor window or window.

"Delete" is used to delete selected content.

"SELECT All" menu item is used to select all components in the window.

The "Align to Grid" menu item is arranged in the principle that the selected component is aligned closest to the grid point.

The "Bring to Front" menu item is used to move the selected component to the foreigner, so that when he overlaps other components, it is impossible to block by other components.

The "Send to Back" menu item is used to move the selected component to the last layer.

"Align" is used to arrange components.

"SIZE" menu item is used to set the size of the component.

The "Scale" menu item is used to scale the size of the component on the form.

The "Tab Order" menu item is used to modify the current active window running when running, press the Tab key, and the order in which the focus is switched in all components.

The "Creation Order" menu item is used to modify the order of the non-visual components to switch the focus in the window.

The Lock Controls menu item is used to secure all components in the window in the current location. This can prevent you from being modified.

(3) The Search menu command is used to locate text, errors, units, variables, and symbols in the code editor.

"Find" menu item is used to find the specified text in the current file.

The "Find In Files" menu item is used to find the specified text in multiple files and display the information found by the text in the information window at the bottom of the code editor.

The "Replace" menu item is used to find the specified text and replace this specified text with the specified new text.

The "Search Again" menu item is used to repeat the lookup.

The "Incremental Search" menu item is used to find the incomplete string search in the process of typing. This way, you can find the required text without entering all text.

The "Go to Line Number" menu item is used to move the cursor to the specified row.

The "Go to Address" menu item is used to jump to the specified address.

(Endlessly)

转载请注明原文地址:https://www.9cbs.com/read-26000.html

New Post(0)