Search results

  1. cos

    filter form between two dates shown in text boxes

    thanks again mate!! i tried that be4, but for some reason it didnt work.. many thanks again :)
  2. cos

    filter form between two dates shown in text boxes

    nvm.. this seems to work: Private Sub FilterBtn_Click() Dim strFilter As String Dim strDateStart As String Dim strDateEnd As String strDateStart = "#" & Format(Forms![FRM_Visit]![DateFilter1], "yyyy-mm-dd") & "#" strDateEnd = "#" & Format(Forms![FRM_Visit]![DateFilter2], "yyyy-mm-dd") & "#"...
  3. cos

    filter form between two dates shown in text boxes

    this is all i can attach it as =(
  4. cos

    filter form between two dates shown in text boxes

    Hi fellers, it's me with my stupid data filter issue again.. right.. i have my table with dates and a continuous form to show that data. On the form i have two unbound text boxes in which i wish the user can select a date and click filter, and the form will be filtered where the date in the...
  5. cos

    Table to excel code: http://www.access-programmers.co.uk/forums/showthread.php?p=1187804#post1187804

    Table to excel code: http://www.access-programmers.co.uk/forums/showthread.php?p=1187804#post1187804
  6. cos

    Table to Excel in One click of a button

    Re: export table to excel in runtime Thx Bob!! its working now! many thanks :)
  7. cos

    Table to Excel in One click of a button

    Re: export table to excel in runtime i placed the "Export A Table Or Query To Excel" code in a new module, named it ShopsToExcel. changed the: strTQName - TBL_Shop and strSheetName - TBL_Shop2 created a button on my little form. made an OnClick event for my button, chosen macro, and set...
  8. cos

    Table to Excel in One click of a button

    export table to excel in runtime hi guys, is there any way i can create a button on a form, to export a whole table to excel and save it? cuz this database will be used in runtime version, and there's no option to export data like there is in normal access.. i know that i could link an excel...
  9. cos

    Detail section as read-only or disable "Add new record"

    Event: On Current: Form.AllowAdditions = False worked best!! cheers guys!
  10. cos

    Bullet points in a message?

    Hi guys, is there any way of inserting bullet points into a message box? i've got my message in a macro, and if its not possible in macro, maybe there's an idiots guide on how to do it in code?
  11. cos

    list box to text box

    however.. quick question.. how can i filter a subform from this value now? :S
  12. cos

    list box to text box

    haha.. its working now!! thx a lot Trevor! and Pr2!
  13. cos

    list box to text box

    and for yours Trevor, i get this error: "The expression On Click you entered as the event property setting produced the following error: Invalid outside procedure."
  14. cos

    list box to text box

    i have no idea where to put that code.. as i tried and nothin works.. =/
  15. cos

    list box to text box

    how can i show a selected by the user record from a list box in an unbound text box? i made a listbox which has two columns and shows various info, and i need the selected record, what appears to be in column two to be shown in my text box.. any ideas?
  16. cos

    Microsoft Access Multi-Field Search Form: http://www.youtube.com/watch?v=CTiA_4Me0cI

    Microsoft Access Multi-Field Search Form: http://www.youtube.com/watch?v=CTiA_4Me0cI
  17. cos

    "Enable - No" options?

    ty mate.. all good now
  18. cos

    "Enable - No" options?

    hay guys, how do i make the disabled fields have darker font so that they are more visible? cuz if i try to even select a darker color in the home tab, it doesn't seem to do much.. are there some sort of options where this can be edited? or is there an alternative method of doing this? :D
  19. cos

    Double filter from combo's

    hi fellers, how do i set a double filter? i have two combo boxes with a selection of record details, so that when u select an option in the first combo box, the form filters; when u select an option in the second combo box, i want it to filter with two criteria's now.. however if one of them...
  20. cos

    remove duplicates query

    but i don't want to delete any of the records.. all i need is that visually, in the combo box, the user can select wanted manager without having to go through the endless duplicates. and i have considered having a separate table for managers, but that will confuse the hell out of the system, and...
Top Bottom