Search results

  1. B

    Images in forms

    Hello, I would like to make my database a bit more attractive for the end users. Is there a correct way of using images in ms access? Witch resolution should I use? I currently have the following problem: when I insert a image in a form, the image is displayed correctly on some monitors. But...
  2. B

    Undo all changes to form and subform

    Hello, I have been looking for this for a while. I have some forms where I can cancel my input. However this works only on the current record. When I implement a subform this does not work anymore. Because access auto saves when focus is set to the subform. I don't wan't to use unbound forms...
  3. B

    Concatinate function

    Hello, I would like to do something like this: 'Called procedure Public Sub SetBgLightBlue(buttenName As String) Dim btnCaller As String btnCaller = buttenName Dim lngLightBlue As Long lngLightBlue = RGB(223, 237, 254) btnCaller!BackColor = lngLightBlue End Sub 'calling procedure Private...
  4. B

    Get name calling form

    Hello, I would like to know how to get the name of the form that calls another form. I have a form called employer. Two other forms: Customer and Start. On both Customer and Start form there is a button 'Employer'. Both buttons open the same employer form, but I want it to act differently...
  5. B

    How to determine if my form is moved

    Hellooooooo :) I have a question, I have a form that opens when access opens. I used some code so the main application window has the same size and position as that form. By doing so, the main application window stays after that form and it doesn't bother you. Currently this code only runs...
  6. B

    Live Search Problem

    Helloooooo, So I have made a form with a textbox and a listbox, the listbox get's filtered according to what's entered in the textbox. If I push the button 'Search' everything works fine :) Butttttt I want it to search automatically while I'm entering something in the textbox (I used the...
  7. B

    Force access application on top

    Hello, I have a timer that check's for a boolean, if the boolean is true a form pops up. This works, but when users have the application minimized, they can only see the popup when they return to the application. So here's my question: is it possible with VBA that when the form pops up, the...
  8. B

    Copy record in same table

    Hello, I would like to copy a record and past it in the same table. I want to use a button on a form to do this, of course you could go into the table and manualy copy and paste the record, but I don't like my users to go into the table. Can anyone help me please. the table name is PROJECT...
Top Bottom