Search results

  1. A

    date does not show with "" around it 2nd time round

    Solved it by using date diff function instead. Thanks anyway
  2. A

    date does not show with "" around it 2nd time round

    i have a txtbox and if i type a date into it and press search then the code will go into the following code showing message no payments If Len(txt_EnterDate.Value) = 10 Then If (Me.txt_EnterDate.Value) > lst_GetLastDate.Column(0) Then MsgBox "There are no payments made...
  3. A

    date does not show with "" around it 2nd time round

    If the text in a textbox is highlighted when i exit it, will it show as i mensioned above?
  4. A

    date does not show with "" around it 2nd time round

    If (Me.txt_EnterDate.Value) > lst_GetLastDate.Column(0) Then at run time, when i have the next line on breakpoint, and put the mouse pointer over it (the above line), this shows; Me.txt_EnterDate.Value = "30/12/2008" but the next time round if i display calender and choose date 30/12/2008...
  5. A

    I need to highlight text in a textbox on enter or click

    Ok, i'll heed your advice. Cheers! or Slàinte in Irish
  6. A

    I need to highlight text in a textbox on enter or click

    i found the answer in another forum here; http://www.access-programmers.co.uk/forums/showthread.php?t=168189&highlight=highlight+text My code was correct. It had to be placed in BOTH gotfocus and click event. Thanks
  7. A

    I need to highlight text in a textbox on enter or click

    name of textbox is txt_EnterDate I want to be able to highlight the text in the textbox when i click into it with mouse, for easy editing I could just clear it; txt_EnterDate = "" but the user would need to see what date was previously entered i've already used Private Sub...
  8. A

    listbox not filled with data second time around

    Using access 2003. (1) If i start the form, press btn_clientlist, select a letter im wh_letter then select a client in list_client i will get data in lst_paymentslist. (2) But if i start the form again, press btn_dateview, put in a date into txt_enterdate, a date which i know will not show...
Back
Top Bottom