Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I created a slide master textbox where:
* the first level of text is bold
* the second level has a bullet (w/ indentation)
* the third level has another bullet type (also w/ indentation)
However, I have no idea how to recover this formatting once I insert a slide from this layout.
Here is my slide master layout:
Once I write text, I have no idea how to obtain the same bulleting and spacing. Below is a description of my keystrokes and how things go wrong.
As described above, when I try to use the bullet point button, I don't obtain the same bullet points that I specified in my slide master.
Note: I am using Powerpoint 2013, but I have the same trouble when using other versions.
ANSWERING OWN QUESTION:
The fix was very basic. Instead of using the "Create bulleted list" button to move to the next indentation level, I needed to use the "Increase list level" button.
As for the undesired behavior from using tab, tab only changes the indentation level once you're in the environment of list levels (which you enter after clicking that button).
This is more a question for SuperUser but my guess is that you've modified the Slide Master, but not the specific Layout that your slide is based on (Title and Content most likely).
Try modifying the Layout.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I am using VBA code to get data from user by using InputBox function. I want a user to write in Arabic.
But, when I run it, I found strange characters although I can write in Arabic normally in Excel sheets.
Can anyone help?
Make a custom form, that works as InputBox.
There you would be able to write in any other language than English.
Otherwise you would be getting the ?????????????????????
Simply add a label element for the input and button elements for Ok and Cancel.
In general, this is much better than InputBox, because you can control the TextAlign property, which is different in Arabic than in English.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I created a button and I assigned a macro to it. The button does not work, but if I run the macro manually by using the "run" option in the developer tab or if I press the "play" button in the VBA window, everything works perfectly. I do not think that adding the code will be useful.
Regards,
It's possible the macro got "un-assigned".
Right-click the button in design mode, and select "Assign Macro"
Re-assign the macro in the dialog, exit design mode and click the button - it should "just work".
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
net Programmers
I am in a trouble
I want to display messagebox after a while of time
i did this but the problem is that the messagebox appears behind the other windows of the active programs
I want a code that displays the messagebox over all opened windows to make the user see it
and THANKS
You can't set TopMost on a message box. However, you could create your own class/dialog set TopMost to true on it and then use ShowDialog to display it.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm a newbiwe. I building a mac app, i want to set type input in password textfield displayed as **. And then user check on Checkbox, text in password textfield displayed normal. I created NStextfield and Checkbox programmitically. Thanks for your help.
Take a look at KSPasswordField...
From the page:
Shows the password in plain text on-demand
On the basis that password visibility is likely being toggled for editing, makes the field the first responder
Automatically cleans up likely unwanted whitespace when pasting or dragging in passwords
To make it work:
Add KSPasswordField.h and KSPasswordField.m to your project.
In Interface Builder, create a regular NSSecureTextField and then set
its custom class to be KSPasswordField.
(Or, in your case, programatically create a KSPasswordField instead of an NSTextField)
Hook up a checkbox (NSButton) to the toggleTextShown: action of your KSPasswordField. In your case, do this:
[myCheckbox setTarget:myPasswordField];
[myCheckbox setAction:#selector(toggleTextShown:)];
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I'm working on how my company does documentation (especially programming documentation). I'd like to be able to synchronize sections of different Word documents, such that if a section in one document changes, the change is reflected in the other document, and vice versa. Is there a way to do this with Word, and if not, is there some word processing program that is good at this?
I appreciate this is an old question, but Google brought me here.
This can be done (at least on Word 2016, other versions not tested) one-way as follows:
In the source document, select the text you want to synchronise, and on the Insert tab, click Bookmark in the Links section.
Type a name for the bookmark (no spaces allowed), and click Add.
Save the document.
Open the document where you want to duplicate the text ("destination document").
On the Insert tab, click the drop-down arrow next to Object (in the Text section), then click Text from File....
Browse to find the source document, and select it.
Click Range....
Type the bookmark name you entered in step 2, and click OK.
Click the drop-down next to the Insert button, and click Insert as Link.
When you want to edit the text, proceed as follows.
Modify the source document as required, and save.
Update the field in the destination document with one of the following methods:
Right-click on the text and click Update Field.
Click on the text and press F9.
To update all fields in a document, Press Ctrl-A then F9.
You can always make section 1 in your example above a third word document and then insert it into Document A and B (Insert > Object) and make the object linked to the file, so it will load changes each time you open A or B.
Why not just use the Master and Subdocument features built-in with Word? It's exactly for your kind of situation.