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 Chris Miller 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: *

  • Users: jeph
  • Order by date
  1. jeph

    deleting text in doc with VBA

    the problem is that this is no ordinary text. the { XE ...} are bookmarks which need to be removed.
  2. jeph

    deleting text in doc with VBA

    the macro works, thanks. I'm only having problems with the replacement text: { XE <something>} I get an error message if i want to look for &quot;{ XE*}&quot; or &quot;^0123 XE*^0125&quot;.
  3. jeph

    deleting text in doc with VBA

    hi, I don't have much experience in using VBA with Winword 2k, but i need to write a macro to find some text in a document and delete it. the text looks like this { XE <index-name> }. can somebody give me a hint how to start? thanks, jeph
  4. jeph

    drop down box problem

    nice, that was exactly what I needed. the requery was still giving me some trouble because it kept &quot;kicking&quot; values from the field2 in other records, but with your piece of code I could remove it. thanks, jeph
  5. jeph

    Complex Problem

    well, you could try something like Do While (Len([Stage]) < 6) [Stage] = [Stage] & &quot; &quot; Loop of course youll need another do loop to do this until eof. ;) just check the length of the string and if its smaller than six, just add another blank.
  6. jeph

    drop down box problem

    hi, im having some trouble with using drop down boxes in a form with data sheet view. field1 is a drop down box i can choose a value from. after that im doing a requery on field2 which is another drop down box with values depending on the choice i made in field1. it works so far with one record...
  7. jeph

    Check available disk space

    yes, that's my problem, too. But fortunately i've just found something i hope i can use. I just hoped it would work without an API...
  8. jeph

    Check available disk space

    No I don't mean that. Sorry, there's a misunderstanding. I need a function to check the available disk space. IF there's more free space than FileLen(dbname) THEN I want to backup the old database ELSE the user gets a warning and has to make some more room. Greetings, <a desperate> jeph
  9. jeph

    Check available disk space

    Hi, is there a way to determine the available disk space on my harddrive? I need to copy some databases and therefore check if there's enough space left on my disk. Thanks, Jeph
  10. jeph

    Recently I wanted to update a database of mine. So i added the two fo

    Recently I wanted to update a database of mine.<br>So i added the two forms i had changed and another form which was to replace the old forms in the other db. Now what happened was: the first form was replaced and when the second was to be replaced access97 gave me the error message &quot;Object...

Part and Inventory Search

Back
Top