Search results

  1. L

    Show Desktop with VBA

    DoCmd.RunCommand acCmdAppMinimize doesn't work at all. DoCmd.Minimize minimizes the form and leaves Ribbon and the icons exposed. However, I am using Peters Software ShrinkerStretcher. Could that be causing a problem?
  2. L

    Show Desktop with VBA

    I have looked everywhere and cannot find the answer. I need to minimize the MS Access 2010 application. DoCmd.Minimize and DoCmd.RunCommand accmdappMinimize does not work. It closes the current form, but not the app. I need the app to minimize to an icon on the Taskbar. Can you help? Thank you.
  3. L

    Change Recordsource on A Subform

    frmMain has a subform, frmMainSub. I change the sourceobject of frmMainSub for some procedures with this: Forms!frmMain!frmMainSub.SourceObject = "frmMainSubSub" frmMainSubSub can be any of several forms. On one form I have buttons to see different views of the data. The default view...
  4. L

    Change Recordsource on A Subform

    I know this is probably already in the forum but it is getting pretty big and I can't find the answer. I have this: frmMain frmMainSub frmMainSubSub recordsource = query1 How do I change query1 to query2? I hope this makes sense. Thank you.
  5. L

    Set Focus on Subform Control

    That worked. Thanks.
  6. L

    Set Focus on Subform Control

    I have a form with a subform on it. The subform has subforms. I need to set the focus on a control on one of the subforms. Here is what I am using. START OF CODE Forms!frmMain!frmMainSub.Form.frmContactLog.SetFocus Forms!frmMain!frmMainSub.Form.frmContactLog.ContactMethod.SetFocus END OF CODE...
  7. L

    Getting Rid of @ in Linked Excel Table

    You say you can't update a linked Excel table? If that is true, then I will import it. Also, the that I was speaking of was the @ symbol. Thanks.
  8. L

    Getting Rid of @ in Linked Excel Table

    I have a linked Excel table in Access. I ran a query against it and it said it was not updateable. I checked the table and found that in design view, the table is a text field and in the Format box is an @ symbol. I can't get rid of it. I tried going to the Excel file and reset the format of the...
  9. L

    Scanning Documents To Get Counts

    I will have about 3,000 sheets. Everything I have seen thus far seems to be for one sheet at a time.
  10. L

    Scanning Documents To Get Counts

    I don't have to scan into Access. I can scan into Excel, or ?, and import to Access. Does that open up any thinking out there?
  11. L

    Scanning Documents To Get Counts

    I don't have any scanned documents. I am looking for ways to scan and get the data.
  12. L

    Scanning Documents To Get Counts

    Once a year we have a conference that has about 400 people attend. These people will participate in several classes, randomly, over a four day period. Each class hands out an evaluation form. This form has six categories and asks you to rate each from 1 to 5. This is done with a grid on the form...
  13. L

    Scanning Documents To Get Counts

    Once a year we have a conference that has about 400 people attend. These people will participate in several classes, randomly, over a four day period. Each class hands out an evaluation form. This form has six categories and asks you to rate each from 1 to 5. This is done with a grid on the form...
  14. L

    Opening the Wrong Database

    I am not sure how to use that. Can you elaborate a little? Thank you.
  15. L

    Opening the Wrong Database

    I was moved from a project for a while and then brought back to it. I had two programs that were being used in this project. I had a process set up that used something similar to the following line of code: Shell "WScript " & """C:\MyFolder\MyFile.vbs""" This would run a script that would...
  16. L

    Update and Save a Subform

    How do I save the data in that field? The field is: Forms!frmRegistration.frmRegistrationSub.Form.Registered
  17. L

    Update and Save a Subform

    I have a form (frmRegistration) and a subform (frmRegistrationSub). On the subform is a field that receives a letter when a button is clicked. This field gets counted. So, after clicking the button, I need to update the count. I do this with the Docmd.RunSQL code. START OF CODE...
  18. L

    Run Query If DB Shuts Down

    Thanks for your help.
  19. L

    Run Query If DB Shuts Down

    I have table tblLog set up to track logging on and off. All I am tracking is the date and time the user logs on and logs off. That's pretty simple to do. When logging on it appends the userid, date, and time to tblLog. When logging off, it updates the logoff date and time for the matching...
  20. L

    Formatting A Calculation in an Unbound Control

    This does not work. ="The scores below are based on the number of total evaluations (" & Format (Sum([TitleIDCt]), "#,###"& ")."
Back
Top Bottom