Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ssecca

    Pass Through Query - Parameters?

    I have a pass-through query that has two dates as parameters. The problem is those dates need to be changeable. I thought it would be a simple VBA statement to just delete the old query and create a new one as and when needed. It appears it is not, or I am missing a key point. Is there a simple...
  2. ssecca

    OUTLOOK ITEM_SEND Event Question???

    I want to programmatically examine every email being sent from my desktop. If certain conditions exist I want to automatically cancel the send. I have searched this forum and have found solutions that I thought would work like the Item_send = false and such, but none seems to work. It appears as...
  3. ssecca

    Read arguments from IE Favorites into database?

    This does not seem to work. I have tried .filesearch before and it does not see the favorites as files or something. It will not see them regardless of how I modify the code. If I ad a text file into the directory it sees it but not the favorite shortcuts. Because of that I can not read the URL...
  4. ssecca

    Read arguments from IE Favorites into database?

    I want to read the arguments from a shortcut in the favorites folder. In particular I am looking to read the URL and description into an access table. I tried .filesearch but it won't even see the shortcuts. Please give me a place to start. I have been unable to find anything here or on MSDN...
  5. ssecca

    Open Access 97 DB from Access 2002 DB ???

    Yes, of course. Thank you that works fine. regards
  6. ssecca

    Open Access 97 DB from Access 2002 DB ???

    Unfortunatly I can not convert it. All our computers have BOTH Access 2002 and Access 97 installed. Depending on the application being opened the short cuts are directed to open the application using either 2002 or 97 as appropriate. In this case we have a 2002 application that we want to...
  7. ssecca

    Open Access 97 DB from Access 2002 DB ???

    I have need to open an access 97 application from an Access 2002 application and turn control over to it until closed. I thought I was on the right track with the following, but I keep getting an error. ****START CODE Private Sub Command0_Click() Dim appAccess As Access.Application...
  8. ssecca

    Multiple Instances of same report - previewed

    I want to call a report over and over while stepping through an array. The problem is that once the first window opens displaying the report Access will not open any additional windows. Is there a way to force Access to open a report and then open the report again without closing the previously...
  9. ssecca

    Only one new record wanted...

    Three of the suggestions here seem to work well. I thank you all for your help. I chose the "cycle" option as it was the easiest to use when updating about thirty forms. Again thanks for all the input. ssecca
  10. ssecca

    Saving a report

    No my understanding of the snapshot viewer is it is not editable by design.
  11. ssecca

    Only one new record wanted...

    I have a popup\modal form that is used to create a new record in an application. Basically the user clicks a button it opens a form that allowsadditions. The user puts in the basic information required and clicks save. That closes the input form and returns the user to the view and edit form...
  12. ssecca

    Page break based on data in subreport???

    This is what I tried, but I get the error refered to in the original post, that is... Access does not support this property or method The syntax I am using in the report open event is me.pagebreak50 = true I'm lost, any help greatly appreciated. Thanks
  13. ssecca

    Group by 2 different fields

    When grouping ALL of the choosen fields in the query need to have some type of grouping designation. That designation could be "Group By", but might also be "First", "LAst", "Expression", or "Where". All of the options are listed in the pull down on the totals line of the QBE.
  14. ssecca

    Text box value based on multiple criteria being met...

    How about something like this on the report open event... dim bln_noVal as boolean bln_noVal = false if (isnull(a) or a = "") and (isnull(b) or b="") and (isnull(c) or c="") then bln_noVal = true end if if bln_noval = true then me.nonesel.visible = true me.nonesel.value = "None...
  15. ssecca

    Printing Reports from a Form filtered by changing the RecordSource

    This is untested but how about something like this... Create a global variable Global gbl_sSQL as string On the form button that calls the report use the following... Private Sub Command4_Click() gbl_sSQl = Me.RecordSource DoCmd.OpenReport "report1", acViewPreview End Sub...
  16. ssecca

    Saving a report

    Years ago I use to do this by printing it out to a pdf file using adobe acrobat (full version of course). It worked well for management reporting because I could just store it in a specified place so that it linked to the intranet site and they could all view it as needed. I don't know if the...
  17. ssecca

    Text box value based on multiple criteria being met...

    One question before responding, will the report only ever display one of the mentioned fields or does the possiblity exist that more than one field would need to be displayed at any given time?
  18. ssecca

    Two queries for one report?

    I imagine that the data you are trying to place on the report comes from multiple tables. Create a query for each group of data (logical groupings) like place address info into one query and sales data into another or whatever. Then create a report for each query (sub group of data). REMEMBER...
  19. ssecca

    Two queries for one report?

    Break the data up into logical groups and use sub reports.
  20. ssecca

    Strange runtime error behaviour

    Sounds like the call is taking longer to run then it take to get to the next step in your code. One possible way to resolve this might be to program in a pause at the approriate time. Basically make your code count to 1000 or 10000 as teh case may be. This would give the SQL time to send a...

Part and Inventory Search

Back
Top