If you are converting the (DOS) QBASIC program to Microsoft Access Application BASIC, there is no direct equivalent (Windows) behavior for those (DOS) PEEK and POKE actions.
What you must do is understand what the PEEKs and POKEs were actually doing (reading/writing characters on screen, messing with the DOS or BIOS data areas for some reason or other, like time delays or such, or something else) and program the functionally equivalent activity with new Application BASIC code in your Access program.
There is no peeking or poking memory in a windows program. It is not allowed by the operating system, and the same effects DOS users got by doing so cannot be done by directly accessing memory in Windows anyhow.
- Chuck Somerville