Recent content by bgseib

  1. B

    mulitple users on a shared form

    I have a form that is used to update some tables, and I have it located on a network drive. What I am trying to do is get around the form lock or table lock error I get when I am on a form and another user tries to get on that form, and they get an error stating they can not update, cause it is...
  2. B

    multiple users on a form

    I have a form that is used to update some tables, and I have it located on a network drive. What I am trying to do is get around the form lock or table lock error I get when I am on a form and another user tries to get on that form, and they get an error stating they can not update, cause it is...
  3. B

    image - visible and not visible options...

    SP = Stored Procedure (on SQL Server) I actually did the same thing as suggested - I created 10 forms with status bars on them. The first one with 10 % complete, then 20, then 30 and so on. The problem I am having is that the sp's run so fast that the status forms do not have time to...
  4. B

    make image visible?

    Won't really work.. Good idea - But it takes too long to refresh the screen. The sp's only take about 30 seconds, and by the time the visible property is set to false - the next sp is already complete. This is kind of what I was thinking though too.. Does ANYONE know how to have an image pop...
  5. B

    image - visible and not visible options...

    This will be easy for most probably... I have a button that calls 9 SP's in sequence, and I am wanting to display an image for the user while a sp is running and once it completes and the nest sp starts the image will go to invisible and the next image will become visible. I am doing the same...
  6. B

    make image visible?

    This will be easy for most probably... I have a button that calls 9 SP's in sequence, and I am wanting to display an image for the user while a sp is running and once it completes and the nest sp starts the image will go to invisible and the next image will become visible. I am doing the same...
  7. B

    Hour glass showing working progress

    Thanks! Thanks man - I hate it when I forget the easy things : )
  8. B

    Hour glass showing working progress

    OK - this may be easy or may be hard - not too sure. I have a procedure that calls about 7 stored procedures in a row off the SQL server and once the last one returns it will pop up a form for the user. Problem - I am filtering through about 8 million records and it takes a minute or two. So...
  9. B

    isloaded function??

    It is a memeber of the accessobject class. I looked it up in the object browser.. Has anyone used it before? Thanks, Brian
  10. B

    isloaded function??

    I am having problems with this isloaded function. I am using it in my login routine and it keeps giving me "compile error sub or function not defined" Does anyone know what I need to do to get this function to work?? Here is the code I am using.. If Not isloaded("frmLogin") Then...
  11. B

    Calling stored procedure timeout problem..??

    Anyone??? I am using ado - so as far as I understand ado - once I open a connection - it will stay open until I close that connection??? Any other thoughts??
  12. B

    Calling stored procedure timeout problem..??

    I am actually not using an odbc driver. I created a new form in a new access database - and just put a button on the form with the code I pasted earlier. So I the only connection I am using is the adodb.connection string... any thought?? I have also swapped the code out for other things and...
  13. B

    Calling stored procedure timeout problem..??

    I don't think so. I can run the sp on the sql box through query analyzer and it runs for about 4 minutes with no parameters just fine (transfering about 6 million records), but when I run it through the access front end where it is calling the sp through ado it times out on me... ??? Thanks...
  14. B

    Calling stored procedure timeout problem..??

    Unluckily I have tried that. It is really funny - I have created a new form in a new project and called the same sp and it does the exact same. Everytime it errors out between 30a nd 35 seconds. Is there some global setting I am missing somewhere? I appreciate the help... BS
  15. B

    Calling stored procedure timeout problem..??

    Ok - I am calling a stored procedure that runs anywhere from 30 seconds to 6 minutes depending on what parameter the user enters. My problem is that when ever it runs for anything more than 35 seconds I get a runtime error for timeout expired. Here is my code: Private Sub Command0_Click()...
Top Bottom