Search results

  1. R

    Temporarily disconnect then connect a USB port

    HI everyone! I’ve developed a cash register system for my business. An input device that is connected to a USB port scans the UPC codes, for products sold. A second USB port has a keyboard connected for manual entry of the amount tendered at the completion of the sale. As is, when the...
  2. R

    Inserting Picture / Image

    I would like to thank Rabbie for his help in adding code boxes in my Threads. Now I am now needing help in pasting a picture/image in my threads. Thanks in advance and Have a very MERRY CHRISTMAS.;) Richard
  3. R

    Code Boxes

    I’m not totally familiar with all the gadgets this site has to offer. In particularly I am interested in adding, what it seems everyone knows but me, the boxes with vertical and horizontal scroll bars that can be inserted into threads to fully illustrate code examples. “What I don’t know can...
  4. R

    Playing A Sound File (.wav / .mid)

    HI EVERYBODY! I'm programming an audible cash register that will play sound files when the purchase is completed. EXAM: "Your Total Is Four Dollars And Thirty-Six Cents". I've completed the algorithm for computing which sound files will play; calling each sound file as needed for playback...
  5. R

    Using Shell to open and hide an application

    The shell command can open an application and hide it. lngAppID = Shell(strApplication, vbHide) lngAppID is the numeric value that is returned that references the application that was opened. By keeping track of this value, the AppActivate command can activate the application using lngAppID...
  6. R

    Shell Function

    Ok Ladies and Gentlemen The Shell function opens an executable program using… Private Function OpenPayroll() ‘Open the Payroll program strAppName = "MSACCESS.exe" strPath = "C:\My Files\Private\Payroll\" strAppType = "mdb" strFileName = "Payroll" & "." & strAppType strConCan = strAppName &...
  7. R

    Programming Enter Key Behavior

    Access 2000 In Access the Enter Key can be programmed to either go to the next record or go to the next field depending on the global setting. The setting, which can be changed, using Tools, Options, Keyboard Tab, and selecting “Move after enter” setting: - 1. Next Field or 2. Next record...
Back
Top Bottom