Search results

  1. J

    Question MS Access and Barcode Scanners / Barcode Label Printers

    I am thinking of implementing barcode scanning in one of my Access 2010 databases. It currently prints out barcodes using font but I would like to improve on that further. 1) Barcode Scanners Am I right in saying that these devices should work the same as any HID devices? I.E once scanned it...
  2. J

    Best excuses for a sick day

    2 words. Explosive diarrhea. I should be really using up my work from home priviledges but unfortunately that's causing aggro in the office :(
  3. J

    Question Using IIF Statements in Access

    Upload what you have and I'll see if I can fix it :)
  4. J

    Question Book recommendations

    I am currently testing upgrading our database backends to SQL 2012 express. It's all still very early stages but I would very much like to lear more about this. I would like to say I am fairly proficient with MS Access (07/2010) and also have good enough grasps of programming (C/C++ and VBA)...
  5. J

    Suddenly "Method or data member not found" came up

    Check your form is the object "PalletNo" exists. Also looks like you got an extra ' somewhere.... try "',palletno = '" & Me.PalletNo & "',palletcmnt = '" & Me.Comment _
  6. J

    a friend in need is a friend indeed

    Welcome :) Are you a developer or a poet? :)
  7. J

    Trouble with form input

    Try populating your tblParts with some data. Populate all tables with data actually and retest. It's to do with your Referential Integrity check. So no record in tblParts means you cannot add new record in tblCalculation.
  8. J

    Question Upsizing from Access 2010 to SQL 2012 Express? [Split FE/BE]

    Indeed. I'll have to add that JET is pretty good at most stuff that I throw at it but when the data + users increase SQL is the way forward. Need a bigger dev team though to undertake this task :P
  9. J

    Query too complex - Acces 2007 (SP3)

    Glad I am able to help :)
  10. J

    Query too complex - Acces 2007 (SP3)

    Well normally I'd just run a query to return the results of the tables individually and visually check if there's not null fields. You can write a custom query too if you have a big table :)
  11. J

    Question Using IIF Statements in Access

    Try this : 1) Create new form and set your table as teh recordsource 2) Create 3 textboxes with date checked, vip pass and vip fail date as their control source. You might want to create a combobox with Yes/No for "VIP Pass"... 3) Select the textbox for VIP Pass and create a code for the...
  12. J

    Query too complex - Acces 2007 (SP3)

    From experience this could be caused by a null value in the union joins... check that none of your tables are returning null.
  13. J

    Question Using IIF Statements in Access

    Try : SELECT [Standards Check record].[Date Checked], [Standards Check record].[VIP PASS 1], [Standards Check record].[VIP Fail date] FROM [Standards Check record] WHERE ((([Standards Check record].[VIP Fail date])=IIf([VIP PASS 1]=False,DateAdd("d",90,[Date Checked]),"")));
  14. J

    Question Upsizing from Access 2010 to SQL 2012 Express? [Split FE/BE]

    Wow... it seems that if we do go SQL I would have to basically re-write 80% of the FE as most if not all the queries are formed for JET... Just not something we have the resource to do at the moment but from now on I will be careful in designing new databases to make sure it's very SQL compatible.
  15. J

    SQL Newbie Question - Basic understanding

    Glad I've found this thread. I'm experimenting with implementing an SQL backend/Access FE but still learning how to update the queries and my database is split into FE/BE at the moment. One problem is my queries somethings use custom fucntions and also input from form textboxes so I'm not sure...
  16. J

    How link a table on a shared drive to a database for multiple users

    There other thing I would also check is that you don't open the database in "Exclusive" mode. If you are using Access 2010 this option is under Access Options > Client Settings > Advanced. Changed it to Shared and also consider Default Record locking to "No Locks".
  17. J

    Question Upsizing from Access 2010 to SQL 2012 Express? [Split FE/BE]

    Changing name works! Although I need to tidy up some of the code especially ones using DAO/ADO stuff but at least it works! Just have to figure out how to avoid changing names during upsizing as some of my databases has over 30 tables :P
  18. J

    Question Upsizing from Access 2010 to SQL 2012 Express? [Split FE/BE]

    I'll give that a shot after lunch but I don't think it will be that easy ;) It seems that it'll be easier if upsizing from non-split DB instead. I've Googled and so far can't find any good answer to my conundrum... It will definitely be hard work if I have to redesign the whole front end...
  19. J

    Question Upsizing from Access 2010 to SQL 2012 Express? [Split FE/BE]

    Hmmm do you mean something like : dbo.tblCustomers -> tblCustomers (orignal name) ? Not sure you if you rename SQL tables that way within Access?
Back
Top Bottom