Recent content by brampeirs

  1. B

    Images in forms

    Hello, Thank you for your replies. Yes, my boss would like to have the logo of the company on each form. Reading this, I think we will just stick with the old appearance :)
  2. B

    Application User Interface

    Sorry to bump in this old thread, but this is beautiful, how did you make those tabs so beautiful???
  3. 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...
  4. B

    Undo all changes to form and subform

    Thank you for your responses. @EternalMyrtle, I think that's a good approach, I hide the subform too. For now I've made it that it will only undo changes of the main form. So at least that side always works. :)
  5. 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...
  6. 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...
  7. B

    Get name calling form

    Thank you, it worked.
  8. 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...
  9. B

    How to determine if my form is moved

    Here you can find the database, There's a button (Knop57) on it that runs the code. The code also runs when you change the size of the form. The problem is I can't get it to run when I drag/re position the form :banghead:. The purpose of the code is so the main application window always stays...
  10. 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...
  11. B

    Live Search Problem

    Thank you, it solved my problem.
  12. 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...
  13. B

    Question Hiding Access frame window

    Hello, thanks for the code. When I use the code, the Icon in the taskbar is gone? Is there a way to keep the icon in the taskbar? Thank you in advance.
  14. B

    Force access application on top

    Thank you, found this: vbforums.com/showthread.php?t=352702 and it works.
  15. B

    Force access application on top

    Turns out I have another problem, when I minimize the application the code works. But most users use ALT + TAB to switch between application, an then the code does not work (because the application is not minimized but between another application) . Is there code to fix this issue? Again thank...
Top Bottom