Search results

  1. P

    Save button

    Hi, Is it possible to show table data in a form, alter it and not have it update the table content until I hit a save button?
  2. P

    Make access look like application?

    Hi, Is it possible to create a .accde file or something that looks like an application when the user opens it, without all of the Access sidebars, ribbons, etc? I can make form that looks kind of an app but there's still all the Access tools around that I don't need.
  3. P

    Multiple users working at the sem time?

    Hi, Is it possible for multiple users of Access 2016 to work in the same database at the same time? I think I read it somewhere but I can't find it now.
  4. P

    Show table in dropdown?

    Hi, Searched the forum but could not find this. If I double posted, please show me the correct thread. I have tblComputers with a column 'user_id' that corresponds to column 'id' in tblUsers. I want to view column 'user_id' in a listbox in tblUsers in a form with various other data from...
  5. P

    Question How to link two textboxes in different forms together?

    Hi! I have a form that recieves information from a table. In that form I have a button that opens another form, and in thet one I would like to use one of the values from the first form. I.e. Form1 have a textbox [ID1] that contains "1". In Form2 that opens from Form1, I would like the textbox...
  6. P

    How to change color on text using IF

    Hi! I would like to change color on the text placed in a textbox depending on the value. The value comes from a query connected to a table. Something like: in textbox: IF Me.ID = 30 THEN color = #FF0000 ELSEIF Me.ID = 40 THEN color = #00FF00 ELSE color = #000000 Can't figure it out by myself...
  7. P

    How to check checkbox depending on string

    Hi! I want to make a checkbox do something like this: IF strlen(notes) >= 1 THEN check1 = true notes=column with notes If there is something written in the column "notes" then I want to check the checkbox. It doesn't feel too difficult, but I just can't figure it out! Some one here who can...
Back
Top Bottom