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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ThinLizzy

    How do I add (edit) a extra point to a GIF image (dynamicly)

    Hello, My problem is this: I have a GIF image and i want to edit it with VB (add specifiek points to it) and than save it as a GIF image. So the dot's should by added dynamicly. Is there anybody who can help me with this? Greatings, Thinlizzy
  2. ThinLizzy

    Size of Listbox changes when run with Win NT

    I found a solution for the problem. I think it was a language differens problem. I made the program on a dutch windows 98. In the innitiate event of the form I wrote the list-With propety of the listboxes in cm. On win NT I think the standard is inch. The with propety of Boxes which were not...
  3. ThinLizzy

    special characters not correct when reading/writing as textstreamfile

    Thanks for your reaction. The Problem was that I did a .SaveAs with the Word document. The FileFormat which I used was the wrong one (wdFormatDOSTextLineBreaks). When I used FileFormat:=wdFormatTextLineBreaks the problem was gone. So it wasn't the code i mentioned above, Thanks anyway.
  4. ThinLizzy

    special characters not correct when reading/writing as textstreamfile

    Hello, I have a Word file which I want to read line by line. First I save the file as text-file. Then I read this text-file and write it as a new file. THE PROBLEM: Special characters like "é" are not translated correct (in this case "é" is translated as ",")...
  5. ThinLizzy

    Size of Listbox changes when run with Win NT

    Hello, My Problem: I have a word vba project made with Word 97 on Windows 98. In this project I have made a dialog with some textboxes comboboxes and Listboxes. When I installed it on a Windows NT 4.0 system with Word 97, the listboxes where twice as small. I checked the width of the...
  6. ThinLizzy

    VBA (Word 97, windows 98) Reading the path of a shortcut.

    By the way, I found a solution! See thread711-283365 ThinLizzy
  7. ThinLizzy

    I want to read targetPath of a shortcut with VBA 97

    Thanks you very much strongm. It worked on VBA for word 97 to !!! After serveral days of searching finally a function that really works, THANKS !!!
  8. ThinLizzy

    I want to read targetPath of a shortcut with VBA 97

    Hello, I want to reed the path of a shortcut file in a directory, see beneth: Public Function TargetPathOfShortCut() As String Dim strLink As String strLink = Dir("c:\*.LNK") ' Return first *.LNK file ' (this link to another File...
  9. ThinLizzy

    VBA (Word 97, windows 98) Reading the path of a shortcut.

    Thanks for your answer, but that was not quit what i was looking for. I want to realy reed the path of a shortcut file in a directory, see beneth: Public Function TargetPathOfShortCut() As String Dim strLink As String strLink = Dir("c:\*.LNK") ' Return first *.LNK file...
  10. ThinLizzy

    how to copy data from recordset to an array

    The problem is the the record/fields .count don't work. You must add following code: rs.MoveLast rs.MoveFirst and then: r = rs.RecordCount f = rs.Fields.Count ..... Hope this will help you, ThinLizzy
  11. ThinLizzy

    VBA (Word 97, windows 98) Reading the path of a shortcut.

    I would like the read the path of a shortcut file. I tried some VB controls but they wouldn't work in Word 97. please help.
  12. ThinLizzy

    Insert Text in Word

    i would do it like this dim a set a = ActiveDocument.Bookmarks("B1") a.range.text="This is the text" Greatings

Part and Inventory Search

Back
Top