Recent content by Avoraightu

  1. A

    "New" Outlook breaks VBA?

    Thanks for the quick response, not exactly was I was hoping to hear, but it is what it is. Looks like I need to contact IT.
  2. 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...
  3. A

    [SOLVED] Line Chart (Modern) primary axis issue

    Originally in the example code the data type was set to Long, which gave me a "0" for both the min and max, essentially making the axis disappear. I haven't used numbers this small in a chart before so it did bring up some challenges, but as soon as I changed the data type everything started...
  4. A

    [SOLVED] Line Chart (Modern) primary axis issue

    Thank You The data type single works just fine. I think we can call this a wrap, here's what I ended up with compared to my first snip.
  5. A

    [SOLVED] Line Chart (Modern) primary axis issue

    Thanks for the feedback I believe I am making some progress, I discovered that left on it's own Access seems to always start the axis range @ 0 for decimals less than 1. When I debugged the example code I was getting 0 and 0 as the min and max values for the axis. I ended up having to change...
  6. A

    [SOLVED] Line Chart (Modern) primary axis issue

    Ya I don't know if it is the version of Access that we have but I read through those and even tried some of the examples. The examples work fine when run, but fail when I try to replicate them in our live version.
  7. 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...
  8. A

    Setting one 'global' font size for chart data labels

    I am currently looking for the same solution, this one looks good but I get a run-time error '438' Set objChart = Chart463.Object Object doesn't support this property or method
  9. 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...
  10. A

    Does network latency interfere with code execution?

    I finally managed to get my hands on the laptop this morning, I was able to verify that the application was behaving differently. As previously pointed out the network although causing a delay, wasn't interfering with the form event. I don't know the exact cause of the problem, but I was able...
  11. A

    Does network latency interfere with code execution?

    It is a very simple piece of code, the user makes a selection from a combo box, as long as something is selected a message box comes up with a Yes / No option for the user. It is on the "after update" of the combo box.
  12. A

    Does network latency interfere with code execution?

    It is definitely split, however I am relying on them to download and install locally, I need to check that for sure.
  13. A

    Does network latency interfere with code execution?

    It's nothing very complicated. The user makes a selection from a combo box, if for some reason they don't select anything then the code is not supposed to execute. Otherwise a message box is supposed to popup offering a Yes / No selection. Like I said it works fine on my desktop but I am...
  14. A

    Does network latency interfere with code execution?

    I should have time tomorrow to dig a bit deeper, they have been using that workstation before but that does bring up a good point. We typically upload the file to sharepoint and have them download it locally, I should check to see where they are running it from.
  15. A

    Does network latency interfere with code execution?

    The event triggers a Yes/No message box, and the code executes based on the user selection. During my demonstration there was no popup message, and I was told there wasn't one on the production floor. I still have to go down and confirm it, and i know that the wireless connection is a bit flaky...
Top Bottom