Search results

  1. A

    "New" Outlook breaks VBA?

    I have had some reports within our company that switching to the "New Outlook" is breaking some of the VBA code I have written for our Access App. Specifically I have some code that generates and sends an email through Outlook that we have been using for years with no issue, lately I have been...
  2. A

    [SOLVED] Line Chart (Modern) primary axis issue

    I have been scouring the threads but nothing seems to fix my issue with the primary axis. I have tried setting the min and max manually but the same chart is used for several product models and the range is different between models. I have tried using vba, but setting the min and max that way...
  3. A

    Create list of serial numbers and insert into table

    I'm having a bit of trouble with my code: Dim strModel As String Dim strDateCode As String Dim strMsg As String Dim nValue As Variant Dim nQuantity As Variant Dim i As Integer If IsNull(Me.DateCode) Or IsNull(Me.ModelNumber) Or IsNull(Me.Quantity) Then...
  4. A

    Does network latency interfere with code execution?

    I have noticed lately that I am getting differences in the way the vba code is behaving when run from various network computers. For example, a couple of weeks ago I introduced a new data entry form for our production group. The form and code worked as expected when I tested it at my...
  5. A

    Open Report generates a tiny window?

    Recently my reports have started opening as very small windows. I haven't been able to determine why. The VBA code: DoCmd.OpenReport "rptPrintFATDataS8500", acViewPreview, , "[SystemNumber] Like '" & strSystem & "'" I tried adding ",acWindowNormal" to the end but it does not seem to make a...
  6. A

    Can Access send IM's instead of email?

    We currently use Outlook to send emails when certain types of records are added to the database, I had a question today whether Access was capable of sending other types of notifications from one user to another. Has anyone done this?
Top Bottom