1 Attachment(s)
probem reloading frame with new data on click over listview row
I wonder how i can reload frame when i click on listview row. I have seen applications like shown pic that it reloads frame on click over listview row. Could any one show me how this can be done?
Thanks
1 Code:
Private Sub ListView1_Click()
gstrSomething = ListView1.SelectedItem.SubItems(4)
gstrSomethingElse = ListView1.SelectedItem.Text
Frame1.Visible = True
End Sub
Re: probem reloading frame with new data on click over listview row
What are you trying to reload? Where's it from?
Re: probem reloading frame with new data on click over listview row
i want to reload a webbrowsers that are inside frame.
Re: probem reloading frame with new data on click over listview row
Re: probem reloading frame with new data on click over listview row
Quote:
Originally Posted by Hell-Lord
I have already tried that. Since i am passing listview item to those webbrowser on click over listview row.That approch is not working!! It is not passing listview data!! Is there any way to reload multiple controles such webbrowser and listview inside frame on ONE refresh? i mean seeing only one flicking instead of 2.
Re: probem reloading frame with new data on click over listview row
??
I still don't get your problem? You just said it is not passing data! is that the problem? Or is refreshing/reloading the problem?
Re: probem reloading frame with new data on click over listview row
Quote:
Originally Posted by Hell-Lord
??
I still don't get your problem? You just said it is not passing data! is that the problem? Or is refreshing/reloading the problem?
if i use WebBrowser1.Refresh it will not pass the data!! Also since i have multiple controles inside frame i wonder if it is possible to reload them all at once instead of seeing multiple flicking? I tried the following:
1 Code:
Private Sub ListView1_Click()
gstrSomething = ListView1.SelectedItem.SubItems(4)
gstrSomethingElse = ListView1.SelectedItem.Text
Frame1.Visible = True
WebBrowser1.Refresh
WebBrowser2.Refresh
End Sub
I saw 2 mouse flicking and also data weren't passed.Furthermore,mouse flicking belongs to webbrowser only or it is for all controles such as treeview too?