Search results

  1. HiTechCoach

    Hiding fields in tab controlled form

    Did you add the code to the "On Current event of the form like in the example you posted?
  2. HiTechCoach

    Hiding fields in tab controlled form

    WARNING: This was cross posted here: http://www.accessforums.net/showthread.php?t=66449
  3. HiTechCoach

    Lebans Calendar

    Here is another great Access calendar with some other cool code. Proximity Functions
  4. HiTechCoach

    Resume builder database

    I might. Is this a database for a Human Resources (HR) Department to track resumes for people applying for jobs?
  5. HiTechCoach

    AN report issue in 2010

    Frist, is the database split with each using having a copy of the front end on their local hard drive? Second, did you convert the front end and back end mdb's to the new accdb format?
  6. HiTechCoach

    Question Copy Data from One Subform to another Subform.

    I do the same and similar things now in my Accounting systems. There as tow way=s I do it. 1) Use an append query. Great for copying records. 2) Use a recordset. Great for duplicating a record(s) and the related child records. For your example, the way I do it is with a popup form. This...
  7. HiTechCoach

    Linking Access application to Azure Cloud

    Paul, Not sure what yu mean by "Azure on the cloud". Azure is a platform with that provides many solutions. My guess is that you want to upsize your back end to an SQL Server hosted on Azure. That wat you can link your Access front end to the SQL Server "in the cloud". Is that what you...
  8. HiTechCoach

    Help disableling buttons after update

    I would recommend using the Form's On Current event and VBA code to enable/disable the buttons and controls as needed. Private Sub Form_Current() If Me.NewRecord = True Then ' new record allow edit Me.TaskDetails.Locked = False Else ' existing record disable edits...
  9. HiTechCoach

    Access 2013 to SQL 2014 ado vs odbc linked tables

    With a ACE/JET back end, the persistent connection keeps the locking database (.ldb/.laccdb) alive (created). It saves on the (small) overhead of creating this file when needed. Curious, what is the benefit of a persistent connection to a SQL Server.
  10. HiTechCoach

    Access 2013 to SQL 2014 ado vs odbc linked tables

    According to the SQL Server DBA gurus I know, they say is totally normally. Not just with Access. AFAIK, I would not worry about the number of connections.
  11. HiTechCoach

    Form on full screen.

    Here is what you agreed to when you install it: "keep the status bar containing the statement "Powered by Microsoft Office Access" displayed in your user interface to be viewed by users at all times;"
  12. HiTechCoach

    Generating a report between date ranges

    I use Crosstab reports a lot. I have an example that I use all the time as a template. See: Dynamic Report based on a Crosstab query
  13. HiTechCoach

    [Microsoft][ODBC Microsoft Access Driver] Too many client tasks.

    Thanks for the update. Good luck ...
  14. HiTechCoach

    Auto fill after barcode scan

    Cross posted HERE
  15. HiTechCoach

    Modified Date in a Table

    You're welcome. Let us know how it goes with the data macros.
  16. HiTechCoach

    Table and Relationship Structure

    It is very difficult to help you with just general names like tbaleX, fieldY, and valueZ. We really need to see some same data and know what it represents.
  17. HiTechCoach

    Can Outlook use a variable that was defined in Access 2003?

    Thanks for paying it forward by sharing your solution. Great Job!
  18. HiTechCoach

    Modified Date in a Table

    Access has added a data macros to the AACE/ACCDB format. I have not tried them but it might do what you want at the table level. See: https://msdn.microsoft.com/en-us/library/office/ff973807(v=office.14).aspx
  19. HiTechCoach

    Form on full screen.

    I think you are wanting to hide the Access Application Window any use only POP-up for. I have been down the rabbit hole. Acess 2007 and after really do not play well when you hide the Application Windows. Things like report preview will not work. IMHO, you should avoid trying to hide the...
  20. HiTechCoach

    Defining relationships

    Referential Integrity (RI) is enforced by the ACE/JET (the Access database engine). There is NO way to get around it. Add or updating records must follow the RI rules that have been defined. It does not make how yu are adding or changing the records. RI will be enforced is defined. A SELECT...
Back
Top Bottom