Recent content by Rashid

  1. R

    Opening form move to upper left automatically

    I have created a ms access database for my friend. The login form when I open in my system opens with center position but when I open the same DB in my friends pc the login form opens upper left position. Even it is set auto center. I tried much to solve this problem but I don't succeed. Please...
  2. R

    Don't able to filter subforms

    Sir I am not able to filter the subform
  3. R

    Subforms in navigation form

    How to refer any field of a subform in a navigation form. Like MynavigationF, MySubform, (Field:StudentID).
  4. R

    pie chart issue

    I am using ms office 2013. How to integrate modern charts in ms access
  5. R

    pie chart issue

    Here Total Points Are 5 gained points are 2 i want to show this through pie chart on dashbaord but i am not succeed what mistake i am making ????
  6. R

    Don't able to filter subforms

    i am using macro applyfilter on a button click event. in where field i am using "itemid=Forms! NavigationF! Subforms!searchbox
  7. R

    Don't able to filter subforms

    In ms access DB there is a navigation from with subforms I don't able to use "apply filter" in subforms. I am using where criteria as "Forms! NavigationF! Subforms! ItemId" What mistake I am doing
  8. R

    Pie chart on form

    I have a query with two fields "TotalTasks", "Completed Tasks" I am trying to create a pie chart on dashboard form of my ms access DB. I am not getting the accurate result what is the way to display above data on pie Chart please direct step by step process. I am using ms access 2013. Thanks
  9. R

    DB taking too much time to close

    Please any body help me. this ms access db taking long time to close what is the reason and how to solve this problem ? i am trying to attach the db but it is of 100 mb and not uploading. i compressed to rar and try to attach but rar file is not accepting by the forum so please solve this...
  10. R

    Allowedit property not working

    The code i am using AllowEdits=False on main form not on subform. Is there any other vba code to get the same result.
  11. R

    Allowedit property not working

    In my ms access DB in a form i have a button with code me. Allowedit=False But the form is editable after the clicking button. What is the solution.
  12. R

    Loop for a action

    Actually I need a calendar like form in which I can show event bookings
  13. R

    Loop for a action

    BookingDate Date/Time Field D1 D2 D3 ... ... D31 Here I need when user select a date in booking date field the corresponding field in below text fields change to Booked.these fields are in one table.i have a query with a field Day=date part("d"[booking...
  14. R

    dynamic menu creation

    Public WithEvents menubtn As MSForms.Label Public WithEvents LblBtn As MSForms.Label Dim BtnEve() As New Class1 Private Sub LblBtn_Click() UserForm1.Frame1.Visible = False MyAdd = LblBtn.Name RowNo = Val(Split(MyAdd, ",")(1)) ColNo = Val(Split(MyAdd, ",")(2)) CodeRun =...
  15. R

    Solved Finding specific Record index

    After googling i have got the solution and That is:- Creat a query add a new column RecNo with this Code: RecNo: DCount("transid","feetable query","transid<" & [transid] & "AND STUDENTID=" & [STUDENTID])+1 and in the form in which i need the value place a unbound textbox with the code...
Top Bottom