file

  1. lmstearn

    Question DLL Browser/ Repo for Application

    Hi there, First question here as just joined, it's one regarding how to go about planning/implementating a smallish application that: Simulates the behaviour of a most basic mod manager- think this but much less functionality. Provides drag & drop of DLL files or compressed packages containing...
  2. S

    File integrity

    hello everyone I'm currently developping a software to check the format of some files, this software allow the user to create a special tree folder, and then to fill it with files, when the user transfert a file in a specific folder of the tree Forlder, I check if the format is correct. I also...
  3. G

    Question Improving speed in my code

    Is there any way to improve the speed in my script?? Thanks in advance, appreciate any help. using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace MegaTool { public static class mega...
  4. C

    Question image file locked????

    Hi!!! Somebody knows whats the problem???? If i remove OpenFileDialog and pass the string direct pathDiskCover = @"C:\Documents and Settings\Administrator\My Documents\someImage.jpg"; it works fine. private void toolStripButton2_Click(object sender, EventArgs e) { OpenFileDialog...
  5. E

    Question How to format file sizes?

    Currently I have this code: public static class SizeUnit { public static string FileSizeToString(long size) { double FileSize = size; string[] format = new string[] { "{0} bytes", "{0:0.00} KB", "{0:0.00}...
Back
Top Bottom