home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / mailserv / wordpc / 195 < prev    next >
Encoding:
Text File  |  1993-01-22  |  2.2 KB  |  52 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!IBM.GWDG.DE!STSK
  3. Errors-To: rmeyer@ufobi2.uni-forst.gwdg.de
  4. X-ListName: WORD-PC unmoderated list <WORD-PC@ufobi1.uni-forst.gwdg.de>
  5. X-Delivery-Notice:  SMTP MAIL FROM does not correspond to sender.
  6. Date: Fri, 22 Jan 1993 11:43 +0100
  7. From: Sune Karlsson <STSK%HHS.SE@ibm.gwdg.de>
  8. Reply-To: WORD-PC@ufobi1.uni-forst.gwdg.de
  9. Subject: Re: Hoch-/Tiefstellung in Makro
  10. Newsgroups: bit.mailserv.word-pc
  11. Message-ID: <01GTTGQ4GMTC8WX6I3@HHSSUN>
  12. X-Envelope-to: WORD-PC@ufobi1.uni-forst.gwdg.de
  13. X-VMS-To: IN%"WORD-PC@ufobi1.uni-forst.gwdg.de"
  14. Lines: 36
  15.  
  16. My German is a little bit rusty, but if I understand you correctly you want
  17. to set or determine the amount of sub/superscripting of characters.
  18.  
  19. In the English version the dialog box equivalent for this is
  20. FormatCharacter .Position = number of points
  21. which is a little bit confusing since the dialog box has the entries
  22. "Super/subscript" and "by" for setting this. My guess is that it works the
  23. same way in the German version, that is
  24. FormatZeichen .Pozition = punkte  (my German *is* rusty).
  25.  
  26. There are functions to determine if the selected characters are sub or
  27. superscripted (Subscript() and Superscript() ), they will unfortunately not
  28. tell you the amount of sub or superscripting.
  29.  
  30. My limited experience with the Swedish version of Word indicates that it
  31. should be possible to use the english version commands in WordBasic. At
  32. least Word will dutifully translate things if you create a macro in the
  33. English version and then open it in the Swedish version.
  34.  
  35. Also try the WordBasic section in the Word Help.
  36.  
  37. Isn't it fun to try to get macros to work with non-English versions of Word?
  38. Somehow it would have been nice to have things being more language
  39. independent.
  40.  
  41. Exercise: How do you implement a macro that uses fields for which there are
  42. no specific WordBasic commands when the macro should work with different
  43. language versions of Word?
  44. That is, a date field is simple, for that we have the function
  45. InsertDateField. But what if we wish to insert an AUTHOR field? For that
  46. we have to use InsertField .Field = "Author" and the string "Author" will
  47. of course be different with different languages.
  48.  
  49. Hope this helps
  50.  
  51. Sune Karlsson
  52.