Search results

  1. S

    Sharing a database

    I figured it out!! FYI- thanks for the replies.. I found that the under the Netware properties there is an attributes section with the option to make the file Sharable. Once I clicked that my users were able to access the file at the same time!
  2. S

    Sharing a database

    That's what I have been told but it like I said, everytime a 2nd user tries to access the file, they get an error saying the file is already in use.. All users involved have full rights (including read/write) on the network OS. We are on a Novell network.
  3. S

    Sharing a database

    I want different users to be able to open my database at the same time. My database is on our network server. I thought that by splitting the db into a front end with forms and queries and a back end with tables would do the trick but it doesn't. I set my advanced properites under the tools menu...
  4. S

    Option Group control

    Does anyone know of a function or method that I could use to undo or de-select the user's selection if a certain condition is true using an option group control? I tried using the lock method but it only allows me to Lock the whole control and I don't want to do that. I only want to lock out one...
  5. S

    different colored fonts for item in row source

    Conditional formatting controls. I was going to suggest conditional formatting as well. But as stated earlier, a combo box only has one set of properties. I don't know if it would work for you but you might be able to work with an Option Group.. there you have access to one set of properties...
  6. S

    code that evaluates a control source

    thanks thanks for the reply. The OnCurrent didn't work but it immediately opened my eyes to the fact that I really need to lean more about the different events so that I can figure out where to put certain peices of code.. I actually needed the LBPATH on a different form so I moved it and then...
  7. S

    code that evaluates a control source

    I have a form with a txt box called length_stay whose control source is: =DateDiff("d",[DOA],[DOD])+1 where DOA and DOD refer to date fields on the form. this part works fine. now, if the number that is returned is <=3 then I want another field on this form called LBPATH to =7. I went to the...
  8. S

    Date Calculations

    normally I wouldn't store LOS but in this case I truely need to. I need to store the values of these three fields in one table. once they are in table format, I send the data off to another organization..
  9. S

    Date Calculations

    I would like to subtract two date fields and use the difference for the value of another field in my table... Example: I have one table with 3 different fields: DOD, DOA, and LOS. I want to subtract DOA from DOD and use the difference to populate the LOS field... I have a form where the user...
Back
Top Bottom