Search results

  1. F

    Binding a key to a form control

    Thanks Bob! I've had a look at the VB behind the DB, but the DB itself doesn't work, it says "the project contains a missing or broken reference to the file 'utility.mda'" - no biggie, the VB should give me plenty of ideas
  2. F

    Binding a key to a form control

    Hey everyone! Hopefully this a simple problem I have a working form with a few subforms that I navigate through. I have my stock record on the main form and quantity details on the subform Basically I want to hard code the + / - keys on the Numpad to go forward/back a record regardless what...
  3. F

    Hiding controls if child/subform has no records.

    I have a form with stock report information and a child/subform of a linked table - tblStocktake the subform is just a standard datasheet view with Master/child linked by ReportID I have buttons which copy data from a previous report to a new report. What i'm trying to do is have those...
  4. F

    append new records to table where record does not exist on table.

    there are 2 fields that have to be unique for the record, StockNumber & ReportID Where it gets tricky is that there are multiple duplicates of StockNumber, but only ever 1 per ReportID, so I can't make both StockNumber and ReportID primary keys - but both together *could* be a primary key.
  5. F

    append new records to table where record does not exist on table.

    I'm having a wee bit of confusion with what I assume is something really basic. I have tblInvoices which contains StockNumber & ReportID I then have an append query which appends StockNumber & ReportID to tblStocktake The problem is that sometimes there are multiple duplicates if the...
  6. F

    SELECT specific via filter or select all if no filter

    Thanks all - that thread was *kind of* what i was after but not the final solution. I ended up creating another query without the WHERE and then put a bit of code to select one query or the other. Private Sub MasterFilter_AfterUpdate() If Forms!frmnavigation!MasterFilter = 0 Then...
  7. F

    Duplicate Record macro stops working!

    hmm - magically it works again, although I didn't do anything. The erratic nature of this problem would suggest it's a bug. :rolleyes:
  8. F

    Duplicate Record macro stops working!

    Morning all I've had a problem with my main data entry form. The form is directly linked to the table - there's no coding trickery or queries. I have a duplicate record button which is the default MS Wizard macro. (the duplicate macro is just runcommand's SelectRecord, Copy, RecordsGoToNew...
  9. F

    SELECT specific via filter or select all if no filter

    Howdy accessians - I have 2 text boxes on my main navigation page - first box selects a country - and the second box selects a report from that country. The second box has a query that is dependant on something being selected in the first box everything is currently working fine - but what...
  10. F

    selecting report to open by Yes or No

    Update: Problem solved Debug.Print reporttypereturned the values of 0 or -1, so I just update my code to use the correct values I was also having a problem where by the reports were going straight to the printer and not being viewed; once again it was just a syntax error. Private Sub...
  11. F

    selecting report to open by Yes or No

    To be honest - i'm pretty sure that Yes/No is one of the the simplest things i could of done. I'm basically using one of two reports, some countries use Report A, some countries will use Report B, they'll only ever use one or the other, so i thought a yes/no would be appropriate way to discern...
  12. F

    selecting report to open by Yes or No

    G'day Accessians My Stocktake system has 2 different reports to chose from - one ordered by issue date, the other ordered by type of issue. I've added a simple Yes/No column to my table to decide which report to open. I've attempted to sus out the appropriate VBA but i just can't get it to...
  13. F

    œ symbol on export, require £ symbol

    Thanks Wiklendt! I'll claim credit for putting it in a table - but credit goes to the help received from this forum to actually get it working!!! Great to see another Aussie on here too! :D
  14. F

    œ symbol on export, require £ symbol

    haha - problem solved i see. people on this forum are waaay too quick! :-D
  15. F

    œ symbol on export, require £ symbol

    not sure if it's any help, but i've had problems as I have to deal with many currencies and many number formats. I've had to create a table with explicit number formats for countries I deal with. My reports are coded to use this number format Private Sub report_open(Cancel As Integer) Dim...
  16. F

    ampersand email address not working in PDF

    I dare say the user won't be too happy, but I think option 2 is definitely your best bet! It's highly unusual to have an ampersand in an email address and I'm sure it's more than likely to cause a few more headaches along the line; especially with the sensitivity of some spam blocking systems...
  17. F

    ampersand email address not working in PDF

    I think either / or \ allows you to explicitly state characters that access reserves for other uses e.g..(abc\&def@somewhere.com) I'm not 100% sure - i just remember seeing something like it in my access bible sometime today. I've noticed in a report that if you want to print ampersand, you...
  18. F

    Opening Form from Report

    do you mean it's possible to open a subform from a report but not a form, or do you mean I should create a subform with my report's layout ? It's basically so that if i notice a discrepancy on the stocktake report, i can just double click the item on the report and open the appropriate form to...
  19. F

    Opening Form from Report

    Howdy Just wondering if it's possible to open a form to a selected record from a report? I have a stocktake/report system and what I would like to do is double click the [stocknumer] on the report and have it open on [frmStocktake]. i've been hoping that (reports!report!field) would work like...
  20. F

    Tab between records through only 1 column

    No problemo Cheers Bob for all your help! I'd give you more rep but apparently i've given all that I can for moment :-D Your prompt responses are very much appreciated. Thank you very much!
Back
Top Bottom