Search results

  1. pbaldy

    What IS this left-over from a rental house? Cable, modem, router, alarm system, what?

    Keep in mind I mentioned we use the TV's remote. In addition to the up/down/left/right buttons around the OK button, it also has channel and volume up/down buttons. Those are the ones that work to change channels.
  2. pbaldy

    What IS this left-over from a rental house? Cable, modem, router, alarm system, what?

    We have YTTV and can use the up/down buttons on the TV's remote to change channels. There's also a last channel feature, though it's a bit hidden.
  3. pbaldy

    What IS this left-over from a rental house? Cable, modem, router, alarm system, what?

    Go outside and take pictures of them and their license plate, send to @moke123 :devilish:
  4. pbaldy

    Where and what were you doing on 9/11/2001?

    I lived in NV but was in Monterey, CA with my wife at a small gathering of her family. We were all talking, playing cards and such with no TV or radio on. We didn't find out about it until we got in the car to head home and heard about it on the radio. This would have been 5-6 hours after it...
  5. pbaldy

    Introduce myself

    Welcome Jeff!
  6. pbaldy

    Data type mismatch in criteria expression for opening a recordset

    The correct delimiter for a date field is #.
  7. pbaldy

    Solved Form Combo Box Doesn’t Store Selected Value (Foreign Key Issue)

    By the way, you may not realize you're not seeing the entire SQL string in that row source. If you copy it you'll see: SELECT [Unit Kerja Peserta].[ID Unit Kerja], [Unit Kerja Peserta].[Nama Unit Kerja] FROM [Unit Kerja Peserta] ORDER BY [ID Unit Kerja], [Nama Unit Kerja]; FROM [Peserta...
  8. pbaldy

    Solved Form Combo Box Doesn’t Store Selected Value (Foreign Key Issue)

    The error is not on the form, it's in your table. The row source on the lookup tab of that field is invalid. For one thing, there's a stray semi-colon before first FROM. Not many of us use that lookup field feature: http://access.mvps.org/access/lookupfields.htm Edit: Sorry, second FROM.
  9. pbaldy

    Old Newbie

    Welcome John!
  10. pbaldy

    Solved Store data from text box to control source

    Read the first sentence of my post again.
  11. pbaldy

    Solved Store data from text box to control source

    You would need to use the update events of the 2 controls that feed the calculation. As you've found, the update event of the control with the calculation doesn't fire.
  12. pbaldy

    Quick Intro

    Welcome aboard Ricardo!
  13. pbaldy

    Introduction

    Welcome Andy!
  14. pbaldy

    Introduction

    Welcome Heide!
  15. pbaldy

    Elon Musk - Tesla - FSD

    Completely agree. A Tesla in our area in self-driving mode failed to merge out of a lane that was ending. Drove up on the curb and had a close encounter with a pole. Never slowed down or swerved.
  16. pbaldy

    Coding Challenge

    My first thought isn't code, it's a query against a table with the 36 values, getting a Cartesian product. A quick example using a table with the 24 hours: SELECT tblHours.StartHour, tblHours_1.StartHour FROM tblHours, tblHours AS tblHours_1 This produced the expected 576 records.
  17. pbaldy

    Solved Dmax not working

    You've reversed the arguments: https://www.theaccessweb.com/general/gen0018.htm
  18. pbaldy

    Hi, Introducing myself

    Welcome aboard!
  19. pbaldy

    MS ACCESS connect to SQL server BE: Authentication Prompt every time I attempt to

    I've been using DSN-less linked tables for awhile, but if memory serves when you link a table via the ODBC data sources, there's a checkbox somewhere along the line that lets you save the password.
  20. pbaldy

    Hello! From one huge nerd to another!

    Welcome aboard!
Back
Top Bottom