Search results

  1. bob fitz

    Solved Breakpoints don't work?

    Can anybody please confirm for me that it is usual/expected behavior for breakpoints to stop working after unticking the "Use Access Special Keys" setting?
  2. bob fitz

    Any opinions regarding the use of Compact On Close

    I seem to remember reading some years ago that the use of "Compact on Close" should be avoided because it could cause a file to become corrupted. Is this still the case or is my memory failing me, once again?
  3. bob fitz

    Solved Is Any Event Triggered When Data Is Pasted Into A DataSheet SubForm

    How can I catch when a user "Pastes" several rows of data into a DataSheet Subform?
  4. bob fitz

    Solved Disable the setting of AllowBypassKey property from another db

    Does anyone know of a way to prevent the setting of the AllowBypassKey property being changed by another db
  5. bob fitz

    Solved Compact And Repair Error

    Can anybody tell me why I get this message box when trying to Compact and Repair the database. It is not split. It is on my machine. I am the only user>
  6. bob fitz

    Ukraine

    A little surprised that nobody has made any comment (that I've seen) on the recent events in Ukraine
  7. bob fitz

    MERRY CHRISTMAS EVERYONE

    MERRY CHRISTMAS EVERYONE ☃️
  8. bob fitz

    Wireless Access

    How well would an Access frontend work with an SQL Express 2019 backend if the linking had to be done wirelessly? I've developed many split apps but I've never had to use anything other than Access for both ends. SQL Express would be a new adventure :eek:. Should it be fairly straightforward...
  9. bob fitz

    Problem with NotInList event

    I have the following code in the NotInList event of an unbound combo box but the combo doesn't recognize added data unless it is selected from the list. It just repeats the message saying that the new data is not in the list :unsure:. I have also attached a db to illustrate the problem. Private...
  10. bob fitz

    Last Night

    Last night I grilled a chicken for over two hours......and it still wouldn't tell me why it crossed the road 🤣🤣
  11. bob fitz

    Solved Handling data from a spreadsheet

    In my app I have a table called "tblHistoricalDataMASTER" that is derived from a spreadsheet. It has data about the price of shares e.g. ID Open High Low Close Ticker StockDate2 1 42.049999 45 38 38.23 FB 5/18/12 I have written a function that steps through this table and writes the...
  12. bob fitz

    Solved Disable Red Cross Puzzle

    Please forgive me if I'm just having a "Senior Moment". They seem to be getting more frequent with every passing day :rolleyes: Some years ago I found/copied/wrote some code to disable the use of the Red Cross in an app, forcing users to use a Quit button on a form. Naturally, I can't find...
  13. bob fitz

    Confirm Print

    If you have a button on a form which sends a report to the printer, is there any way to establish whether or not the printer worked correctly.
  14. bob fitz

    Undefined function 'Nz' in expression

    Can anybody explain why I get the error message in this thread title when I try to open query1 of the attached db. The SQL for this query is:SELECT Table1.ID, Nz([Num],0) AS n, Table1.txt FROM Table1; DB attached Thanks in advance
  15. bob fitz

    NotInList Problem

    Can someone please look at this and tell me what I'm doing wrong. The code adds the NewData to the table but I get a message which tells me, "The text you entered isn't an item in the list" Private Sub cboCusFilter_NotInList(NewData As String, Response As Integer) Dim rec As Recordset If...
  16. bob fitz

    Thoughts and comments on this set up

    MySQL backend residing on Azure. Single Access frontend on MS OneDrive which will be shared by five or six users. Two or three of these users will be away from the main office and using the shared front end on laptops. Would be interested to hear any thoughts or advice on this setup.
  17. bob fitz

    Anybody used Access app with "Remote Access" software like Team Viewer

    Hi folks Has anybody used an Access app with "Remote Access" software like "Team Viewer" or "Go To My PC" and if so, what was the experience like? Thanks for taking an interest in this post. Bob
  18. bob fitz

    Run App on a Data Stick?

    Just wondering if anyone has tried using an access app on a data stick. Any one have any pros and cons or opinions on its success.
  19. bob fitz

    Error with DoCmd.RunSavedImportExport

    Using Access 2016 DoCmd.RunSavedImportExport "UpdateCo" Anybody know why this line of code would cause the following error: Run-time error '31602': The specification with the specified index does not exist. Specify a different index. 'UpdateCo'.
  20. bob fitz

    Import data from excel.xlsx

    Is it possible to import data from an Excel.xlsx file into Access 2013 if you don't have Excel application installed.
Top Bottom