Search results

  1. R

    Lookup box

    Combo box Using a combo box will do just that.
  2. R

    Access to EXE

    access As Bob's response indicated you can make a mde file. You can also make custom toolbars where a user only has certain options available to him/her. You can also password protect. A true exe file--No. Do a search on this forum and you should find plenty of info in addition to what was...
  3. R

    Data from previous record

    error the code should be tbl1 not frm1 =DLookUp("[Value1]","tbl1","[IDData]=Forms![frm1]![IDData]-1")
  4. R

    Print each page of a report multiple times

    reports JC, Take a look at this possible solution http://groups.google.com/group/microsoft.public.access.reports/browse_thread/thread/16bb75a46e4241aa/1dab0d2b78e9ef7%231dab0d2b78e9ef7 In this case you would use forecolor instead of backcolor
  5. R

    Time Field 100ths

    time Access stores the time field as 8-byte floating point number. So, setting it to hundredths (atleast to my knowledge) won't work. You could store it as text and then use math equations to interpret it I suppose.
  6. R

    list box with transparent back color

    list box Transparent background...not that I know of. As far as Activex, I avoid using those like the plague.
  7. R

    Query by Form

    forms Does setting your form as a continuous form give you what you want?
  8. R

    Check Box

    check box I don't believe a resize of the check box tick does anything in access 2000 or 2003. Maybe someone here knows if 2007 has that function
  9. R

    Lines in Reports

    lines,lines,lines, ya I believe there is a me.drawwidth= anumber function for thickness. line (0,0)-(100,100),color.............I think
  10. R

    Requery? Need to avoid duplication!

    exists You could use the dlookup function to see if it already exists.
  11. R

    Print Preview isn't what is printed

    points I got an error for a missing reference when opening your form, but no matter. I have never tried printing a report with this format and code. Did you try using subreports instead? Atleast you would now have bound fields.
  12. R

    Difficulties on my form. Help please!!!!

    lock down Sounds like you should look at the allow additions and editing properties of your form.
  13. R

    Page break issue with subforms

    reports Thanks for reporting back Keith. I did not have time to try it but looks like you got it worked out in case the rest of us need this solution at a later date.
  14. R

    Printing a Report

    copy cat Are you able to post your db so someone can take a quick peek at it?
  15. R

    See Attachment file

    Use the force Unfortunately we are not clarevoyent.
  16. R

    Can I do this? Please help

    defs currentdb.TableDefs("table1").Fields("OldFieldName").Name = "NewFieldName" Hope this helps
  17. R

    IIf Function - False condition problem

    iif You must specifiy what you want for your false value. Remove the > in the false part and replace with 0.
  18. R

    Getting data on form to print on report

    invoice number Place the following code first behind the on click event of the command button that prints the report. This will make certain the info on your form is saved before the print statement is carried out. DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70 On...
  19. R

    Page break issue with subforms

    subreports Don't know if this will help, but............. http://www.groupacg.com/ARptTip.htm#SUBR1
  20. R

    Ladies - Need your help please? Guys dont laugh at me! lol

    Ring I work with a young guy in his early twenties. He told me his girl friend wants him to give her a ring. I told him that's OK, pick up the phone and give her a call.:D
Back
Top Bottom