Search results

  1. R

    Login Authentication and access control in MS Access-2010

    hi may you split the db into Front and backent. In back end you can keep all the tables and in front end you may use different controls like froms, reports etc based on privilage to want to assign and can have read only access.
  2. R

    Question Accounting System in Ms-Access

    hi better send the table structure or db itself for better answer as it is not clear from the details
  3. R

    Error 2759 in Access 07 run time

    hi try by making making a new accde / mde from mdb itself in the pc you want to use. i thonk this will solve the issue
  4. R

    Hide/Show Subform based on value in main form field

    hi, actualy I am not clear about your requirement. whether you want to check all 4 textboxes or either anyone them. I dont have any idea about structure and data of the of the table. however, i would suggest you to send the DB along with your clear requirement to suggest right a solution
  5. R

    Different User IDs for Same Date, but Not Same User ID for Same Date

    hi, I think at table level this is the only solution available. if any other solution availabe, let me also know
  6. R

    Different User IDs for Same Date, but Not Same User ID for Same Date

    hi, make userid and date as primary key in tblDailyReport. this will fix your problem enjoy
  7. R

    Combo Box view help

    hi in the property of combo, select column count as 2 and column widths as 0";2"(desired width). this enable to add code to the table while display will be only description enjoy
  8. R

    Adding data to a table from an unbound form using VBA

    hi, it will be better to create an another table in which u can store category and range and use this date for Combobox instead text box and update the desired table with a sqlstatement on afterupdate event this combobox enjoy!!!!!!!!!!
  9. R

    Hide/Show Subform based on value in main form field

    hi, it is not cleare that all the 4 field u r reffering is used making the subform visible or not. however, in the afterupdate event of the field, take the value into memory varial and use dlookup function to find the value in the DODAAC table. use if condition to make form visible if found...
  10. R

    Help with expression builder for complexed calculation

    hi, you may try "select case" method. case1 - 1 st conditionm case2 - 2nd condition, case3 - 3rd condition. end select
  11. R

    1 form updating multiple tables

    hi very simple. if these 3 tables are linked , create a view and place the filelds in the form which will enable to update all the three tables at a time
  12. R

    Display required data in subform help required please

    hi, link your manin form with all 4 four subforms by your common id like shop order number
  13. R

    VBA - SQL Help required

    hi philben thank you very much
  14. R

    VBA - SQL Help required

    hi vbainet thank you very much
  15. R

    VBA - SQL Help required

    hi uncle gizmo thanks --------------------------- Microsoft Office Access --------------------------- >>>UPDATE TblEmpSch INNER JOIN tnassign ON TblEmpSch.EMPNO = tnassign.token SET TblEmpSch.'week1' = [TNASSIGN].['wk1'] WHERE (((Tnassign.'wk1')!= 'na' )); now i changed the code to...
  16. R

    VBA - SQL Help required

    Hi all, I have a small prob which i am not able to fix. while executing this code the following error message is give Private Sub Command5_Click() Dim asql As String DoCmd.SetWarnings (off) DoCmd.OpenQuery ("aqryEmpsch") DoCmd.OpenQuery ("aqrynassign") DoCmd.OpenQuery ("aqryleaveadd") Dim...
  17. R

    Help in query required

    Hi all, It is nice to be a part of this forum. i have a small problem for which help is required. I have a db and through which a query, a multi line, is generated where i have current and next assignments placed under each date(week) Colum. for look ahead plan and decision making process...
Back
Top Bottom