Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tgoricki

  1. tgoricki

    Problems with Word-jump to next line

    This is my problem too, because it is my second work in Word VBA and I can't swich so good from Excel VBA in which I'm programing for 2 years now. Personaly, I don't like Word Objects, Properties and Methods because they are not so intuitive as in Excel. Maybe some1 else knows how to resolve my...
  2. tgoricki

    Problems with Word-jump to next line

    But my problem is that test: "If .EndOf(Unit:=wdParagraph, Extend:=wdExtend) Then i = 100 End If" does not do what I whant (make i=100 and stop inserting "_"), and I nead good version of this part of the code. I nead test which will indicate end of the line...
  3. tgoricki

    Problems with Word-jump to next line

    I don't what that line jumps to next line of text. I whant that it stops on the end of the row. Gornet http://gornet.netfirms.com
  4. tgoricki

    Problems with Word-jump to next line

    I nead to make macro wich will make line in some rows of text. for example... "Welcome to an On-Line Biology Book Table of Contents. NOTES: These pages have been recently (2/97-present) revised and updated. Please let me know your thoughts...
  5. tgoricki

    Error 3669 on OpenRecordset Occurs occasionally

    I have the same error number 3669, message is different - "3669 Execution terminated". I only have this problem while performing SELECT queries that return a great amount of rows (more than 60000, with an average length of 100 bytes each row). Maybe is this problema same for you...
  6. tgoricki

    Disable printing!

    modul: Dim x As New Class3 Sub Register_Event_Handler() Set x.appWord = Word.Application End Sub Class3: Public WithEvents appWord As Word.Application '----------- Private Sub appWord_DocumentBeforePrint(ByVal Doc As Document, Cancel As Boolean) MsgBox ("You can't print!")...
  7. tgoricki

    Disable printing from word with VBA!

    I'm looking for solution on disabling printing for some users using VBA macro. Someone told me that I can do it with controling API. Can someone give me some tips how can I do it? Tomislav Thx
  8. tgoricki

    How to disable printing and editing MS Word document with VBA macro?

    How to disable printing nd editing in MS Word socument with VBA macro? I nead to disable printing for some users, and I nead to protect word document from editing. I can't find nothing that I can use for that two things. Potection with password is no good... Thx!

Part and Inventory Search

Back
Top