Search results

  1. A

    Right click menu

    That was a quick reply. Thank you for that. It is working now.
  2. A

    Right click menu

    Hi! I need to call existing shorcut menu when user right-clicks on the list box. At the moment, I can call shortcut menu from onClick event on command button. I want to use right-click instead. How is that possible? Thanks!
  3. A

    Search as you type

    Managed! Just had to add another control to copy string as text. Found solution in samples. http://www.access-programmers.co.uk/forums/showthread.php?t=110203&highlight=searching+sorting Thanks anyway!
  4. A

    Search as you type

    I am always impressed by response speed on this forum. Thank you for that! My original code is as follows: Private Sub CtrPretraga_KeyUp(KeyCode As Integer, Shift As Integer) Dim st As String Dim st As String st = "SELECT KomitentiDB.IdKomitenta, [NazivFirme] & ' ' & [grad] AS Komitent...
  5. A

    Search as you type

    Hi! I want to use TextBox to populate data in the ListBox as user types data in the TextBox. I made SQL to use as RowSource for the ListBox and it works fine if I use CommandButton to triger the event. Since I want as-you-type event, I tried to use On Key Up or On Change properties, in...
  6. A

    Outlook.Application

    Thanks a lot!!! It is very simple... if you know where to look.
  7. A

    Outlook.Application

    I am trying to conect my db to Outlook. The code I want to use begins with: Dim objOutlook As outlook.application If I try to run the code, I recive "Compile error: User-defined type not defined" I guess Outlook.Application is built in feature. I presume that when I type "As" I should find...
  8. A

    Delete File

    Tks! You saved the day!
  9. A

    Delete File

    I want to create a command that will delete a file from a folder. How can I do it? Thanks!
  10. A

    The Microsoft Jet database engine stopped the process because you and another user ar

    Hello! I am working on a database that uses a table from another access database. I am not sure but I think the problem started after this line was added to the code: Set dbk = OpenDatabase("D:\My documents\Japi\OritaColor\Baze\Knjigovodstvo1.1.mdb") The database still works fine on one...
  11. A

    Automatic Screen Resolution

    Sorry, my mistake. The code works fine.
  12. A

    Automatic Screen Resolution

    When I use this code to get resolution info, I receive for both screenX and screenY 0 value in message box. What am I doing wrong? If this is not working, is there another way to get scrren resolution information?
  13. A

    Reset default value

    How can I change default value to an unbound control? I would like to avoid using table if possible. Code control name.defaultvalue = -1 works fine, but when I close the form and open it again, new default value is not saved.
  14. A

    Lock combo box for typing new values

    Thanks a lot. You saved the day!
  15. A

    Lock combo box for typing new values

    Not sure how to do that. Whatever I do, it is still possible to type in the control. Could you please tell me which command should I use?
  16. A

    Lock combo box for typing new values

    Using Properties>Data>Locked = Yes, locks the field. The options are visible, but you can't change control's value. I need to be able to choose between options. There are only two options in the combo, so auto expand option is not important. By typing in the combo user changes original...
  17. A

    Lock combo box for typing new values

    I would like to forbid typing text to the combo box. I tried limit to list option but, even if it is set to yes, you can still type text in to the combo. How can I disable user to type text in to combo? Is it possible to stop user from entering the combo, but still allow choosing combo options...
  18. A

    Fancy 3D Image Buttons

    This is very nice! Thanks MStCyr! The butons are working fine as command buttons. Is it possible to make it behave like option group buttons?
Back
Top Bottom