Recent content by RonPaii

  1. RonPaii

    What's your best/worst joke?

    Nixon's Theorem "The man who can smile when things go wrong has thought of someone he can blame it on."
  2. RonPaii

    Laptop slow to a crawl.

    A little reminder to those using laptops. They are very sensitive to the compacity of the power supply. For example, I setup a laptop connected to a dock though a USB-c cable that should power and charge the computer and it worked well. A week later the computer was a complete dog with the CPU...
  3. RonPaii

    Today's Environmentalists Are Really Luddites

    Most shooting in the US are by suicides or people legally prohibited from possessing firearm. Straw purchases are illegal in the US. Armor piercing hand gun rounds are illegal in the US and rifle rounds are mostly illegal depending on the construction and how AP is defined.
  4. RonPaii

    PDFs no longer open in the legacy IE browser control

    I have an old reader installer from 2012 but don't know if it would be legal to upload. Would another reader like FoxIt work?
  5. RonPaii

    How to handle these oversmart Stupids?

    You could always propose working T&M with regular payments. Provide him with the duplicate application followed by each change request. Do not do fixed cost because it will never be complete because your client does not know what he really wants.
  6. RonPaii

    How to handle these oversmart Stupids?

    And tell him you want your rake back.:giggle:
  7. RonPaii

    Syntax error "="

    Value is the default property of the control and it is always integer, you can simplify your code. strStart = Left(Me.Controls("B" & Trim(Int(Me.selAlpha))).Caption, 1) strEnd = Right(Me.Controls("B" & Trim(Int(Me.selAlpha.Value))).Caption, 1) to strStart = Left(Me.Controls("B" &...
  8. RonPaii

    Windows 11 Slowing Down Database

    Winver on my computer shows Windows 11 version 25H2. You should be able to update and hopefully fix your problem.
  9. RonPaii

    Syntax error "="

    I have a form with a 3 option control named obManu. The values of each option are 3, 2, 1 in the order of the options on the form. The following code gives me the caption. Each option has 2 controls, 1st is the option the 2nd is the label. Though the label has the caption I needed to call the...
  10. RonPaii

    Syntax error "="

    Or simpler Me.selAlpha.Caption
  11. RonPaii

    Raise your hand

    I was called twice. In my county I only need to call the courthouse in the morning for a week to see if I need to come in; never had to go.
  12. RonPaii

    Daily Backup of BE Database

    Single day backup is surprising. Even Windows home edition back does a full backup on 1st backup to device then does differential backups, allowing for multiple days of restore.
  13. RonPaii

    Prompt for name

    I posted a sample in code repository. See sample form for examples.
  14. RonPaii

    Lookup Form

    This is a sample lookup input form. The calling functions takes the same type of input as a combo box. The sample form has 3 buttons opening the form with 2 column value list, a single column query string and a single column saved query. The query list all the reports. The 3 reports are empty. I...
  15. RonPaii

    Runtime Issue

    At the start of your code you delete "NISFeatureData2". Then turn off error trapping in the function Then open the now missing "NISFeatureData2" You may be able to to get away with it in Full Access but the un-handled error will crash runtime. The the delete in the loop can also cause...
Back
Top Bottom