Ok, I know there is File.Exists and there are ways to pull out comments from the FileInfo but is there a way in C# .NET to find out if a certain file is signed with a security certificate or not?
ethanwa
Posts
-
How do I find out if a file is signed or not? -
PictureBox help!Ok, so I have a PictureBox on my form named pctInternet. It has the following code associated with it:
string imageLocation = @"C:\mypicture.jpg"; Bitmap bmp = new Bitmap(imageLocation); pctInternet.Image = bmp;
Now, I just want my PictureBox to display the picture and CLOSE the actual "mypicture.jpg" file, but for some reason whenever I try to delete the "mypicture.jpg" file while my app is running, it errors and says "File is in use." How do I fix this? What line of code am I missing? -
Edit MP3 ID3 Tags in C#?Anyone know a good place to find a DLL/Project that I can import into my Solution that allows me to edit an ID3 tag in an MP3? Currently out there the pickings are slim for anything that updates version 2 tags. I want something simple that I can reference like this: using ID3Edit; private void Get() { ID3Tag id3Tag = new ID3Tag(); id3Tag.GetV2andV1Tag("C:\\test.mp3"); txtTitleV2.Text = id3Tag.TitleV2; txtTitleV1.Text = id3Tag.TitleV1; } private void Save() { id3Tag.TitleV2 = txtTitle.Text; id3Tag.UpdateV2Tag("C:\\test.mp3"); } I would be willing to pay $100 or so if someone could create a DLL like this for me within the next few days. I bet many other people out there are willing to pay for it as well. If you know of something that's already created in C# that is as easy to use as my above code, email me right away. I just don't have the time or knowledge to put something like that together. Email me for details if you want the job or if you have a DLL like this: Ethan ethanwa@comcast.net
-
Burn CD's using C#??Yeah I did do a little research about IMAPI. Unfortunately, I know ZERO C++ and I'm dissapointed in the fact that CD Burning Classes were not introduced into the .NET Framework. WindowsXP has had built in burning for a while. Hopefully they'll add it with .NET 2.0.
-
Burn CD's using C#??Anyone know how to burn CD's using C#?? Does MS have an .NET or API for this? Thanks!