Search results

  1. R

    Sending print commands in access

    I want to print bar codes in access 2000 reports. I want to use the bar code that's in the Tally Printer I am using. The manufacture suggested this code: 10 REM code 39 barcode 20 LPRINT CHR$(27);"[?11~"; 30 LPRINT CHR$(26);" F3;111";CHR$(25); 40 LPRINT CHR$(20);"*123*";CHR$(20); 50 LPRINT...
  2. R

    Faxing to Exchange Server

    I had in the pass written a program in Access 2000 that would directly output reports to WinFax. It wasn’t the fastest solution but it worked just fine. I no longer have a WinFax Server. So that solution is no longer an option. Is there a way for me to do the same thing with Access 2000 and...
  3. R

    Adding Lines on a report

    I would like to add lines at the end of my report. I have a sign up sheet that prints names, phone numbers, etc. I would like to add about 25 lines on the report so you would see everyone who has signed up and have the lines below for others to sign up. Any help would be greatly appreciated. Roger
  4. R

    ODBC? I think

    We are using Access 2000 as our front end and SQL 2000 as the back end. We use ODBC to connect to the SQL database. One of my access 2000 programs was getting a little sketchy. So I created and new access 2000 database and imported all the modules, macros, reports, queries and tables. That all...
  5. R

    Access loses permissions

    I have an Access 2000 program that gets upgraded periodically that I then copy to users computers around the office. For some reason it loses it’s permissions after I copy it. If I log in to a users computer as Admin and reset permission on the folder and set the program so that Domain\Users can...
  6. R

    bar codes

    I would like to print a bar code on my invoices and then have my delivery drivers run the invoice under a bar code reader when they return from delivering. I know how to print the bar code I am nit sure how to go about interfacing a bar code reader in access 2000. Any thoughts? Roger
  7. R

    Holding down a key to confirm an action

    I would like to prompt a user to hold down a key “D” while clicking ok on a msgbox "ok" for an action to run. I am not sure how you go about checking to make sure the D key is being pressed in code. Any help would be greatly appreciated. Thanks, Roger
  8. R

    no carriage return after printing or line feed

    I am printing continuous labels using an MS Access 2000 report. I would like the printer to stop printing after it’s done with out running to the bottom of the report and wasting labels. Is there a way to tell the printer to stop and with no carriage return? Thanks Roger
  9. R

    Removing double quotes

    I need to write data to a text file. Here is the code I am using. 'Write to text file Dim strList As String strList = 1 Open "c:\Programs\HTML.txt" For Output As #1 Write #1, strList Close #1 The problem I am having is that it's adding "" to...
  10. R

    Access 95 out of memory erorr!

    My xp systems get a "out of memory error" when opening access. I went to Microsoft’s web site and did what they suggested. I downloaded and installed Jet 5.1. This did not work. Does anyone have any suggestions?
  11. R

    Importing execel data

    I need to import a named range of cells form Excel 5 worksheet into an access table. I was hoping to get some sample code I could modify for my own project. I have already looked at the sample cos\de that came with Access. It has been no help for me.
  12. R

    Can't Delete a Form

    I am using Access 95. Lately when I make a new Form it works for a few tries then I get this error message "The Form Name you entered in either the property sheet or a macro is missed spelled or refers to a Form that does not exits. " Well I know the form exits because I just made it and I can...
Back
Top Bottom