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 strongm 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. wacker

    Automating spell checker in Word97

    I am trying to run the spellchecker via a toolbar button using a macro in Word97. This is working to a point, but the language keeps defaulting to EnglishUS instead of EnglishUK. The Word document divided into sections which means that setting the language at the beginning of the spell check...
  2. wacker

    CanGrow Poperty

    Hello out there, I have three fields on a report, set to cangrow. When one of the fields grow I want the other two fields to grow to the same height. e.g. field1.height = field3.height field2.height = field3.height I can get the height of the grown field3 after the 'on print' event but...
  3. wacker

    Prevent exiting Access problem

    I have written a database(Acess97) that prevents the user from exiting the database unless they click on my 'Exit' button which contains the code: forms![frmHiddenForm]!chkCanClose.Value = True 'allows frmHiddenForm to close and thus the database docmd.quit 'continue with exit It works as...
  4. wacker

    Allocating sequential serial numbers

    Thanks Ben, that worked brilliantly!
  5. wacker

    Allocating sequential serial numbers

    Thanks. I'll give it a go.
  6. wacker

    Allocating sequential serial numbers

    I need to be able to allocate serial numbers to a field within a table. The serial number is made up of 3 parts e.g "CPM2" "Medic1" "00012 = CPM2Medic10001. The 1st part will always be CPM2, the 2nd part could be one of 4 values e.g Medic1, Medic2, Medic3, Medic4 and the...
  7. wacker

    Finding files via code

    I need to be able to find all access databases on my c:\ via code within Acccess. The code I have written is as follows: Private Sub cmdFindFiles_Click() Dim strFileName, strPath As String strPath = "c:\*.mdb" strFileName = Dir$(strPath) Do While strFileName > "" 'some...

Part and Inventory Search

Back
Top