Search results

  1. S

    Records getting deleted, Need Help!!!

    He may have thrown in the towel. I wonder how many folks have their hands on the data? But one thing is evident, there is no control over the data. Maybe he discovered the issue and it is him and is a little embarrassed. I think we have all been there, but we learn from our mistakes and move on.
  2. S

    Records getting deleted, Need Help!!!

    I rely on SQL IDENTITY values and have never had an issue. Access AUTO NUMBER columns on the other hand do have a history of not keeping track of the seed value but I have not had that issue in quite some time. The issue usually occurred while compacting and repairing in older version...
  3. S

    Import From Email

    That is an encrypted email. You will need to get an email decryption tool.
  4. S

    Import From Email

    Why not just connect or link to your inbox in Access? If your email is in Outlook you can connect to Outlook as an access table, then you can import the contents from there. The only caveat about this solution is in a multi-user environment because only you can see your inbox and it would error...
  5. S

    Bring To Front & Send Back Properties using VBA

    Why not just set the Visible Property of the Controls to True or False. I only use bring to front of send back functions in design mode. And now, with the new stacking and tabular features and anchoring, new since the 2007 version anyway, I never use them. In one of my lastest apps, where it...
  6. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    Please see my final last comment.
  7. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    What a morning! Here are my notes from this morning. It was painful, but it is solved. I think the conclusion is that there must have been some corruption associated with the original Screen, and maybe one of the Sub forms in the Navigation Control (NC). I did not work with any of the sub...
  8. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    I use the same methodology in all of my applications. I have apps connected to Azure SQL DB with various DTU levels, as well as AWS, SQL Server over the Internet running on Dell PowerEdge Servers behind a variety of VPN's and have never run into this issue before. I did not create this...
  9. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    I altered the Dashboard to have a single tab in the Navigation Control. I removed all combo boxes on the subform (x3) just to render data. I also limited the data to 10 records on the SQL Source Table. The behavior is just the same.
  10. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    I will add that the Row Source is a Query, not a SELECT Statement. The Recordset Type Property is set to Snapshot. The Combo Box is Limited to List.
  11. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    There is no code running other than setting the global variables on After Update. As I mentioned, the Combo Box performs perfectly when scrolling down through the list with either the arrow button or mouse and pressing enter. It only occurs when the value is typed into the combo box. There...
  12. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    I have not done this. I will try it.
  13. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    I have an NDA on the DB so I cannot show it in any fashion. There is no code other than the After_Update Event that sets the Global Variables for the Filters on the Subform that is in focus on the Navigation Control. The Parent Form is not bound to anything record source. It only acts as a...
  14. S

    Solved Combo Box Issue Selecting Item versus Typing Item

    Hey Folks, I am a seasoned Access Developer, and I ran into a situation that I have never encountered before. I have an Access App that is connected to a relatively small SQL Server Database hosted by [blank] in the cloud. I have a View that is linked to the DB with the respective Columns for...
  15. S

    Create DSN-less connection to SQL Server

    No. the "...less" part of the "DSN-less" implies that it does not require a DSN File.
  16. S

    Use tempvars to open a related form

    This is just my 1 1/2 cents… I do use TempVars frequently. I have created shortened functions and they work great. As for the phantom record, I would use the After Insert or After Update as opposed to the the Before events. The Before Events are cancellable and that is a problem. Glad you...
  17. S

    Solved Show Field if Check Box is Yes

    Or apply the True Filter Criteria in the Query itself.
  18. S

    selecting fields from a subquery to be included in the main query

    Do not use a Sub Query in the Where Clause. Add the [CopyTimeEntry] into your query with the proper joins and then you can refer to any Column within that table. Joins work very similar to where clauses for the purpose of limiting recordsets.
  19. S

    Solved Error 3467 object is closed

    Are you setting the "CallingForm" as a Form Variable or as a String Variable (See Line 30). If a String Variable, this should be fine, but if a Form Variable, you will need to express "Select Case CallingForm.Name" It makes good practice to preface your varaibles with their object tyoe. For...
  20. S

    Recordset not populating data in a new form (#Name?)

    I don't see where you are defining the Data Connection. The SQL Statement does not know where the data lives. Define the DC and I think you will be good,
Back
Top Bottom