i want to protect the contents of table and add the row below the table in word.How to achieve this? - ms-word

In Microsoft word 2010, I have enabled Restrict editing, from review tab.
Question.
i want to protect the contents of table and enable other users add the row below the table.How to achieve this?
By enabling protection,was able to protect the table plus its contents,was not enabled to add row below.

For instert new row- add a new row to an Word table, I have no idea about how to set Word table as non-editable.

Related

Is there a way to disable check box in SWT TableColumn

I have a SWT table with SWT.CHECK column. I want to populate another table based on the check box selection in the first table. I am achieving this using Table Selection. So, I want to disable the SWT.CHECK in the first table. Is there any way to disable to the check box?
Use TableItem.setGrayed (boolean grayed). Even though it is grayed out, still you can check/uncheck it. To disable check/uncheck, use TableItem.setChecked(boolean checked)

Access Select specific tables to update, change and modify

I create a DB where each table is a different project.
However, i am not sure how i would go about creating a form in which a user can choose a specific table (project) from a drop down menu and than be able to update/edit/modify the contents in the table.
Each table is standardized to contain exact column headers.
Thanks in advance for you help.

Some fields are missing in the fieldexplorer. How to show all fields?

i'm using Crystal Reports with my ERP-System. There have been predefined reports i now want to change.
In the field-explorer are some tables which have been renamed for better readability. But those tables are missing some fields, i want to use. If i connect the whole table again, all fields are there. Is there a way to display all fields in the predefined tables.
I tried to refresh the Database but nothing changes. If i delete the predefined table and then rename the new one to the old one, so i can use all predefinded formulas, all used fields in the report get deleted. I would need to recreate the whole report then.
Thanks for the help
If it is truly the same table and is not showing all the fields then you need to do "Database > Verify Database". That will force CR to refresh the structure of the table (instead of just the data). If this doesn't add the missing fields then the table in the report is actually a different object.
To see what the table/view the report is actually using go to "Database > Set DataSource Location" and look at the properties node for that table. It will show if it is a table/view/SP and what the true object name is.
If you want to replace the existing table with a different table you go to "Database > Set DataSource Location" again. Highlight the existing table in the top window, connect and highlight the replacement table in the bottom window. Then click update. Crystal will replace one table with the other and all of the fields in the report that exist in the new table will be mapped automatically. Note that the new table will keep the alias of the original table. If you are unsure if the table was updated you can look at the properties node in the top window to see the change.

MS Access - recordset not updateable on subform

I have an ms database that uses a tsql backend - in this subform it creates a row in the table no problem but I can't add any text to the text field in the form- Access displays 'Recordset not updateable'. I can manually change data in the linked table and I can also delete rows, but once in the form I can not delete as it is saying the database is 'read only' ? Any help is much appreciated.
Under design view, look at the forms 'data' properties, make sure the 'allow additions/edits' say yes.
The error was down to a primary key not having been deleted on a linked table.

Autonumbering in forms in Access

I have a form in access that saves the data in a database and I want one of the fields to be automatically calculated as the next value in line as the ID so that the user doesnt write the ID. does anyone have any ideas?
Create your table using an Autonumber data type.
If you manually create your tables then this statement
CREATE TABLE TableThatIncrements
(
Id AUTOINCREMENT(1001,1)
)
Alternately you can edit your existing table Id column using:
ALTER TABLE TableThatIncrements
ALTER COLUMN Id AUTOINCREMENT(1001,1)
If you do not, then you can change per the article I mentioned via the GUI interface. See steps in this article: https://superuser.com/questions/288087/how-do-i-set-the-first-value-of-autonumber-in-access
You can run a query in Access by doing the following:
Go to the "Create" tab and click "Query Design"
Just close the window that appears which asks you to select tables, we don't need that.
Go to the "Design" tab and click the button with the arrow until you get a textual input screen. (By default, it says SELECT;).
Delete the default text and paste the above query.
Click "Run".