Search results

  1. R

    Please Help with Coding!

    See attached file (form1) I created an *unbound* combo box, and then set some code in the event to set the current record. You probably still want to have save record etc buttons. I hope this is what you were looking for. Basically the code changes the "active record" when you select it via...
  2. R

    "Delete *" works, but "Delete * where" doesn't

    Thanks! I knew in some languages I have to use %, but I thought I could just copy paste the code from access. I use the thanks button for you! :D
  3. R

    VBA script executes thrice per OnFormat in Report? how to do it only once

    Set a global variable AlreadyDone (or whatever) Set it to false when you intialize, and then at the start just check if AlreadyDone=true, skip to the end.
  4. R

    Mailmerge current record and save as new document

    But why don't you just write a report, and export the resulting report to word?
  5. R

    Please Help with Coding!

    Ok, I have it open, but I am struggling to understand what you are trying to achieve. Please ask your questions in small chunks. (I have your DB now so I can go wherever your reference me). It feels to me that your UI is deceptive. IE you are hiding things, while you could just be...
  6. R

    Please Help with Coding!

    I assume your DB isn't huge. Perhaps you can zip it and attach? (I'm new here, so I dunno if that is allowed, but it should be).
  7. R

    "Delete *" works, but "Delete * where" doesn't

    I am connecting to my Access DB via ADODB connection (from Excel), I can delete all, but I cannot delete a subselection of data. This works: sSql = "DELETE ManualSplits.* from ManualSplits" cn.Execute sSql This does not work sSql = "DELETE ManualSplits.* from ManualSplits WHERE...
  8. R

    Hi

    Hi I'm Reenen. I need help with a query, but this is just my introduction thread. I am 34, from South Africa, and I work for a retail chain. I am struggling with my ADODB connection between my excel and access DB. But will be posting that here soon.
Back
Top Bottom