Search results

  1. R

    Can´t update fields

    Please post the SQL for the query. Dale
  2. R

    Combo box with values taken from another database

    The same way you link to a back end. External Data tab/Access/Browse Find your file/Click open/Select Link tot the data source and click OK. Dale
  3. R

    Help with writing query

    Start out reading the following information. Get your tables normalized. http://symplebyte.com/microsoft_office/access/how_to_normalize_data_access.html Then your query writing will be easier. Dale
  4. R

    Open Args Usage

    Really, linq how do you make stuff so easy to understand. I worked all day and never got it right. You should have been a teacher. Thanks, Dale
  5. R

    Combo box with values taken from another database

    I would link the table from the other database. It can also be done with code. Dale
  6. R

    Where did new folder go?

    My wife has a laptop with Windows 7. The other day I was going to make a new folder and new folder was not there. Right click/new/Briefcase?????????? Is this new? My desk top has new folder and briefcase. How do I make a folder on my wife's laptop Dale
  7. R

    Displaying Records

    The code you show just displays a recordset and has nothing to do with a form. I am not sure what you want to do yet or what you are asking. Your code looks OK as far as it goes. Please tell us what you are wanting to do Dale
  8. R

    Random selection from large data set

    Try the Rnd(number) function. Dale
  9. R

    Something is causing problems with subforms. Also, filtering...

    As a rule of thumb I will have 2 forms for this. 1 to add and 1 to edit/review. It sounds like your form has an underlying query and that query is nor updateable. Sometimes you can get 2 tables in a query to update, anymore and I don't see how it is possible. Dale Note: 1 post 1 problem or...
  10. R

    Open Args Usage

    I have tried a few times to get open args to work while opening a new form. I never could get it to work. Will someone tell me how this is used. Thanks, Dale
  11. R

    Can´t update fields

    I saw a few errors at the top of your code. Dim db_contratos As Database Dim rst As DAO.Recordset Dim rst2 As DAORecordset Dim sql As String Dim num_rec As Long Dim count As Long Dim varReturn As Variant Dim datahoje As Date Set db_contratos =...
  12. R

    Can´t update fields

    Do While ((Not rst2.EOF) And (count <= num_rec)) Do While (Not rst.EOF) If rst2![Nº Contrato] = rst![CONTRATOS].[Nº Contrato] Then rst.Edit rst![TRABALHADORES].[FichaAptidao] = True rst![TRABALHADORES].[datafaptidao] = Me.UltConsulta.Value rst.Update rst.Bookmark = .LastModified varReturn =...
  13. R

    Can´t update fields

    On what line do you get the error? What version of Access? What are you wanting to do? Dale
  14. R

    Form Error 2450 - Form Not Found

    The form is not open yet as you think of it as being open. http://msdn.microsoft.com/en-us/library/ff196808.aspx The above are the form events on open. This link is for form events. http://msdn.microsoft.com/en-us/library/jj714836.aspx Dale
  15. R

    Bug in combobox

    You are saying that you have a table with check boxes set to yes/no. You are using these check boxes in a combo box. These yes/no check boxes are showing as -1 and 0 in the combo box. When I make a combo box with yes/no check boxes my combo box shows yes/no. Dale
  16. R

    Not sure if posting in right area (please point this out)

    Need to see your table structure. Dale
  17. R

    Help with writing query

    Can you show your tables. Dale
  18. R

    Dynamic If statement

    Do Until rs.EOF If rs![IndexNumber] = strName Then rs.Delete
  19. R

    Dynamic If statement

    field(Number) Number = the index number of the field within the record. Should remain the same as long as RST is open. Whatever EligCrit is in one record it should remain in all records. Dale
  20. R

    Alignment of text in form fields

    Strange. Indeed. Dale
Back
Top Bottom