Search results

  1. P

    Frame issue

    I am really thankful to all of you.. The problem is solved
  2. P

    Frame issue

    I tried setting both properties and I am still having same issues. I just used frame for presentation puprose without undestanding its implication. The should rather use Labels...
  3. P

    Frame issue

    Please find attached DB. The Fame object is called Frame163. Thanks
  4. P

    Frame issue

    Issue I am using frame for presentation purpose in the form. The frame is in the background and all the text boxes and labels are populated on top of it. When ever I click on the empty portion of the frame, all labels disappears. All I see is values in the text boxes. I think I need to disable...
  5. P

    Problem with Bookmark, Runtime Error: 3022

    Just curious... If I bind text box or combo box control to any control source, I have use that in my code? Thanks in advance
  6. P

    Problem with Bookmark, Runtime Error: 3022

    Thanks a lot. It is working now...
  7. P

    Problem with Bookmark, Runtime Error: 3022

    Here is my Table and Form..
  8. P

    Problem with Bookmark, Runtime Error: 3022

    I tried ur code with slight change as I got data type mismatch Error. Me.RecordsetClone.FindFirst "str([Employee_Id]) = '" & Str(Me.Employee_ID_Text) & "'" If Not Me.RecordsetClone.NoMatch Then MsgBox Me.RecordsetClone.Bookmark Me.Bookmark = Me.RecordsetClone.Bookmark Else MsgBox...
  9. P

    Problem with Bookmark, Runtime Error: 3022

    I am using DAO. Dim Rstest As DAO.Recordset I tried printing values for Me.Recordset = ? and Rstest.Recordset = blank (Null)
  10. P

    Problem with Bookmark, Runtime Error: 3022

    I am getting this error and somehow I can’t figure out what is wrong. All I am trying to do is select Employee_ID (Primary Key) from combo box (Employee_ID_Text). If employee id is found load the employee information. Error Message: Runtime Error: 3022” Changes to you requested to the were...
  11. P

    Dynamically loading another record from table

    Here We go... Private Function Load_New_Employee_Data() Dim SSQL As String Dim Employee_ID As String Dim db As Database Dim rs As Recordset Employee_ID = Employee_ID_Text SSQL = "Select Employee_Last_Name, Employee_First_Name, Resource_Type, Employee_Title, Home_Office_City," SSQL = SSQL & "...
  12. P

    Dynamically loading another record from table

    Hi All, Do any one know how to load new record dynamically in the form from table rather then going sequentially? I have Employee Info Form, it shows all relevant information for given Employee. (See attached Form image). Now when I manually enter another valid employee ID, Before_Update...
  13. P

    Error : You can’t go to specified record

    I am getting following error “You can’t go to specified record” I am validating Employee ID entered in textbox Employee_ID_Text. If I find Employee ID in the table, I load all relevant employee information in Form, to do so I call “Load_New_Employee_data” function. It works fine, but some how...
  14. P

    Error: The Command or Action 'SaveRecord' isn't available now

    check this link http://forums.aspfree.com/t31575/s.html Its working by adding If Me.Dirty Then DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70 End If I don't understand what it is doing....but its working
  15. P

    Error: The Command or Action 'SaveRecord' isn't available now

    I did change my code and made sure all variables/database/Recordsets are defined before they are used.... still getting the same error....
  16. P

    Error: The Command or Action 'SaveRecord' isn't available now

    Microsoft DAO 3.6 Library was not selected.... Moving forward.............
  17. P

    Error: The Command or Action 'SaveRecord' isn't available now

    Dim rs As Recordset Dim db As Database Give Error : User Defined type not defined.... Any clue? I even Tried Dim rs As DAO.Recordset Dim db As DAO.Database
  18. P

    Error: The Command or Action 'SaveRecord' isn't available now

    Not Working.... I am getting error on this line Set db = CurrentDb() Error Message : "Variable not defined"
  19. P

    Error: The Command or Action 'SaveRecord' isn't available now

    Here is the Code Public Function Project_Status_Tracking() As Boolean Dim Assigned_Project_Status As String Dim DB_Project_Status As String Dim SSQL As String Dim SSQL1 As String Dim Project_ID As Integer Dim RecordCount1 As Integer Dim RecordCount2 As Integer Project_ID = Oppt_ID_Text...
  20. P

    Error: The Command or Action 'SaveRecord' isn't available now

    Hi All, I am getting this Error " The Command or Action 'SaveRecord' isn't available now" I am using one of those Ready Made Save Button (Drag and Drop button) that Access Provides. I made small change to "Save Button" Code to call two functions for data validation before saving the current...
Back
Top Bottom