I'm receiving an error in runtime using the ClearCanvas libraries. Here is the error
Could not find file 'C:\Users\Don jar\documents\visual studio 2010\Projects\DICOMCA\DICOMCA\bin\Debug\Fluro.dcm'.
The error points to this section of the code:
theFile.Load(DicomReadOptions.Default);
I will be grateful for any help. Thanks
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
string filename = "Fluro.dcm";
DicomFile theFile = new DicomFile(filename);
theFile.Load(DicomReadOptions.Default);
foreach (DicomAttribute attribute in theFile.DataSet)
{
Console.WriteLine("Tag: {0}, Value: {1}", attribute.Tag.Name, attribute.ToString());
}
}
}