Search results

  1. T

    Question Surviving using Access

    I am not a experienced user of Access World and I did not know where else to put this post than in a new thread. I know this is a harsh post but I simply needed to vent my frustrations. 25 years ago I gave up on using Access for anything else than the most simple tasks. It was simply too...
  2. T

    Info about Regular Expressions

    Sure. Here they are. VBA Regular Expressions Regular Expressions Reference Differences between the flavors of Regular Expressions The products: PowerGREP RegexBuddy I haven't tried RegexBuddy yet because there is no free trial version of it. I have only been using PowerGREP for a couple...
  3. T

    Tired of string concatenation?

    If you instead of writing filter = "[Name]='" & someName & "' and [Category]='" & someCategory & "' or [Value]='" & someValue & "'" prefer to write filter = Printf("[Name]='%0' AND [Category]='%1' OR [Value]='%2'", someName, someCategory, someValue) then use this function Function Printf(format...
  4. T

    Hello from Denmark

    Hello everyone. I am 59 years old Dane who has been working as a software developer for more than 35 years. Professionally I have been programming mostly in c, c++ and c#. About 25 years ago I used Access a lot but got fed up with it because of some crashed unrecoverable databases. Now I have...
Top Bottom