CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tony88

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: How to unselect listview row when i click on white area of listview under rows?

    It keeps reloading the webbrowser and not making the frame invisable when clicking the white area of my listview!!
  2. Re: How to unselect listview row when i click on white area of listview under rows?

    v1 thanks. But could you tell me how to add it to my existing mousdown event. I posted it here:



    Private Sub ListView1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
    ...
  3. How to unselect listview row when i click on white area of listview under rows?

    Hi all. could any one show me how i can detect if user clicked(left and write) on white area of listview as shown in the pic. When i say white area i mean area where there is no row in listview . I...
  4. Re: How to hide part of form when i click outside of listview?

    But how to unselect listview row and hide frame when i click on white area under listview row as shown in pic?

    I tried you code :


    Private Sub ListView1_LostFocus()
    Frame1.Visible = False...
  5. [RESOLVED] problem finding listview first column value

    Hi all I am trying to use the following code to find a value in listview first column cell but it keeps failing to find.The value exist but it says it didn't find the value. The value in listview...
  6. Replies
    10
    Views
    1,485

    Re: problem comparing xml data

    Thanks for your reply. I found the problem. I had to comment out the listview clear. That solved the sound problem .But now if xml has no data set then old data remains there in listview for ever!!...
  7. How to hide frame when clicking on white area of listview where there is no data?

    I have frame and listview1. I want to hide the frame when i click(left click or right click) on white area of listview1 where is there is no data (As shown in attched pic).could any one show me how...
  8. Re: problem capturing enter key inside frame

    Thanks for all. Problem solved. I used :

    Private Sub Text1_KeyPress(KeyAscii As Integer)

    instead of :

    Private Sub Form_KeyPress(KeyAscii As Integer)
    or
    Private Sub Frame1_KeyPress(KeyAscii...
  9. Re: problem capturing enter key inside frame

    HanneSThEGreaT yes i have set Form's KeyPreview property to True but still not working!! moa the focous is on the textbox. I am typing on the textbox and want my text be sent when i Press Enter. It...
  10. [RESOLVED] problem capturing enter key inside frame

    I have a textbox inside frame and want to capture enter key using the code below but it never works. I had the same textbox outside frame and it was working !! could any one tell me how to fix this...
  11. Re: How to hide part of form when i click outside of listview?

    When i load the form i see the first row of listview is already selected and higlighted. Is there away to make it unselected onload of the form?

    If i keep left clicking on the listview row the...
  12. Re: How to hide part of form when i click outside of listview?

    Yes i have all the code for loading the listview and selecting listview. I will post the mousedown code. what should i do with it?



    Private Sub ListView1_MouseDown(Button As Integer, Shift As...
  13. Re: How to hide part of form when i click outside of listview?

    Thanks. I created a frame and cut and paste all my controles below listview1 to this frame. Now how to write the code to make them invisable when listview1 row is not select or when i left click or...
  14. Re: How to hide part of form when i click outside of listview?

    Thanks for your reply. Do you mean i need to cut and paste(everything under listview1) all the textboxs,tab listview,tab webbrowser and send button inside a frame ?
    Where should draw the frame ?...
  15. Re: How to hide part of form when i click outside of listview?

    Thanks for you reply. Unfortuently i never worked with frames in vb6 so i have no idea how to make one and how to enable it when a row got selected. I be happy if you show me how this can be done.
  16. Replies
    10
    Views
    1,485

    Re: problem comparing xml data

    Thread once again i thank you for helping me. You are right artist can be a key since it i not changing for perticuler row.

    But the data that i work with values of name,image and page are...
  17. How to hide part of form when i click outside of listview?

    i have a form as shown in pic. I want hide area below the listview1 when user right click or click on empty part(for example white part of listview1 where there is no row) of listview1. In other word...
  18. How to make first tab as defualt tab?

    Hi all i created 3 tabs so i be able to switch between webbrowser and listview. I want the first tab to be select by default onload of the form. could any one show me how this can be done?

    Now...
  19. Replies
    10
    Views
    1,485

    Re: problem comparing xml data

    Thread . Is it possible to detect the type of diffrence and change in xml content. For example if new data set is added to xml then ONLY add new row to listview without having to rewrite other rows....
  20. Replies
    10
    Views
    1,485

    Re: problem comparing xml data

    Many thanks thread it worked very well. So this type of xml compar will detect almost any small change in xml data? I tried it with couple tests by changing xml data and i saw it is detecting the...
  21. Replies
    10
    Views
    1,485

    Re: problem comparing xml data

    Thanks for your reply thread.I tried your solution but I keep getting the following error:



    Run-time error 91:

    Object variable or with lock variable not set


    pointing at:
  22. Replies
    0
    Views
    748

    How to check if an xml has data set?

    In my project i added a timer that frequently checks a remote xml. What i want this new timer some how check if the rss feed is giving any result out. If it gives data out i for example reload...
  23. Replies
    10
    Views
    1,485

    problem comparing xml data

    I am trying to compare 2 xml files but i keep getting the following error:



    pointing at :


    could any one tell me what i am doing wrong here.thanks
  24. Re: problem displaying records in order of time and date in php

    man but i do not see your code sort records by both time and date !!!!
  25. Re: problem displaying records in order of time and date in php

    thank u guys for u replies. so could u guys jus show me the insert statemts that records both time and date in a way that can be quried and sorted baced on time and date. The page is triggered when ...
Results 1 to 25 of 76
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured