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 Wanet Telecoms Ltd 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: dommales
  • Content: Threads
  • Order by date
  1. dommales

    Action from a command button

    Ok, now this is a good one, Probably very basic, but it needs to be done. Can I add a Iif statement to a command button to open the specific query, dependant on a value in a database field? For example: IIf([Contractor Details]![Contract Type]="AGENCY",/OPEN AGENCY...
  2. dommales

    A nice easy one - VB code

    can someone explain this code please. Private Sub WeekendDate_AfterUpdate() 'MsgBox [Bill Rate] & " " & [ContractorRate] If [ChargeRate] = " " Then [ChargeRate] = [Bill Rate] Else [ChargeRate] = [Bill Rate] End If End Sub I'm having a dense day. Thanks Dom
  3. dommales

    From updates

    Ok, this is a really bad question to ask, but it is driving me up the wall. I have a table of information: ConID name charge/hour 1 Dan 24 2 Dave 30 and I need to have the following table populated for hyours worked: ID conID Charge/hour Hours...
  4. dommales

    Pick list quey.

    Hi, I have the following code on a form: Option Compare Database Option Explicit ------------------------------------ Private Sub List0_AfterUpdate() ShowRecord.Enabled = True End Sub -------------------------------------- Private Sub List0_DblClick(Cancel As Integer) If Not IsNull(List0)...
  5. dommales

    Work time queries

    I have a query that I wish to construct that adds 2 hours to a gerneral time format. This is DD/MM/YY HH:MM The only issue is that it must only add working hours. It must consider that the office is only open from 09:00 till 17:30 and only during the week. Hence if the time is 16:30 on a...

Part and Inventory Search

Back
Top