Click here to Skip to main content
15,885,852 members

Comments by TnTinMn (Top 107 by date)

TnTinMn 19-Feb-14 21:28pm View    
This is from a search I ran on 16-bit x-ray image format.
ezDICOM DICOM viewer: http://www.mccauslandcenter.sc.edu/mricro/ezdicom/index.html

It may be worth downloading the viewer and trying it.
TnTinMn 12-Feb-14 13:24pm View    
Just throwing this out there as a possible SerialPort example source.
http://www.hardandsoftware.net/Downloads.htm
TnTinMn 11-Feb-14 20:38pm View    
I am a bit confused as I'm sure you are with this. One thing that I am going to recommend is that do not build the connection string path every place you need it as that can be a source of errors (not saying that that is the cause of your current problem). Add a project property setting of type connection string and use that when needed. Do not include the password as part of the stored string; you can append that at startup.

i.e.: Data Source=|DataDirectory|Northwind.sdf

Make sure you set the DataDirectory for the application before any calls are made that will need the path
i.e: AppDomain.CurrentDomain.SetData("DataDirectory", Application.StartupPath);

The only way I have been able to recreate your issue is by using a dataset and editing it between runs. This seems to force VS to copy the original DB to the output directory even if it is older.

You could also try setting "Copy To Output" to "Do Not Copy"; just make sure that you have a copy in the output directory and see if that resolves the issue.

I'm sorry, but I really do not know what else to recommend at this point.

Good Luck.








TnTinMn 11-Feb-14 11:50am View    
Download - Samples Environment for Microsoft Chart Controls
http://archive.msdn.microsoft.com/mschart/Release/ProjectReleases.aspx?ReleaseId=4418
Load "WinFormsChartSamples.sln" and run it.
In the application, under the "Contents" tab, open "Data Distribution Charts" and then select Histogram. This will help teach you how to create one.
TnTinMn 6-Feb-14 19:37pm View    
"I mean, I add, delete and modify records, and it works okay i can play with all my information while the app is running. BUT if I close the app and after it, I run it again, all the data is like in the begining, there's not any change in my DB.sdf"
Does this mean that you have pulled the modified data and show the the modified table in the UI or does it just mean that nothing crashed?