Search results

  1. J

    ListView Question

    thanks vbainet, i did quote everything and put only a message box but still my itemclick doesn't firing up, and also sorry for miscom i'm using 2013 access version.
  2. J

    ListView Question

    hi vbainet, me again boss. i try to run the db in 2010 version and it seems the itemclick event doesn't firing, i read this in microsoft community...
  3. J

    ListView Question

    yup i quote it, and it work the same. whew! that's a nice piece of work. thanks. :)
  4. J

    ListView Question

    it's so funny, because i finished two sticks of cig before i found what caused the problem. anyways going back to API where should I put the FullRowSelect?
  5. J

    ListView Question

    don't worry boss, i found the problem, i uncheck the hide selection in the listview properties. and it's working fine.
  6. J

    ListView Question

    hi vbaInet, i don't know what i did, i just copy all the codes you provided to me, but it seems it doesn't work with my form. can you please enlightened me. i'm attaching the db. thanks
  7. J

    ListView Question

    till next time boss. :)
  8. J

    ListView Question

    this is wonderful! thanks a lot vbaInet. i just modified a bit, because when i tried to resize the listview window until it shows only three items out of ten, the window didn't scroll though the item is highlighted, what i did is this: Private Sub txtSearch_Change() If...
  9. J

    ListView Question

    thanks a lot for spending some of your precious time in this thread i do appreciate.
  10. J

    ListView Question

    hi vbainet, there's no question without that line it will show the highlighted item in the listview but the problem is i need to put back the focus in the textbox. example my search string is "Lee" in the textbox, ill press the letter "L", listview will scoll and highlight the first "L" the he...
  11. J

    ListView Question

    hi boss, i did put the original code to the key up event, and i guess there's not much difference. here's the code: Private Sub Text12_KeyUp(KeyCode As Integer, Shift As Integer) FindItem Me.Text12.Text, 1 end sub Sub FindItem(strSearch As String, iSubItemIndex As Integer) Dim i As...
  12. J

    ListView Question

    @vbainet, it work well when i put it in the key up event. though as i mentioned the highlighting in listview part is gone, well technically it highlighted but since i'm putting the focus back to the textbox you can't see it anymore. @cj, well this is funny because the place i'm working still...
  13. J

    ListView Question

    thanks for the reply cj, vbinet i do appreciate your suggestion, it work well, the listview is scrolling to the item i'm searching, though it didn't highlight the searched item in the listview because of the textbox setfocus, one thing i can think off is to change the backcolor, is there a way...
  14. J

    ListView Question

    thanks for the reply cj, but if i remove that line the item is not immediately highlighted not until i lost focus in the textbox. what i'm trying to achieve is whenever i type a charcter in the textbox the listview will scroll and highlight the item.
  15. J

    ListView Question

    I'm not sure if this was already taken up in here, here is my dilema: i have a textbox and i have a listview in a form, what i want to accomplish is when ever i type a value in a textbox it will search in the listview and hightlight the item, the code that i have is this: Private Sub...
  16. J

    ListBox identify selected item without looping in the whole list

    you're funny boss, thanks.
  17. J

    ListBox identify selected item without looping in the whole list

    thanks boss, i spend almost a week searching for an answer which is not relevant to this problem, i didn't realized that a simple variable will solve it. :banghead: sometimes in this kind of work you need a time out, just like a computer we too can get memory full and need to refresh or reboot...
  18. J

    ListBox identify selected item without looping in the whole list

    thank pbadly for the quick response, the reason for me to ask that question is, i want to monitor if the active form and it's controls are in idle mode, because i want to boot out all user's who's using the system without doing anything for two hours so it will free up all the tables that they...
  19. J

    ListBox identify selected item without looping in the whole list

    that's what I thought, I've search the internet and there's no luck to find an answer, I'll not close this thread hoping that someone can give me an answer. thanks boss.
  20. J

    ListBox identify selected item without looping in the whole list

    Hello Guys, I do appreciate if somebody can show me the selected item in a Listbox without looping in the whole list, because my Listbox is multiselect and I want only the item that selected recently. Thank you.
Back
Top Bottom