Search results

  1. S

    Best practice for synchronizing related table?

    I have a database that gets automatically updated by an external application (AccessBooks RT). Currently, the application is set to replace existing records. This means that any fields I add to the tables are lost during an update. It has been suggested to me to add tables that contain the...
  2. S

    Access 2007 security with MDB file

    Hi all... I've been doing some research on securing various parts of a new database application, but have yet to come to any conclusions. Another post on this site referred to this link: http://www.geocities.com/jacksonmacd/AJMAccessSecurity.pdf ... which seems to be well written and...
  3. S

    Setting report control values via OpenArgs

    First, here's my code that doesn't work: Private Sub Report_Open(Cancel As Integer) Dim Args() As String Dim ControlName As String Dim Property As String Dim Value As String Dim ThisArg() As String If Not IsNull(Me.OpenArgs) Then Args = Split(Me.OpenArgs...
  4. S

    Open report and filter on form data

    Me again... :) I have a form with a combobox at the top. This shows the customer name and has a hidden customer ID field. There is also a date picker control. Both of these affect a listbox control that shows records associated with sales order line details. The two comboboxes filter the...
  5. S

    Best choice for combobox record filter?

    Greetings all... I've been given the task of creating an Access database form - probably something that's seen a lot on this forum. I have considerable programming experience with other languages - C, Pascal, Java, etc, etc... but little with VB and Access. What I'm trying to accomplish is to...
Back
Top Bottom