Search results

  1. R

    Hiding Access Query from Excel

    The db is written to their C drive as part of the process, however the admins need to be able to update this information on the fly. I have added a version number to the data set that highlights if its older than the established version and prompts them to update. They access the data through...
  2. R

    Hiding Access Query from Excel

    Hi I have already hidden my tables by holding them in another db and linking to them, I now have half a dozen queries, with just one output query, however I don't want the end user to access the feed queries.
  3. R

    Hiding Access Query from Excel

    Is there a way to stop selected queries and tables from being available to excel as external data sources? I am looking for a way to hide them from the list of available data sources to anyone who selects a particular database Thoughts?
  4. R

    Variable

    I need to pass a variable from one Access Database to another The senario is I have a item number in one database that I need to use to open a form in another database, I can open the database using vba, currently launching a BAT file that copies the latest version database to a local drive...
  5. R

    find price for given month

    The current query no looks like SELECT Forecast.Article, Forecast_Detail_Working.FYear, Forecast_Detail_Working.FPeriod, Forecast_Detail_Working.Qty, First(DateLookup.CalDate) AS FirstOfCalDate, ASPProjected.NewASP AS Price, ASPProjected.FromDate FROM ((Forecast INNER JOIN...
  6. R

    find price for given month

    It would work well in excel, however the bigger picture is requiring a full access solution, Think the solution involves finding when next price starts and using that a between query, however not sure how to obtain this, as this may or may not exist when query is run
  7. R

    find price for given month

    The output of this is forecasted revenue, the selling price varies sale to sale and is not finalised until after the event, we are forecasting based on pending orders, these are then set against a price which is an average of previous sales, however we also have planned increases coming up, and...
  8. R

    find price for given month

    I have a table of upcoming price increases by item / valid from date Item Price ValidFrom 1234 10 01/01/2014 1234 20 01/06/2014 3456 15 01/01/2014 3456 25 01/06/2014 3456 35 01/01/2015 I also have a table of upcoming sales Item Month Qty Price 1234 Feb 14 20 ???? 1234 July 14 30 ...
  9. R

    Excel Problem

    SourceIDEFinYEftPTypeSub Type 1Sub Type 2Sub Type 3%change1201411****5220153Air Purifying***7320154Air PurifyingFilters**3420152Air PurifyingFiltersHood*4520152Air PurifyingFull FaceM SeriesM-9849201411Air PurifyingEscapeHoodHood Civic2QuestionsEFinYEftPTypeSub Type 1Sub Type 2Sub Type 3Answer...
  10. R

    Logiltity

    Hi All Does anyone have any experince in using Logility? If so does anyone have experince of linking Access to Logility tables? Tim
  11. R

    error passing variable to class module

    Hi, Replacing the line Public Property Set ViewS(ByRef ViewA As Boolean) with Public Property Let ViewS(ByRef ViewA As Boolean) worked Many thanks
  12. R

    error passing variable to class module

    It was working until i added the set and get procedures, Will try to replace set with let and see if that works
  13. R

    error passing variable to class module

    Hi rps is defined as Private rps As ReportPrintStatus This is the name of the Class module the full class module code reads as Private WithEvents mrpt As Access.Report Private WithEvents msecReportHeader As Access.[_SectionInReport] Private mintCounter As Integer Private ViewC As...
  14. R

    error passing variable to class module

    Hi All I am trying to pass a boolean variable to a class module Set rps.ViewS = View the code in the module that this in theory is calling reads as Private ViewC As Boolean Public Property Set ViewS(ByRef ViewA As Boolean) Set ViewC = ViewA End Property Public Property Get ViewS()...
  15. R

    Question Access 2010 Ribbon - Runtime

    Cheers Guys will give this ago.
  16. R

    Question Access 2010 Ribbon - Runtime

    Hi All We are in the process of upgrading from Access 97 to Access 2010 The database admins have a full copy of 2010 and the general users will have a copy of the Access 2010 runtime installed. The issue is that when a database is opened in the runtime, the ribbon disappears, this is...
  17. R

    Question Upgrading Access 97 to 2003

    Cheers Guys I have amended our proposal to recomend the Access 2010 option, will let you know what the outcome is. Hawk
  18. R

    Question Upgrading Access 97 to 2003

    Hi All After many, many years we may finally be allowed to upgrade to Access 2003 (we have had to fight to get this far) We have a number of obstacles still to overcome and I would appreciate some advice. We have approx 60 databases with various links and around 150 machines supporting 200...
  19. R

    Email causing Crash

    Hi Yep I do have an error trap running however this is causing a complete crash and force close. Seems to be ok only Access and Outlook are open so using that as a temp fix Thanks Tim
  20. R

    Email causing Crash

    Hi all I am trying to send reports via email using VB code DoCmd.SendObject acReport, "MOEmailOrderList", "RichTextFormat(*.rtf)", Eaddress, "", "", subj, msg, False, "" However its is intermittently crashing, will work 5 times then fall over for no apparent reason the next 4 times...
Top Bottom