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

  • Users: bimmer
  • Order by date
  1. bimmer

    OnCurrent Form event does not refresh current records

    I just tried this, and made it work ok. Here's the code I used: Private Sub Form_Current() If IsNull(Me!column2) Then Me!column2.BackColor = 65535 Else Me!column2.BackColor = 16777215 End If End Sub Is the OnCurrent property being initiated each time you move to a...
  2. bimmer

    Append Query To Empty Table

    I do not have this problem. I can insert/append records into an empty table. What is the exact error you get when you try to perform this action?
  3. bimmer

    Backup Exec 8.6 fails to backup W2K system state on remote server

    Check your doco - you must have the Remote Agent add-on installed to backup the System State data on a W2K machine. See below: Using the Remote Agent to Back Up Data in a Mixed Environment You must install the Remote Agent on all remote Windows 2000 systems that you want backed up. Without the...
  4. bimmer

    Backup remote workstation

    The documentation says that to backup a remote W2K station, you must have the Backup Exec Remote Agent add-on installed on that machine. Try that? Also - I had that exact problem on a WinNT 4.0 machine when a number of services that should be running were stopped. When I turned them all back...
  5. bimmer

    How to use Variable in Criteria of Query

    Write a function to get the value of your Global Variable. Eg Global MyGlobalAccountNumber as String MyGlobalAccountNumber = "ABCDEFG" Function mGetGlobAccNumber() as String mGetGlobAccNumber = MyGlobalAccountNumber End Function In the QBE for your query, place the following in...

Part and Inventory Search

Back
Top