Recent content by MackMan

  1. MackMan

    DoEvents alternative

    for anyone interested there's a link I found after changing my search criteria.... And here's an alternative to DoEvents: http://www.mvps.org/access/api/api0021.htm
  2. MackMan

    DoEvents alternative

    In the BeforeUpdate event of a form field, I'm holding open a messagebox (my own design) with DoEvents as I can't allow it to open in dialog mode. If Len(Me.ReminderTitle & vbNullString) > 0 Then strLinkCriteria = "[ReminderTitle] = " & "'" & Remtitl & "'" 'checks reminders...
  3. MackMan

    Find Last date & value, before today with empty dates

    Thanks Minty for your link. Now I understand my error and it's easy to see why. And thanks CJ London once again... does exactly as I need it to! You guys are awesome! Total respect in regards to your knowledge on all this stuff. It's still a minefield for me, but I'm getting there.
  4. MackMan

    Find Last date & value, before today with empty dates

    Hi all. I'm trying to lookup a value from another query with dates running in ASC order from qryLookup TransDate Lookup Value ----------- --------------- 20/07/2018 … zz1 20/07/2018 … xz1 21/07/2018 ... xy1 21/07/2018 ... xy2 23/07/2018 ...
  5. MackMan

    Un-Agregate a non aggregated chart...

    Now I know it sounds stupid... But Access is aggregating a row source I don't want it to... I have two columns of data in a query one for dates and one for a running balance, but the running balance is aggregated (and I'm getting very aggravated) The chart has no resemblance of the data I...
  6. MackMan

    Use Outlook to delete Record

    Ideally something in VBA that'll do it on the fly... up to now I never knew Outlook also had VBA. I'll take a look into it.
  7. MackMan

    Use Outlook to delete Record

    Hi all. I was thinking... I'm currently using Access to delete related records in the outlook calendar, relevant to data I no longer need to keep in both. I was wondering if I could also create something in outlook and use it to delete a record on delete of the calendar item. I do have a ID No...
  8. MackMan

    Show all dates <between> or if no records show all records

    Plog. Thanks for you reply. I didn't realise that applying criteria in the where clause on the 2nd query undone the LEFT JOIN. I amended the query to include the criteria in the first query, and voila... it's working now exactly as I needed. Many thanks for you help and explanation, I learned...
  9. MackMan

    Show all dates <between> or if no records show all records

    Hi guys. A quick question... I know the title is confusing, and so is my problem. I'll try to explain as best as I can. I have a totals query called [qryActualSpend] where the dates criteria is Between [myformname]![txtstartdate] AND [MyFormName]![txtenddate] and the results are exactly as...
  10. MackMan

    Automatically insert decimal IF....

    Thanks Arnel. Works perfectly.
  11. MackMan

    Query

    Steve, given the information.. SELECT [YourTable].[Closed Date], [YourTable].[completion date], IIf([closed date]>[completion date],"Closed",IIf(IsNull([Closed date]),"Late")) AS status FROM [YourTable]; Always good to NOT to have spaces in Field Names as this can cause complications down...
  12. MackMan

    Automatically insert decimal IF....

    Hi guys. Thanks for taking the time to read... I have a currency field, and currently its set to automatically insert a decimal point by /10 if it's notnull. Most of the inputs to this field use pence and shortens the input method. Someone has asked me if it's possible to insert trailing...
  13. MackMan

    Delete OL Contact using Late Binding

    I finally got it to work. I built the code using the library reference and back wrote it. Turns out I was only referencing one Const olfoldercontacts = 10 , and not both which I also needed to include Const olcontactitem = 2 The final code (for anyone who's looking for the same is) Private...
  14. MackMan

    Delete OL Contact using Late Binding

    That whole link was extremely helpful, and I've already changed a couple of pieces of VBA to reflect that. However... I still have no idea what I'm referencing to be able to delete a contacts' details from Outlook, like using olcontactsfolder = 10 etc....
  15. MackMan

    Delete OL Contact using Late Binding

    Thanks Minty. Looks like exactly what I need. I'll let you know how I get on.
Top Bottom