Search results

  1. G

    problems with date

    Hello I have some problems with the dateformat. When I want to set a record as the actual record in a recordset I use the method "recordset.seek". When I use e.g. as date 1th july the record of 7th january is set as the actual record. Can someone help me? Thank you
  2. G

    Combobox number of records

    NO, Because I just can see the list until number 65535, the records from then on they are not displayed in the comboboxlist GuidoNTS
  3. G

    Combobox number of records

    I use 2010. The query gives me 80125 records. GuidoNTS
  4. G

    Combobox number of records

    I have set the rowsource on a query GuidoNTS
  5. G

    Combobox number of records

    The bounded column is indexed. I use three columns. GuidoNTS
  6. G

    Combobox number of records

    Hello Can someone tell me if I can see more than 65535 records in a combobox using Access 2010. In Access 2003 that is not possible, but I was told that this is possible in 2010. My table contains more then 80000 records. Thank you. GuidoNTS
  7. G

    hiding some fields

    Thanks Missinglinq Your solution helps me.:) :) GuidoNTS
  8. G

    hiding some fields

    Hello When I add your code to the event OnCurrent either all the 4 records are hidden or no one is hidden. And also your code works when I'm navigating in the records. What I want is to see or not those fields when the forms is opened. Guido
  9. G

    hiding some fields

    Hello Depending on the value of a field I want to hide an other one. See my attachment: When the field "Genomen" (blue) is visible the field "Omschrijving" in red must be invisible but the field "Omschrijving" in blue must stay visible. Guido
  10. G

    Language in Access

    Hello Because I'm from Belgium all the pc's are set for dutch. I have to make a database where all the input must be in english. So I have problems with the date. In English it is 03/mar/08 but in dutch it is 03/maa/08. Can I swith the pc language just for one database or have I to modify the...
  11. G

    Security

    You can do it by creating e new table in which you put the fileds "NameUser", "Date", "Action", ... On each form you, after each entry in a field, you put these actions in that table I do it as follow: set rs = currentdb.openrecordset("Table") rs.addnew rs("NameUser") = UserName rs("Date") =...
  12. G

    hiding checkboxes in continuous form

    I will clear it a while I have records that someone had to follow up and others that must be followed up by many people. (it is always an OR never an AND) I have put those records in a separate file. On the form I let see all the records of that file. If the records must be followed up by one...
  13. G

    hiding checkboxes in continuous form

    Hello I'm new on this list. ;) On a form I have two checkboxes. I want to hide that one that is not checked on. Can someone help me for this? Thank you
Back
Top Bottom