Search:

Type: Posts; User: PillKilla

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    687

    Re: Get html tags from a website

    Thank you very much, how do i check on a webpage that if a text does say a username or password is not valid. how i can check it out?


    something like this:



    If Inet1.ResponseInfo("user not...
  2. Replies
    4
    Views
    687

    [RESOLVED] Get html tags from a website

    Hi guys,

    I need your help, I am working on a inet control to get access to a website and I would like to extract the html tag to a label, but I don't know how to do it.

    Here's the code:

    ...
  3. Re: How to remove multiline in the listbox?

    i have a webbrowser control on my form, so i would like to know how to click on the webbrowser to remove the line from a listbox?
  4. Re: How to remove multiline in the listbox?

    i don't want to remove the item, only the line.

    i have tried this:


    Private Sub List1_DblClick()
    List1.Selected(1) = False
    List1.ListIndex = -1
    End Sub
  5. Re: How to remove multiline in the listbox?

    No, i am talking about the line in a listbox.

    do you know how to remove it?
  6. Re: How to remove multiline in the listbox?

    I don't know how I make the listbox as multiline, it is already there when I add the items. :(

    I don't want it, i want to take it off.

    Any idea?
  7. [RESOLVED] How to remove multiline in the listbox?

    Hi guys,

    I am working on a listbox to double click on the listbox items to remove the multiline. I need your help, because I don't know how to remove the multiline on the listbox.
    ...
  8. VS 2005 Re: How to check the checkboxes in the listview?

    Yes, when i tick and untick a checkbox, it will add the string item to a label.

    So now I am working on the button event to compare the string item from a label and the listview as i want to check...
  9. VS 2005 Re: How to check the checkboxes in the listview?

    Ok, here is a break down of a step of what I want to do:

    1. The program loads up
    2. I add the items to a listview
    3. I tick and untick the items in the listview to add each strings in the label...
  10. VS 2005 How to check the checkboxes in the listview?

    Hi guys,

    I am working on my listview which I have almost finish it, but i need to work on the button event to check for each string in the listview whether if the checkbox is true or false. When I...
  11. Replies
    3
    Views
    818

    VS 2005 Re: Check each listview checkbox

    Ok so do i need to change from mouseclick event to itemcheck event and do i need to change the code from below?

    From this:

    Dim strItem As String =...
  12. Replies
    3
    Views
    818

    VS 2005 Check each listview checkbox

    Hi guys,

    I am working on my listview as I have almost finish it, but there is a problem with the checkboxes. When I run my form on a debug, I have the first row are already set to true and when...
  13. VS 2005 Re: [RESOLVED] How to check each listview checkboxes?

    Thank you very much Paul, the code you have posted have helped me to sovle the problem.

    Cheers!
  14. VS 2005 [RESOLVED] How to check each listview checkboxes?

    Hi guys,

    Please can you help me with my code as I have got a problem with checking on the checkboxes in the listview. I am converting the boolean to a string from true and false to enabled and...
  15. VS 2005 Find matches listview subitems in the label

    Hi guys,

    When I click on the checkboxes in the listview to add the subitems in the label and add the subitems next to the comma like this:



    my strings, my strings 2, my strings 3


    I used...
  16. Replies
    0
    Views
    525

    VS 2005 How to remove subitems in the label?

    Hi guys,

    I am currently working on my program to click on the listview items. I'm using listview mouseclick event to click on each listview item, I would like to know how I can get the messagebox...
  17. Replies
    12
    Views
    1,354

    VS 2005 Re: Need help with label issue

    Oh ok, do you know how to remove the subitem in the label when i click on the listview item?
  18. Replies
    12
    Views
    1,354

    VS 2005 Re: Need help with label issue

    I don't want to update the items in the listview, only to add the listview items to the label so i can send to each of them to my php server.

    Do you know how to block the loops using with my code...
  19. Replies
    12
    Views
    1,354

    VS 2005 Re: Need help with label issue

    Thank you very much shaggy, but there is a problem with the loops. When I click on a row in the listview items to add the listview subitems in the label and when I click on the same row to remove the...
  20. Replies
    12
    Views
    1,354

    VS 2005 Re: Need help with label issue

    Thanks Shaggy Hiker, I have got a little problem with the label text. I cannot be able to replace the strings to the empty strings.

    I have tried this:


    label1.Text.Replace(a(j).Trim(), "")

    ...
  21. Replies
    12
    Views
    1,354

    VS 2005 Re: Need help with label issue

    No i mean that when I add the listview items in the label to something like this:

    my strings 1, my strings 2, my strings 3


    When I click on the row of each listview item, do you know how to...
  22. Replies
    12
    Views
    1,354

    VS 2005 Need help with label issue

    Hi guys,

    I am working on my program as I'm adding the listview subitems string in the labe.

    Do you know how to remove the listview subitem in the label when the matches are found?


    Private...
  23. Replies
    7
    Views
    1,236

    VS 2005 Re: how to find listview index

    Thanks Paul. Do you know how to remove the listview subitem in the label when I added them?

    I used this code:


    Private Sub listView1_MouseClick(ByVal sender As Object, ByVal e As...
  24. Replies
    7
    Views
    1,236

    VS 2005 Re: how to find listview index

    like this:


    If item.SubItems(1).Text = label1.Text Then
    MsgBox.Show("the listview items have already added in the label")
    Else
    MsgBox.Show("the listview items is not in the label so let add...
  25. Replies
    7
    Views
    1,236

    VS 2005 Re: how to find listview index

    thanks paul, i can see the problem is fixed. do you know how to check the listview subitems in the label when i add them with each strings that come next to the comma?
  26. Replies
    7
    Views
    1,236

    VS 2005 how to find listview index

    Hi guys,

    Can you please help me. How I can find the index for the listview on a listview click event to something like this:


    Private Sub listView1_Click(ByVal sender As Object, ByVal e As...
  27. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    Ok, when I run on my form, I can see that the listview items is adding in the label when I am using listview item check event.

    do you know how to block the listview items to be adding in the label...
  28. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    Paul, do you know how to block it?
  29. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    Thank you very much Paul, do you know how to block the listview items to be adding in the label when I run my form unless when I click on each listview checkbox?

    Here's the one I use:


    Private...
  30. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    yeah but i have a little problem with the string. I have got the commas and space in the label which it looks like this:


    my strings 1, my strings 2

    When i split for each string, I get...
  31. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    NO!!! I said how to split the commas string in the label and get the messagebox to display for each string?


    Like this:


    Private Sub button1_Click(ByVal sender As Object, ByVal e As...
  32. Replies
    14
    Views
    3,171

    VS 2005 Re: How to add listview items in label?

    Thanks Paul, do you know how to split the commas string and get the messagebox to display for each string that comes before and after the commas in the button event?
  33. Replies
    14
    Views
    3,171

    VS 2005 How to add listview items in label?

    Hi guys,

    Can you please help me with my listview. I have got a problem with adding the listview items in the label, when I select the checkboxes in the listview I keep getting the same text to add...
  34. VS 2005 Checking each items in listview compare to label

    Hi guys,

    I have a listview with checkboxes for each items in the listview. You can see in the listview1_itemcheck event that when I tick and untick for each checkboxes in the listview, it will add...
  35. VS 2005 Re: Saving tick and untick checkboxes in the listview

    You still DON'T UNDERSTAND from my previous post. I SAID that when I select and unselect on the listview items, i want to add the subitems text in the label, and when I click on a button I want the...
  36. VS 2005 Re: Saving tick and untick checkboxes in the listview

    I want to display on the label something like this:


    my string,mystring 2


    The items on my listview are display like this:


    my string
  37. VS 2005 Re: Saving tick and untick checkboxes in the listview

    i would like to save the listview state in the label which it will be a good idea.
  38. VS 2005 Re: Saving tick and untick checkboxes in the listview

    I have got a problem. When I run the form through on a debug, I got three listview items, the one that it have already been checked and the two other one is unchecked. I doesn't click the items to...
  39. VS 2005 Re: Saving tick and untick checkboxes in the listview

    Thanks 4x2y, do you know how i can check for each item in the button event when I save the index of checked item using with mintCheckedItem?
  40. VS 2005 Re: Saving tick and untick checkboxes in the listview

    Thanks 4x2y, but i have got an error:

    Error: 'Project1.Form1.mintCheckedItem': only static data members can be initialized inside a ref class or value type

    The error are highlighting on this...
Results 1 to 40 of 309
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width