Search results

  1. khodr

    Automatically finds the open record and insert todays date

    If I under stood you correctly you need then to add the following line to the previous code code: DoCmd.GoToRecord , , acNewRec Then it should work Good luck Join my group and let's learn group name is ( The New To Access Group )
  2. khodr

    Disable Title Bar Minimise, Restore and Close Buttons

    the thread is little old, but i was searching and i found the solution on microsoft website, I don't know if you solved the issue but I will just paste the link here incase other users are looking for this solution, I did it on my database and it works fine. the link is...
  3. khodr

    Combobox default- works but gives error at the same time??

    I don't know exactly what for is your combo, maybe if you write more information I can try buildup the code and test it for you... :)
  4. khodr

    Dispatching Database

    Hello Rickey, you are in the right way, you should have be and fe, and then you dispatch your fe database as accde file to users where they can use, first you need to setup a customized login and logout procedure, your users table should have, ID, UserID, UserName, UserPass, UserStatus...
  5. khodr

    Dispatching Database

    Hi Rickey, are you planning to have users in this database entering information via the network? be specific so the guide will be more easy.
  6. khodr

    Combobox default- works but gives error at the same time??

    sometimes i get this kind of problems and when everything is going fine in the form i just point the code to exit on error, try and set your code as: Private Sub Form_Load() On Error Goto err_handler CounterNum = rs_getCounter.Fields(0) CounterNumCombo.Column(2).DefaultValue = CounterNum - 1...
  7. khodr

    Set ComboBox Default Value

    Hi berg, sometimes I had this kind of Problems normally I don't set the value from the combo box in the form, i always set it from the table designer on the properties of the field, did you try that?
  8. khodr

    Question Who is using my database on the Network

    I will do it the simple way, I designed the database to work as back-end & front-end my front end is accde file, after I write my codes I compile it and the I convert the front-end after routing the back_end on the server then I give the updated front-end accde file to the users. Now what I will...
  9. khodr

    Question Who is using my database on the Network

    You are really a great help, the_Doc_Man I understood exactly what I have to do now and that will be great as far as I am the database creator so I can control every form and write whatever code fits with the mechanism of logic ahhhh how I didn't think about this before, but you taught me a lot...
  10. khodr

    Question Who is using my database on the Network

    Yes Sure, I have a main application form (the Parent form) it will launch within the application loading and then every user has to enter his name and password, and I already made a Level for users, to direct them to user panel as per their user level. I will go through the link which you...
  11. khodr

    Database shared with multiple users

    Hi Zbird, Benifits of Spliting Database, a) you can copy the Front End and change the Codes while others are working normally on the old one and after you update your Front End you can link it back to your Back end and all the data is there up to date, b) if any user deleted the Front End by...
  12. khodr

    Question Who is using my database on the Network

    Hi, I am new to this forum, I am an access database developer, am not that high level expert but I can do enough to let it work, My question is, I need to know who is using my database, Kick users, and restrict another from using, I have an access database which is running on the Network and I...
Back
Top Bottom