You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner. It is now read-only.
I have small test i wanna is going in shell item got from network, I have 10 pc in localnet i can see them on shellview but i wanna use for loop to going one by one, and open it.
foreach( ShellItem it in shellView1.CurrentFolder)
{
if (it.IsFolder)
{
// string folder = it.ParsingName.ToString();
string folder = it.DisplayName;
ShellItem item = shellView1.FindItemWithText(folder);
shellView1.Select(item);
// here i wanna to assing the new folder open it.
shellView1.Refresh();
shellView1.RefreshContents();
this.Refresh();
break;
}
}
please help me..
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have small test i wanna is going in shell item got from network, I have 10 pc in localnet i can see them on shellview but i wanna use for loop to going one by one, and open it.
foreach( ShellItem it in shellView1.CurrentFolder)
{
if (it.IsFolder)
{
// string folder = it.ParsingName.ToString();
please help me..
The text was updated successfully, but these errors were encountered: