Search results

  1. Minty

    Solved Log out when database closes using X

    Presumably you know the log in ID of whoever is logged in? You need to use that as criteria for that update statement, otherwise it will simply update everyone (as you have discovered). I suspect you also want to record that same ID in your login sessions table so you know who has logged in...
  2. Minty

    Show parent child linked records via VBA

    You'll probably need to create two recordsets, one of the Parent data and one of the child data, and loop around the Parent data, and then pull in the matching child data. If you genuinely only have one child record per Parent record then it may be easier in a single recordset.
  3. Minty

    Good day friends

    Welcome to AWF !
  4. Minty

    Solved How to access the server resources from the internet on a different network

    After you have tested it... I suspect you won't get anywhere if your network has any sensible security settings. The only way this might work is if you installed a secure VPN and log into it from the other networks.
  5. Minty

    Northwind2 caculating invoice line?

    I would disagree depending on how you are actually storing the ancillary order information. If you are creating multiple line item invoices, I personally wouldn't want to store the PO, Contact Details, Order delivery instructions et al. on every line? That seems very wasteful on storage (which...
  6. Minty

    VBA CODE TO SUM 5 FIELDS WITH LOWER VALUES IN ACCESS DATABASE

    Welcome to AWF. Two things - is this a class assignment? And show us your table structure, because if it's laid out as above you have much more serious problems with the way your data is stored.
  7. Minty

    Fire on the mountain

    Wow, that's a really serious wildfire. I hope nature can contain it or put it out as I doubt us poor little humans can.
  8. Minty

    Northwind2 caculating invoice line?

    You have to store the VAT per line, as the line items might have different vat rates. No choice. For a suppliers invoice I would record the VAT they charged per line regardless of the calculation. Using one form for both would be problematical, but not impossible. I'm not sure I would go down...
  9. Minty

    Solved Equation: If it isn't an error and it isn't Null yet it has no value, what is it?

    You need to check the record count in the subform first, something like If Me.frmOrderAddEquip.Form.Recordset.RecordCount = 0 Then ...
  10. Minty

    Solved Tempvars username not displaying on subsequent forms

    But, if it was simply ticked by default in new databases, it wouldn't cause a problem in existing ones? And noobies would get an obvious error in their code?
  11. Minty

    Amazon as a retailer in non-US countries

    We had no issues with Amazon returns, and we use them a lot, but always price check, and check the supplier direct if possible. UK based, and Amazon are very helpful normally.
  12. Minty

    Solved TextBox rendering issue (possible a bug)

    Have you tried removing any internal margin settings: I have seen some odd effects, particularly on combo boxes, when these are anything other than 0 and coloured backgrounds are used. They might be exacerbated by the scaling in the environment.
  13. Minty

    Data Type Mismatch in custom function

    You have a typo in your function Interal = "m" But suspect that might be an editing issue rather than you source of your problem. When you remove the criteria, sort your results on the calculated expiry date (ascending and then decsending , and see what you get. If you can't spot the error...
  14. Minty

    Solved Require minimum # of character in unbound field

    That will restrict you to exactly 6 characters. If it's an unbound form then in the "Change Password" command button use something like If Len(Me.MyNewPasswordControl) < 6 Then msgbox "The new password supplied is not long enough",vbInformation,"Check Password"...
  15. Minty

    Solved Cannot post a reply,.

    I suspect it's links, even to other posts. You can't post links until you have a 100 posts to prevent spammers / advertising.
  16. Minty

    Unable to create .accde

    I wouldn't mess with that - it's used as a temporary store for the data whilst Access is doing the compact and repair. It sounds as if you have it set to compact on close, which isn't generally considered good practice?
  17. Minty

    Unable to create .accde

    The DATABASE.mdb file is normally created when a compact and repair is run on close.
  18. Minty

    Font List in font style

    Try displaying a report in a form, that would possibly work as you can change the font per detail line in the format event?
  19. Minty

    Emmanuel Katto Dubai : How to Create Professional Form Styles in Access

    @emmanuelkatto , @emmanuelkatto23 , @emmanuelkatto24 You are going on my ignore list as you have failed to respond to any of the answers provided in any of your myriad questions. This tends to make me think you are either a bot, or a wind up, or simply here to waste peoples time.
  20. Minty

    Automatic Label Numbering

    I can see a sensible pattern to work with but what I can't see is the source data. In these circumstances it is often better to have two samples - The data you have to start with and the secondly the desired output. So ideally we need two excel sheets - starting data, and expected final output...
Back
Top Bottom