Search results

  1. V

    Make ACCDE For Multiple Users

    the senior developers should assist the newbies instead of pointing out posts which will lead to nothing. There are many comments about the post and my comment on other form but not a single comment regarding my question. As mentioned in my intro post i mentioned few names that are always...
  2. V

    Make ACCDE For Multiple Users

    I have created a database and want to distribute the database over network. Is there something that i want to do so that there will be not data loss of duplication as the same database will be used by two or three users means they will be entering data in the same table. kindly guide.
  3. V

    Access Report Based On Multiple Criteria

    what changes are required now ? the code is working fine for me. If i missed something let me know :)
  4. V

    Access Report Based On Multiple Criteria

    did what you said but the old macro is still not working. i have written a vb code from google search and its working. Private Sub Command47_Click() If IsNull(Me.clasS) Then MsgBox "Please select a server." Me.clasS.SetFocus Else DoCmd.OpenReport "AttendanceLog", _ acViewPreview, _...
  5. V

    Access Report Based On Multiple Criteria

    what will be easiest solution ? cant chagne and relink the whole db. kindly tell the easiest soulution accordint to the current situation i have on db. thanks
  6. V

    Access Report Based On Multiple Criteria

    i have attached the db.
  7. V

    Access Report Based On Multiple Criteria

    the first part of the macro is running fine if i enter it seperately. [atdate]=[Forms]![student_attendance]![dates] the part after the AND is creating blank report/result [stclass]=[Forms]![student_attendance]![class] and ultimately if i combine both of these via AND clause the report opens...
  8. V

    Access Report Based On Multiple Criteria

    not working i have attached the screenshots after updating the macro code. also let me know what should be the record source of report? the actual table where i am saving attendance log or the query which is selecting the records?:confused:
  9. V

    Access Report Based On Multiple Criteria

    ="atdate = #" & [Forms]![Student_Attendance]![dateS] & "# And somefield = '" & [Forms]![Student_Attendance]![clasS] & "'" i have ammended my code as per your code given above and here is my code after adding the value ="atdate = #" & [Forms]![Student_Attendance]![dateS] & "# And stclass = '"...
  10. V

    Access Report Based On Multiple Criteria

    I am trying to open an access report based on two criteria on my form. here is the macro i am using. ="atdate = '" & [Forms]![Student_Attendance]![dateS] & "'" for a single criteria it is working fine. but i am unable to add multple criteria for report. Here is the code i wrote for multiple...
  11. V

    sorting calculated field access report

    the error i posted is the result of same steps you are mentioning
  12. V

    sorting calculated field access report

    am i doing it right ? Private Sub Report_Load() Report.OrderBy = "[termttl]*0.4 + [stmttl]*0.6 Desc" End Sub
  13. V

    sorting calculated field access report

    dnd't got your point :confused:
  14. V

    sorting calculated field access report

    i have a calculated field in access report and when i sort report on that field it gives me this error. Operation is not supported for this type of object the field is from a table where it is calculating average of 3 other fields.
  15. V

    Count Specific Data on report

    i am using switch statement on report to define a criteria. Here is the switch statemtn code i am using...
  16. V

    Disable Ribbon, Buttons, Navigation

    will give it a try and let you konw
  17. V

    Disable Ribbon, Buttons, Navigation

    Finally i have completed most of my form design and code and now i want the form to be loaded without any menu or ribbon of access. Also i want to disable message when entering a data into table via query. So what type of code or action/s i need to achieve the task?
  18. V

    Attendance Sheet Format

    [SOLVED]: Attendance Sheet Format finally i figured it out. here is the code that worked for me. Private Sub present_Click() DoCmd.SetWarnings False DoCmd.RunSQL "UPDATE dbo_adm SET dbo_adm.attype = 'Present'" DoCmd.SetWarnings True Me.Requery...
  19. V

    Attendance Sheet Format

    i need a button that can chage the comboBox value to Present before the user can mark the attendance
  20. V

    Attendance Sheet Format

    I am attaching two images of my form and also written some requirements on those images. The mark all button on the form is marking all the stuent present and saving in Attendance log tble. But my requirement is still the same that i want a button on the form that can change the status of all...
Back
Top Bottom