1 - Mathematics is the language of nature. 2 - Everything around us can be represented and understood through numbers. 3 - If you graph the numbers of any system, patterns emerge.
Dit lijkt onder andere van je Word-versie af te hangen. Een aantal linkjes naar MSDN:
Google!
| 170564 | WD97: Pictures and Objects Inserted as Inline by Default in SR-1 |
| 155802 | WD97: Word Doesn't Find Float Over Text Objects |
| 161692 | WD97: Problems with Float Over Text Objects |
| 163808 | WD97: Picture Is Pasted as Float Over Text Not as Inline |
| 155804 | WD97: Inserted Picture or Drawing Object Moves Down Page |
| 157773 | WD97: Macro to Disable Float Over Text in Insert Picture Dialog |
| 157667 | WD97: Float Over Text Objects Cut Off in Online Layout View |
| 157119 | WD97: WD97: Pictures Visible Even When Picture Placeholders Check Box Selected |
Google!
a horse! a horse! my kingdom for a horse! (exeunt)
[got.profile] | [t.net.profile] | [specs]
Goeie vraag. In word zelf kan je dit niet aangeven, dus we hebben VB nodig. Uit de VB(A)-help bij PictureWrapTypeProperty:
*leest*
*concludeert dat KingRichard goed kan googelen*
Als je de pictures allemaal handmatig invoegt helpt een oplossing als
Dus voegen we dit stukje code aan normal.dot toe, zodat 'ie altijd wordt uitgevoerd als je Word start:Remarks
This is a default option setting and affects all pictures inserted unless picture wrapping is individually defined for a picture.
Visual Basic .NET:
(Als er al een AutoExec bestaat voeg je daar de Application...-regel aan toe.)1
2
3
| Sub AutoExec() Application.Options.PictureWrapType = wdWrapMergeSquare End Sub |
*leest*
*concludeert dat KingRichard goed kan googelen*
Als je de pictures allemaal handmatig invoegt helpt een oplossing als
Visual Basic .NET:
in normal.dot natuurlijk ook 1
2
3
4
5
6
| Sub InsertPicture() With Dialogs(wdDialogInsertPicture) .FloatOverText = False .Show End With End Sub |
Journalism is printing what someone else does not want printed; everything else is public relations.