No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
I am creating a web page with dynamic controls and want to add events to the controls. Specifically, I have labels and checkboxes on my web page and want to add an event to review the status of the checkboxes. In the event, I want to check to see if …
You may want to try something like this: [code] public void Button1_OnClick(object sender, EventArgs e) { string path = TextBox1.Text.ToString(); string file = TextBox2.Text.ToString(); DirectoryInfo dir = new DirectoryInfo(path); FileInfo[] bmpfiles = dir.GetFiles(file); foreach( FileInfo f in bmpfiles) { //add what you need to do with the file when found …
The End.
dvlpr30062