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. HockeyGuy

    Life beyond Access

    Thanks BNPMike and OracleRenegade. Both your insights are simple and true. I have been reluctant to drink the .NET koolaid because I didn't trust Microsoft and I didn't know if I wanted to get on their treadmill. But your comment that there is no evolutionary path on my current front is...
  2. HockeyGuy

    MS Access over broadband connection

    Not sure about the VPN thing but I have had clients work effectively with Remote Desktop and Citrix. I would think that server horsepower is a requirement as you are basically working in a session on the server. I am not sure what the licensing and server software requirements are but it works...
  3. HockeyGuy

    Life beyond Access

    Guys thanks for piping it. JoeAtWork has a strong body blow with: "For your own sake and for the benefit of your clients, I think you need to get out of your comfort zone and expand your knowledge. If Access is all you know, chances are their are many important design principles you never got...
  4. HockeyGuy

    Life beyond Access

    I recently read the thread "Anyone else having trouble finding work?" and find myself facing the same reality. The market appears to be shrinking for MS Access and the desktop database. I was always so impressed with the power, versatility and ease of use of Access and wondered why nothing...
  5. HockeyGuy

    Accurately reporting a shift that spans 2 days

    I like DateValue(CDate(#2/17/2006 12:24:43 PM# -#6:30 AM#)). I think that I needed the CDate to convert the resultant "38765.2463" then the DateValue to boil it down to a big day date. Thanks again Rick
  6. HockeyGuy

    Access report design

    I believe that both labels and text box controls on a report can display values in the vertical mode. Check out the properties of these controls and look for the property "Vertical" (just below "Visible) and change it to "Yes". HTH Rick Racic
  7. HockeyGuy

    Accurately reporting a shift that spans 2 days

    Duane: Just to let you know that I implemented your insights with the following modification. When I subtracted "6:30 AM" from "2/17/2006 12:24:43 PM" I got "38765.2463...". Using the DateValue function gave me the general ERROR# response. Ultimately I used the following: WorkDate...
  8. HockeyGuy

    Accurately reporting a shift that spans 2 days

    Thanks Duane So you are saying, that since my first shift starts at 6:30 AM, to subtract #6:30# from all my records at the query level to determine a "workday" then group on WorkDay/Shift. So 3rd shift production records like 2/19/2006 6:26:09 AM will be evaluated as 2/18/2006, whereas 1st...
  9. HockeyGuy

    Summary Within a Report on the Page Footer

    To get your RegHrs, OTHrs, SickHrs, etc. to show up as seperate values, even though they are stored in a single field you must use a crosstab query. The query will have: RowHeadings - TDate,Employee,JobNo,Description ColumnHeading - TypeTime Value - Sum of TypeTime (not sure as I type that...)...
  10. HockeyGuy

    Accurately reporting a shift that spans 2 days

    Does anyone have experience with reporting data that doesn't strictly adhere to date grouping? I am trying to report out production by shift where a shift starts on one day and ends on the following day. Specifically, the 3rd shift starts at 10:30 PM, spans midnight and ends at 6:30 AM on the...
  11. HockeyGuy

    Set Textbox 'Control Source' to be a Query?

    Change your unbound text box to a combo box. You can set the combo box to only show one row and lock/disable it to prevent data entry into the control. HTH Rick
  12. HockeyGuy

    Change combo box property

    Changing the RowSource of a combo or list box is easy and can be very functional. You just need to make sure that you are replacing a RowSouce with a similar rowsource (same number of fields, etc.) You could use code such as the following: Code behind the OnClick 'configure and populate the...
  13. HockeyGuy

    Dynamically Change RowSource of Chart Object

    I found that a chart behaved like a subreport when trying to change the recordsource of the object dynamically. I got around this by binding the chart to a query called "qryTemp". I would then change the SQL behind the qryTemp and not need to touch the report/chart. Example...
  14. HockeyGuy

    query the last autonumber in the table during insert

    If you needed to know the highest autonumber assigned (the last record added) you could probably use the DMax function on the autonumber field. I think that the function is setup as follows: MaxValue = DMax("FieldName", "TableName",["Criteria"]) If you don't...
  15. HockeyGuy

    Scroll to Bottom of Textbox

    Ed: I am an exception kinda guy and would offer this - only report the table that fails. If you still want to be cute then you could create a string and populate a list box. If you are using code then: Dim strStatus As String strStatus = tbl.Name & " - connection test passed." go...
  16. HockeyGuy

    OLE server Error

    I had this sort of error when moving an Access97 (started in Access 2) app to AccessXP. The problem was that the reference to the object was outdated and the ActiveX control didn't exist in my current install of XP. In my case the report looked for an object based on MSChart.ocx. In your case...
  17. HockeyGuy

    What is Max No. of Sub Reports in Report

    Steve: I did an app in Access 97 that basically choked at 12 subreports. I did notice that this was somewhat sensitive to the computer (ram, etc.). The error that came back said something about "cannot open databases" or "too many databases open" or "are you out of...
  18. HockeyGuy

    Linked table path syntax

    Thanks guys I will do some testing to see what the performance implications are for the UNC format. Rick
  19. HockeyGuy

    Linked table path syntax

    In a FE/BE scheme, is it possible to have MS Access relink tables based on server path format versus Windows path (I don't know if this is the right terminology)? ie. Server path: "\\ServerA\Databases\Datafile.mdb" versus Windows path: "M:\Databases\Datafile.mdb" Thanks Rick
  20. HockeyGuy

    Populating a combobox with values dependent on other choices

    If the values that you are filling into the combo boxes is dynamic then you probably should have lookup tables behind these boxes so that you can store and edit the values. If the values are static (don't change) then you can change the value of the second box depending on the selection in the...

Part and Inventory Search

Back
Top