Recent content by Malkavian

  1. M

    DB security on a shared networked Drive

    Some people do not have the freedom to surf forums like others. I'm forced to use 97' without any patches or upgrades and as a result, I've learned my problem has no solution. Thanks Len for your help unlike some. - Malk
  2. M

    Is it possible ?

    I'm stuck with using 97' and yes it is a number with the value of 0009500. - Malk
  3. M

    Is it possible ?

    Is it possible for access to recognise "0009500" as a value? If so, how can this be done. - Malk
  4. M

    How do you auto generate a number?

    Private Sub Serialtxt_BeforeUpdate(Cancel As Integer) Dim i As Long Randomize ' Initialize random-number generator. i = Int((900000 + 1) * Rnd + 100000) Do While DCount("ID", "Check Requests", "ID = " & i) ' "Check Requests" is the table name. i = Int((900000) * Rnd + 100000) Loop SERIAL...
  5. M

    DB security on a shared networked Drive

    Thanks Len, I've sent it. Anyone else have any input on how to resolve this problem? - Malk
  6. M

    DB security on a shared networked Drive

    I've created a database on put it on a shared network drive. I have several people who will need to use this database but I dont want some of them to be able to edit the database in anyway. Ive tried creating individual user accounts for the database but I don't think I'm grasping how the...
  7. M

    How do you auto generate a number?

    Random because its a check number and im dealing with 30,000+ individual cases. How do I "seed" or format the field to a positive 6 digit number? And can the randomisation be done? - Malk
  8. M

    How do you auto generate a number?

    If I use an autogenerated field option... it creates numbers in excess of 6 digits and sometimes the value is negative. Id like to generate unique six digit numbers of a positive value. - Malk
  9. M

    How do you auto generate a number?

    I would like to create a form that generates a random 6 digit number when creating a new record and then use this number field as the primary key. Only thing is I'm not too good at the coding. Can anyone help me? - Malk
  10. M

    Displaying Date in a txt box after Check Box is selected.

    Actually it's weird but it accepted your original forumla for the date now... Thanks again. - Malk
  11. M

    Displaying Date in a txt box after Check Box is selected.

    Ok, I figure out why the date wasn't populating aswell.... Again i missed the name. All is well except it doesn't like "" as a result of a false reponse. It needs something. So I've "__/__/____" for now. Thank you sooo much Selena! If you figure out how to leave a blank entry for the date let...
  12. M

    Displaying Date in a txt box after Check Box is selected.

    Ok... i discovered one of the 5 boxes was labeled incorrectly which prevented the final box from checking. After correcting that, the final box now checks if in any sequence all 5 boxes are checked. However, it does not populate the date when all 5 boxes are checked and the final box is...
  13. M

    Displaying Date in a txt box after Check Box is selected.

    Ok I set it up but still whilst checking all 5 boxes, the final box does not check. I've attached the db so you can see. Change the ext to .ace to decompress. - Malk
  14. M

    Displaying Date in a txt box after Check Box is selected.

    What sub do I place this under? When under general declarations nothing happens. - Malk
  15. M

    Displaying Date in a txt box after Check Box is selected.

    If notecompck & mortcompck & asscompck & tpcompck & inscompck = true then filecompck = true. else filecompck = false. if filecompck = true then filecompdate = date else filecompdate = __/__/____ - Malk
Back
Top Bottom