Click here to Skip to main content
15,897,518 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Original headline
C# formda seçilen dosyaları başka bir formda listbox içerisine aktarma
Here I open the other form screen, but I could not print some selected filenames in the listbox.

What I have tried:

C#
OpenFileDialog dcm = new OpenFileDialog();

dcm.Filter = "DICOM File(*.dcm)|*.dcm";
dcm.Multiselect = true;
if (dcm.ShowDialog() == DialogResult.OK)
{
     Form2 lst_dcm = new Form2();
     lst_dcm.ShowDialog();
Posted
Updated 26-May-20 21:19pm
v2
Comments
[no name] 26-May-20 20:31pm    
Where's the "printing" code? Where the listbox access code?

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900