Search:

Type: Posts; User: Jim Bulger; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Re: How to simplify the select case (Access 2000)

    try something like this:

    select case Me![OptConnection] & "_" & Me![OptTables]
    case "1_1"
    case "1_2"
    case "2_1"
    case "2_2"
    case else
    end select
  2. Replies
    6
    Views
    267

    Re: RecordSet Error (A2000)

    post the query string. that is where your error seems to be
  3. Replies
    2
    Views
    261

    Re: MSOutlook vs. FirstClass (A2K)

    try this. I use it in modules with no problems

    Function fnMomentaryPause(timPause As Single)

    Dim Start
    Start = Timer ' Set start time.
    Do While Timer < Start + timPause
    ...
  4. Replies
    2
    Views
    237

    Re: Export Query to ASP and make it work?

    TRY THIS

    sql = "SELECT [2K1-JobBook-Query].[JOBNUMBER], [2K1-JobBook-Query].[2K1-JobBook_CUSTOMERID], [2K1-JobBook-Query].[DATE_IN], [2K1-JobBook-Query].[SUBDIVISION],...
  5. Replies
    1
    Views
    239

    Re: Making My Database Accessible

    since you say it is updated weekly, i would suggest pushing the db to them at a preset time every week. You say they are all on a lan so you can use your network o/s scheduling utility to do this.
  6. Replies
    8
    Views
    355

    Re: A97: Picture DB Size

    look up 'Picture Property' in access help
  7. Replies
    8
    Views
    355

    Re: A97: Picture DB Size

    This particular problem is well documented in all Access forums I know. Do not store files in your database. Store, instead the filepath to the file (whether it be a .bmp, .jpg, .doc, .txt) and set...
  8. Replies
    6
    Views
    363

    Re: Running Time Quandry

    my recommendation would be to move your tables into MSDE and transform your queries into stored procs and views. The benefits of these are well known and the MSDE functions the same as an SQL...
  9. Replies
    6
    Views
    363

    Re: Running Time Quandry

    without answering you questions, i have some of my own:

    You are using A2K, but are you utilizing the MSDE, or JET?
    Is the db split?
    When you imported the data, did you compact before running?
  10. Replies
    3
    Views
    261

    Re: Access 2000 Password

    you need to provide the back-end password in the connection (link) string for the back-end tables
  11. Replies
    13
    Views
    727

    Re: Temporary Tables & Arrays

    What Legare means is to have a template temp.mdb which contains the table objects you wish to use. In your code, before linking to the temp tables, check the file size of your 'PRODUCTION' version...
  12. Replies
    3
    Views
    247

    Re: syntax error in update statement

    sure. send it to jbulger@directhitdata.com
  13. Replies
    3
    Views
    247

    Re: syntax error in update statement

    CurrentDb.Execute "UPDATE products set stock = [order details]+ stock WHERE orderid = " & TOrderID
  14. Replies
    3
    Views
    306

    Re: Tracking changes

    What you will need to look into is: .OldValue

    HTH
  15. Thread: Query ?

    by Jim Bulger
    Replies
    4
    Views
    259

    Re: Query ?

    myDate<=DateAdd("d",-7,Date())
  16. Replies
    2
    Views
    246

    Re: Single form/multiple users

    or he could pass the teacherid in the openargs parameter
  17. Replies
    11
    Views
    459

    Re: Export Database as Time/Date

    I was trying to hold out on you, but....

    FileCopy varOriginationMDB, varDestinationMDB

    or

    FileCopy varOriginationMDB, varDestinationLocation & "" & format("yyyy-dd-mm",Date()) & ".mdb"
    ...
  18. Thread: .LDB Bummer

    by Jim Bulger
    Replies
    17
    Views
    740

    Re: .LDB Bummer

    Just because it is networked is no reason for concern. What is of concern is how everyone access it. Is the db split into front-end/back-end or is everyone using the SAME .mdb? Exactly what is...
  19. Replies
    11
    Views
    459

    Re: Export Database as Time/Date

    The easiest would be, (in access) run a shell command such as the following:
    Shell "c:program fileswinzipwinzip32.exe -min -a " & fullPathAndFilenameToCreate & " " & fullPathAndFilenameToZip
    which...
  20. Replies
    11
    Views
    459

    Re: Export Database as Time/Date

    Just a thought.

    Just prior to the Application.Quit, (using code, of course) open up another .mdb file which would contain the copydb code. You can then fire the code in the open event of the...
  21. Thread: VB ?

    by Jim Bulger
    Replies
    12
    Views
    420

    Re: VB ?

    This may work well as you say, but this code realy belongs behind the form and not in a separate module. The reasoning behind my statement is that you are explicitly saying that only the form...
  22. Thread: VB ?

    by Jim Bulger
    Replies
    12
    Views
    420

    Re: VB ?

    since the report specified is held in a variable, try something like this:

    .fields("PM")=reports(obj).PM

    (although this will only work if every report passed has the same object (i.e. "PM") on...
  23. Replies
    6
    Views
    332

    Re: Is this user in this group?

    All I would end up doing is giving away their code which is pretty unethical. their code is free to use as long as you purchase their book or find it published in one of their many articles in...
  24. Replies
    6
    Views
    332

    Re: Is this user in this group?

    If you have the Acees Developers Handbook by Gilbert, Getz & Litwin, you would already have that. If you don't have the book, I would HIGHLY recommend purchasing it.
  25. Replies
    1
    Views
    221

    Re: ODBC Linked/Imported Tables

    assuming you are using code to connet the table links, try using an if statement such as:

    IF table.name like 'MDATAP*' then
    '**place your connection code here
    END IF
Results 1 to 25 of 34
Page 1 of 2 1 2