3
Answers

Keeping two listboxes synchronized

Robert Lancaster

Robert Lancaster

16y
7.8k
1
Greetings,

I am busy developing an application which has two listboxes containing two variations of the same data.
I need to be able to keep the selected items synchronized.
Both listboxes must have the same item selected at the same time.
I need the two items to be selected next to each other.

The other problem is that I need to scroll the listboxes together.
Both when scrolling down and then across.

Does anyone out there have any ideas, or hopefully samples, to achieve this?

Thanks in advance,

zaroblan
Answers (3)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));