Search results

  1. S

    ADP FORM DATA REFRESH

    Hello all. Is anyone familiar with ADP? How can I make a form always fetch the most recent data like Access 97? Do I have to do a requery on every record on current to handle this? This seems so bad. Thanks
  2. S

    HELP!!!!! BOOKMARK MAKES RECORD GO TO TOP OF FORM??

    Hello all. I have a form that is in a ADP file that is not updating properly so I need to fire off the Current event and requery the form with a bookmark. Everytime I do the bookmark the record goes to the top and the scroll bars move etc. Is there anyway for the bookmark to appear but the...
  3. S

    DOES ANYONE KNOW ADP?(Locking Forms)

    Hello all. I need some real good info on this. I have a large scale ADP application that the biggest issue I have been trying to resolve for a month now is capturing a lock coming from the SQL Server backend. I have an Access Form in my project that links through ADP(SQL Server). The only...
  4. S

    Best way to view subform info?

    Your question makes no sense. Can you explain in more detail what your trying to do.
  5. S

    DoCmd.SendObject Email not working properly

    Hello all. I am using the DoCmd.SendObject to send email. It is a little confusing because I am using Exchange Server as the mail agent but outlook on all the clients. I know there is a couple of articles in MSDN about using automation for Microsoft Exchange or Microsoft Outlook but I am not...
  6. S

    DoCmd.SendObject Email not working properly

    Hello all. I am using the DoCmd.SendObject to send email. It is a little confusing because I am using Exchange Server as the mail agent but outlook on all the clients. I know there is a couple of articles in MSDN about using automation for Microsoft Exchange or Microsoft Outlook but I am not...
  7. S

    CLEARING CLIPBOARD IN ACCESS

    Does anyone know how I can clear the clipboard in Access in code. I am trapping a multi user conflict and when I try to close after the undo it prompts that I have copied a large amount of data to the clipboard. Any ideas?
  8. S

    RECORDSETCLONE ISSUE HELP

    I have a form that I changed from a recordsource to a recordset On_Open. The code line is: Set Me.Recordset = rs When I call a function to complete a find for a bookmark I set the recordset to recordsetclone. It used to work when I was using a recordsource as the bound query. Now ont he...
  9. S

    HOW DO I REFRESH AN ADP DATABASE.

    I create a new stored procedure through code but it does not recognize it unless I literally go to the Stored Procedure tab and click refresh. Any ideas? Application.refreshdatabasewindow does not work.
  10. S

    RECORDSOURCE FORM NEED SMART PERSON HERE PLEASE!!

    Hello all I need your help tonight because I am in crunch time with a deadline on this project. Here is the question I am wondering if anyone has any options. Ok I have an ADP database which when I setup the recordsource I have a query that uses a * in it for example tblOrders.*. Well what is...
  11. S

    Eliminating Screen Jitter on After_Update

    Hello I know there are some lines of code such as: DoCmd.Echo True DoCmd.Echo False Application.Echo True Application.Echo False Can someone please explain when and how I use these on a after_Update that is calling a requery or a insert procedure from causing the screen to jitter alot. I guess...
  12. S

    the most retarded question ever

    Jenn if you need to close another form then you will need: DoCmd.Close acForm, "frmScheduler" and not just DoCmd.Close
  13. S

    WRITE CONFLICT ADP 2 Users

    Hello all. I have an ADP database and when a user is editing a record from one instance with the pencil icon meaning its in edit more, when I open up another instance and I go to the same record I get a Write Conflict and get trapped in an infinite loop for some reason. I can trap the error on...
  14. S

    Error Trapping and Resuming if trapped

    Does anyone know how I can undo changes based on after I trap a error and then allow the user to move on. Currently I have a Select Case in my Form_Error and I am able to trap the Error and then I END. But I need to somehow UNDO the changes and then allow the user to move out of the text box...
  15. S

    AUTO FAXING ANY SUGGESTIONS

    Hello all. I am running a Access 2000 DB with Office 2000 quite. I need to from a form click a button which I will query for a fax number and then I want it to auto fax a report to that number. Does anyone have any suggestions for doing this? Is there anything in Office 2000 I can use...
  16. S

    USING HOTKEY FROM FORM

    Does anyone know how within a certain form I have use the F4 key or one of the F keys to fire a DoCmd.OpenForm event? Also when this occurs it will open a form. I need to somehow in that form know that this was hit, because the same form opens up as non-editable on the same form. Anyway I can...
  17. S

    CHECKING FOR FORM BEING OPENED

    I have a form that based on coming from a specific form I want to make the form editable and change the Me.Recordsource instead of maing a new form. Any idea how I can check first if the form is opened, because it will give me an error I think if the form is not opened and I do an IF statement...
  18. S

    ME.REFRESH LOSES RECORD PLACE

    Hello all. Here is my issue. I have a form that I recreated in another Access 2000 database. On the original form when I do a ME.REFRESH command the form goes to the FORM_AFTERUPDATE and then refreshes and keeps the record place in the detail section. On my new form anytime I do a...
  19. S

    ADP WRITE CONFLICT EDITING RECORD

    Kevin this is where I am getting the write conflict any ideas? I have narrowed down where the write conflict is happening. I have a function that is below. What is happening is when a certain field is updated it runs the following function. The first time it works fine, the next time...
  20. S

    ADP WRITE CONFLICT EDITING RECORD

    I am getting a write conflict on some parts of my subforms going back to my main form. I get a Write Conflict box and it says the record has been changed by another user. I am the only user on it at that point. Any idea what I should look for what could cause this? Thanks
Top Bottom