Doorgaan naar hoofdcontent

Posts

Er worden posts getoond met het label button

Word: Templates With The Perfect Circle

In the example template I am showing here, a dialogue window will automatically start on opening: As soon as you enter some stuff in the dialogue window and you click OK the text fields in the memo template will be filled in: At the same time, a new Tab  + Button will appear at the left hand side: Adjust Memo Fields . As you click this button, the dialogue window will appear again, filled in this time: When you are in the right mood, you can go on forever. If you are interested, you can download the template with the legacy fields  memo.dotm here: https://drive.google.com/folderview?id=0B7HgkOwFZtdZVmhRQUZFM28yc1U&usp=sharing or the new one with the content controls: memonieuw.dotm

Word: Button To Add a Row at the End of the Current Table; using XML and VBA

Word has a lot of buttons to add elements to a table. But there is no button to add a row at the end of the table your cursor is in. I know very well that adding a row can be done positioning the cursus in the last cell of the last row and column and then pressing the tab key. But I wanted to create a button doing this. First of all we need a Custom UI editor for Microsoft Office to add a piece of XML to the document. My XML script looks like this: <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">   <ribbon startFromScratch="false">     <tabs>       <tab id="CV" label="CV" keytip="CV" insertBeforeMso="TabHome">          <group id="CVactions" label="CV actions">            <button id="AddRow" label="Add row at end of table" imageMso="FileNew" size="large" onAction="ctlAddRule" />          ...