Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 67peshawar294

    Who has the largest Access Database in terms of objects (forms etc)???

    Moss100, probably not "huge," but the mdb db I created for work 25 years ago in Acess97 ( started out as a Condor db) has; 34 tables, 76 queries, 65 forms, 37 reports, 14 macros and 19 modules. accdb size is 6,235 megs. I retired in 2009 and still use it as an accdb for reference. I've never...
  2. 67peshawar294

    LISTVIEW AND EAN BARCODE

    I always thought, "If you can compute it don't store it.
  3. 67peshawar294

    LISTVIEW AND EAN BARCODE

    strongm, I guess I was. Seems he could create a form and use the Function().
  4. 67peshawar294

    LISTVIEW AND EAN BARCODE

    sal21, Yes, I saw your image. DId you follow the instructions? This was done about 20 years ago. This is my UPC-A, but exactly the same as the method for the EAN13. (Different font for the UPC-A. I made a "Top Number" font for space purposes.) I don't know what else you would looking for? Here...
  5. 67peshawar294

    LISTVIEW AND EAN BARCODE

    sal21, copy the Function() and place in a module. Name the Module EAN13. Install the Font "Code EAN13.ttf" In the Control Source for "CODICE" place, =upcean13([BARCODE]) Change the Font to "Code EAN13" and Font size to your liking around 36 for about a 1.5cm height. Here is the Function()...
  6. 67peshawar294

    LISTVIEW AND EAN BARCODE

    sal21, EAN13 is a 13 digit number, 12 digits and a checksum. If you want EAN13 there is a site that has the Function() and font. The free function is writen in French. I had no problem, many years ago, copying to a module and installing the font. I wrote a function and designed a font for UPC-A...
  7. 67peshawar294

    Programing a Function 1st time

    timhans, Important to remember about functions, don't name the "Module" the same as the "Function." If your "Function" is Clearall() then the "Module," for example, should be named Allclear, or Clearall1. jim
  8. 67peshawar294

    IE 8 stops responding

    dtracy, yes, think 1 meg is correct but i have no trouble with any programs. Even running several at once, and they still function correctly when ie8 stops responding. I thought it might be a virus when it first occured. That's why I thought I should post my problem here, in case anyone else...
  9. 67peshawar294

    IE 8 stops responding

    grenage, Yes, i have considered that. The fact that i have a integrated video card is the one thing that holds me back from adding any upgrades to a 5 yr old computer,(I score 1 on vista rating.) I have a notion to crash the hard drive so my wife will let(ha,ha) me get a new computer. jim
  10. 67peshawar294

    IE 8 stops responding

    Hi, I mainly use the Barcode forum. For the past few months, have had an issue with Vista and IE8. I upgraded my xp machine, with 768megs of ram, to vista home basic and IE8 hangs(after viewing, for example, the Weather Service site with java displays, and then clicking to my facebook page or...
  11. 67peshawar294

    How to create barcode

    tomik, This site has many free modules for bar codes, including 2 of 5. A litle knowledge of code required. The modules are in English and French. Hope this helps you http://grandzebu.net/index.php?page=/informatique/codbar-en/codbar.htm jim
  12. 67peshawar294

    EAN UCC 128 encoding for AI 420

    cfdave, try this site. I'm not sure if it is what you need, but it explains the 128. http://grandzebu.net/index.php?page=/informatique/codbar-en/codbar.htm
  13. 67peshawar294

    barcode printing

    V5652, Which barcode type do you want to print? There are many and each has a distinct format for configuring lead chr, chk digit and end chr. Especially if you want to use the 2D barcodes. Also, you need a font or dll to convert the string to printed barcode symbol. Here is a site that I have...
  14. 67peshawar294

    How to use EAN13 module in Access 2003 reports

    graham, Happy to hear you got it working. Glad to help. jim
  15. 67peshawar294

    How to use EAN13 module in Access 2003 reports

    graham, I am just fooling around with my ean13, 99.9% of ours are UPCA and I just have the ean13 figure it out for fun. My scanner automatically converts the EAN13's to UPC-A's.(I guess they are going to convert all UPC-A's to EAN13 sometime in the future, unless RFID takes over.) The size of...
  16. 67peshawar294

    How to use EAN13 module in Access 2003 reports

    graham, Don't forget to name the function different from the module. If your module is ean13() then the function in the module should be UPCean13() or any other name besides "ean13". change all the references in the module to reflect "mynumber." Example: Function upcean13(ByVal mynumber) If...
  17. 67peshawar294

    How to Add a return to barcode scan

    balin, As long as each scan is a EAN-13 you can use an "input mask" for your EAN13 text box. I use one in my upca and it works without problem. try: 0000000000000;0;@ and see how that works. jim
  18. 67peshawar294

    Free Barcode Software

    gi, Try this site. http://grandzebu.net/index.php?page=/informatique/codbar-en/codbar.htm It has everything you need, codes and fonts for all the common barcodes; upc, ean, 128, 93, pdf417. IF you are at all familiar with VB it is a snap. jim
  19. 67peshawar294

    ComboBox Default Value Issue

    puforee, open the properties of the combobox and under "Default Value" enter the row number of the "primary key value" of the value you want. jim
  20. 67peshawar294

    Hide a Form Field based on entry in another Form field

    endof, In the "On load" event of your destination form: (Remember, the text in quotes is case sensitive.) Select Case Form!myform![country] Case "Mexico" forms!myform![textbox1].visible = false forms!myform![textbox2].visible = false Case "Canada" . . . Case "Denmark" . . . End Case if you...

Part and Inventory Search

Back
Top