Search results

  1. reclusivemonkey

    Which is easiest to control?

    Also, you shouldn't design your tables structure around your forms. Your tables should be designed along the rules of normalisation (there are many posts in the forum along normalisation).
  2. reclusivemonkey

    Help Me Understand This Code

    I suspect the problem is with the "OpenArgs" part of the code. Have a look at the code that opens the form. Better still, ask whoever wrote it ;-)
  3. reclusivemonkey

    Icon Most Wanted

    http://icons.deviantart.com/
  4. reclusivemonkey

    Unzipping files

    Are you tied to using the XP Compression utility? I couldn't find anything either, but there are alternatives. 7zip is a completely free utility you should be able to get working in this scenario.
  5. reclusivemonkey

    Help Me Understand This Code

    Is it a function or a subroutine?
  6. reclusivemonkey

    Job Titles

    LOL. Well it is known as the "Windy City" isn't it? I have never been to Chicago, but I feel as if I know it from far too many hours on "Midtown Madness" ;-)
  7. reclusivemonkey

    Excell relationship

    Firstly, no attachment. Secondly, use a Pivot Table on sheets other than your "All Employees" sheet. This way you can easily filter/update the information.
  8. reclusivemonkey

    Track field value changes. Please help

    BeforeUpdate
  9. reclusivemonkey

    Reputations

    The number of posts is no indication of their usefulness, which is what the thread ratings and poster reputations are trying to represent. For example, someone may only post once a month, but that one post may answer something no one else can.
  10. reclusivemonkey

    .bat files works fine but errors when run from vb

    You did. Computers are extremely stupid. They will only do exactly what you told them to; no more, no less. As the previous poster said, it would seem you have no used fully qualified pathnames. Either use them in your batch file, or "cd" to the correct directory (I use this method myself...
  11. reclusivemonkey

    Reputations

    I was thinking of you and your regular flame fests with the Americans. Quite frankly, I don't care much about my "reputation", people can take my advice or leave it (sorry, don't mean to undermine Jon's efforts, I can see how most people would appreciate this, I'm just a contrary git). A quick...
  12. reclusivemonkey

    Invoicing Problems

    Thats a good idea. I had a copy of the Access '97 Version when I first started. It was very helpful.
  13. reclusivemonkey

    Track field value changes. Please help

    I named all my text entry fields "CostCentre_Something. I simply then loop through all form objects begining with CostCentre because I am too lazy to write code for each field name ;-) In that case, you need much less code; If GateArea.Value <> GateArea.OldValue Then GateArea2.Value...
  14. reclusivemonkey

    Reputations

    ...and if so can it be turned off in the Watercooler? ;-)
  15. reclusivemonkey

    Track field value changes. Please help

    Yes. You can compare .Value and .OldValue on your fields. I use the following code; by naming your fields, you can just check the relevant ones; Private Sub Form_BeforeUpdate(Cancel As Integer) ' Create an audit trail to track changes to cost centres Dim frmObjCC As Object Dim...
  16. reclusivemonkey

    adding things to images?

    LOL, I wish Sergeant. Its my brain that has been plotting against me... I had actually been using the ALT tag to get a "tool tip" for images. This works in IE, although its not really what it was intended for. FF didn't give a tooltip, but as I had seen FF do tooltips elsewhere, I went off to...
  17. reclusivemonkey

    adding things to images?

    Same here. Don't know what I was doing before :confused:
  18. reclusivemonkey

    Reputations

    Noticed that this morning Jon, I was just going to ask about it. How does it work?
  19. reclusivemonkey

    Job Titles

    Thanks Barry. I was going to search out one of the many "How to ask a question" links, but I don't think it would of done any good. My first forays on the internet ten years ago were on usenet. I learnt the hard way :-)
  20. reclusivemonkey

    Which one of them is fast to execute?

    Give it a try and see? ;-) You can even call it from VBA, getting the time with a debug.print, running the SQL, then getting the time again.
Back
Top Bottom