Search results

  1. T

    Max Query Join

    Can we assume the usual: 1, When you say ID field, it is a numeric field 2. The tables have a primary key 3. In the Relationships window, enforced relations have been set up between the tables 4. VisitorSignInDetailsTBL.NameofVisitor is indexed 5. You have a decent computer and used Task Manager...
  2. T

    T-SQL Encryption function sought -

    Yeah, either that, or totally overthinking it and calculating a hash over each physician's account info.
  3. T

    SSMA_TimeStamp field never gets updated

    Typically not. The field value is not updated client-side.
  4. T

    Form Layout View takes forever to appear when Field List is included

    Where are you seeing this slowness? How are you deducing this is related to "filtering through the entire list of every field in every table"? Maybe you can post a video of this problem in action?
  5. T

    Microsoft References Needed For SendObject

    What is the bigger picture? Did you switch to New Outlook perhaps, and that stopped SendObject from working?
  6. T

    Performance Issues

    Is it this issue? "SQL Server" ODBC Driver Slow in Monthly Channel (Fixed) (accessforever.org)
  7. T

    Preventing System Admins From Accessing Database

    > or accessing the stored procedures and functions Look up "WITH ENCRYPTION" clause in BOL.
  8. T

    Preventing System Admins From Accessing Database

    > you should be able to install an instance of a SQL Server with an SA account for which you have the credentials for Ha! There is the little-known gem that users with full control of the server {e.g. Domain Administrators) can always take control. See for example how to reset SQL Server sa...
  9. T

    Need help with formatting a row

    Help files are mostly online nowadays. Search online for "VBA StrConv" and you should find the page you are looking for.
  10. T

    Need help with formatting a row

    That is called vbProperCase. You can use the StrConv function for that. Look it up in the Help file.
  11. T

    Not Allow data entry in Subform if Form Header hasn't been filled out

    This is what we implemented in Northwind Dev Edition, OrderDetails form. Works well.
  12. T

    SSMA_TimeStamp field never gets updated

    A timestamp / rowversion column is an 8-byte array. You can write code to convert it to something humanly readable, but mostly it works behind the scenes. The value gets updated automatically by SQL Server when the data in the row changes. It can then be used for a concurrency check.
  13. T

    xml

    Did y'all miss this part of the OP's post Here actual table Name Employees <<<<< GrandFather --------Enrollment <<<<Father --------------------CafeteriaData <<<<Son This can be solved with normal one to many relations. tblEmployees EmployeeID autonumber pk EmployeeFirstName text20 required...
  14. T

    xml >>> Transform

    Check out Application.ImportXML, ExportXML and TransformXML in the help file.
  15. T

    combobox reverting to original value with Not In List event

    Thanks for this, but it does not QUITE get to the core of my question: can one task have many specs, or can each spec be part of many tasks, or both. That would make it a 1:M, M:1, or M:M relationship.
  16. T

    combobox reverting to original value with Not In List event

    I looked at your db and it does not make sense to me. Starting with the relationships: This means that each Spec is made up of many Tasks. However, when I read the Spec records, these seem to be very minute instructions to fix something about an engine. That would mean: Task = Fix engine. Specs...
  17. T

    Fix error sub

    "Type" is a Reserved Word and it should not be used for a field name or any other object name. Search online for "Access reserved words" to get the full list.
  18. T

    Report opening without record

    2501 is not really an error. That's why in the Northwind 2 Developer Edition template's central error handler we write: If lngError = 2501 Then Exit Sub '2501 = The OpenForm or OpenReport action was canceled. Not really an error.
  19. T

    Report opening without record

    That would require the db to be queried twice - unnecessary in light of the Report_NoData event.
  20. T

    Opening a form in a library and retrieving a returned value

    Here is a quick and dirty example. Compile testLib to .accde. Open testApp, and fix up the reference to that library. Run _modTestOnly.test1Form
Back
Top Bottom