Search results

  1. C

    Pause Powerpoint to show Desktop weather

    This is a separate application. Desktop weather from the weather channel runs in the background and it would be easiest to minimize and pause my presentation for 2 minutes and then maximiaze and restart but I am not very good at code so I came here for suggestions...
  2. C

    Pause Powerpoint to show Desktop weather

    I am running a powerpoint show on a TV in our cafeteria that shows news and other company information. I need a way to pause the show and minimize to show desktop weahter for 2 minutes then resume the powerpoint. Any ideas???? :confused:
  3. C

    Referencing a report

    Is there anyway to reference a calculated field from one report onto another. I need to create a summary report from several other reports and don't want to use subforms becuase it slows the report way down. I was just wondering if there was another way.
  4. C

    Query Field Criteria

    Ahah. I think I know why I thought mine wasn't working. I have the start date as 9/1/05 and the ending date as 10/1/05. Most of my date1's are 9/1/05 and my between statement is not picking up 9/1/05 but on yours it is. Is there an internal setup that would cause this?
  5. C

    Query Field Criteria

    Mine still is not working I do have them as a date field but mine query still is not working. Can you send me a sample of your query. I must have something typed in wrong.
  6. C

    Export snapshot of report to excel workbook multiple sheets

    Here's my problem. I run a database every monday that has several (more than 15) reports as the outcome. Due to the massive amount of information we can't build the data up every week. We need to overwrite the tables and recreate the "Reports" every week. The department I am creating this...
  7. C

    Query Field Criteria

    I am not sure how to search for this so if there is another thread with this example please direct me in that direction. What I am trying to accomplish in my query is the following: I am bringing data in from another source in the following table ID Date1 Date 2 I want a query to do...
  8. C

    80010108 client disconnected - URGENT

    ... Although the problem is occurring on a continuous subform, it does not appear that is the cause. Briefly what happens is: On the subform 1 field is entered, which is the primary key of the subform table. On that control's afterupdate there is extensive code which pulls data from another...
  9. C

    80010108 client disconnected - URGENT

    Thanks Thanks for the quick reply but...(info from my code person) The recordset is not touched until the findfirst. While debugging, all methods of the recordset fail (movefirst, edit, requery, addnew). It is possible to get different errors, but they all seem to be the same error with...
  10. C

    80010108 client disconnected - URGENT

    We are having problems with a database created. the error we get is Run-Time error '-2147417848(80010108)': Method 'FindFirst' of object 'Recordset' failed We can succesfully enter in one record on a subform but when trying to enter the second we always come up with this error. if we end the...
  11. C

    Field Can not be Updated

    I have a form based on a query I built that calculates time worked. you select the worker in a combo box which I created from a query that lists all active employees and their clock no. with clock no being the bound column. The drop down shows the workers last name, first name. When I choose...
  12. C

    Time after 10:00PM bump to next day as date

    Thanks, It worked great. Sometimes the simplest things get me stumped. This site is wonderful for putting me back on track. Just one comment, when I entered the If statement it changed it to the following =IIf(Time()>#10:00:00 PM#,DateAdd("d",1,Date()),Date()) Just in case someone else...
  13. C

    Time after 10:00PM bump to next day as date

    I am trying to set the default in a feild to either be today's date if it is before 10:00pm but if it is after 10 PM i want ti to bump to the next day. I used this but I am getting an expression error. Any help? = IIf ( Time()> 22:00:00 , DateAdd ("d", 1, Date()) , Date())
  14. C

    Need help with List box Selection

    Still Need Help Since I have had no hits on this I think I might not be explaining very well or there is no way to do what I need. If anyone has any suggestions on other ways to do what I need I would appreciate it. Also, if you need further explanation as to what I want to do let me know. I...
  15. C

    Mulitple List box selection pushed to datasheet to add other info

    What next Thanks for your help but I have one question in the area where you say do what you want how do I push my selection to a form? I didn't get an error on my selection but it also didn't do anything? Thanks again.
  16. C

    Need help with List box Selection

    I am new to Access(and self taught) so bear this in mind when you view my DB. (Any suggestions are appreciated)I am using Access 2003. I have included a sample DB. What I need this to do is when you use the Fill Selection Form You can choose mulitple selection in the list box. When you click...
  17. C

    Form question

    Createing seperate form from your selected list This is almost like what I need for my DB with one difference. After you make the selection of the "members" I would like for thos you selected to display in a datasheet form with another field "Visitors" where I can enter the number of visitors...
  18. C

    Mulitple List box selection pushed to datasheet to add other info

    I am trying to make a user friendly form where the user can select mulitple items from a list box and then from that selection this info is listed in another table (Form) where they can add additional info. For example, List box lists Products to be made (1,2,3,4) If I choose item 3 and 4 i...
  19. C

    Auto Exit after idle time

    Thank you. It worked perfectly. I am slowly learning Code but I have never been instroduced to Modules. THanks for everyones help...
  20. C

    Auto Exit after idle time

    Thanks, That is what I am looking for but I am not familiar with Modules. Where do you put that and how do you link it to the form?
Back
Top Bottom