Recent content by always eval

  1. A

    Permanently Closed Marketplace Sales Thread

    Samples please. Thanks.
  2. A

    Open a random file with C#?

    In this particular case you are correct, it is not required. Was sort of just agreeing with some insight shared above that creating a new Random object each time a function is called can be problematic if the function is called fast enough.
  3. A

    How to pay taxes with no invoices?

    Keep track of expenses / payments / profits however you please. Bank Statements do fine, just make sure your numbers match up. Banks will also send you tax related information based on where you live. Then just file, pay, cry for a bit, then keep making monies.
  4. A

    Open a random file with C#?

    I second the need the for a global static random. Without it, if a function is called fast enough it can produce the same results. Also when using Random.Next() and Array.Length there is no need to put -1. You are giving the inclusive lower and exclusive upper numbers. (Random.Next() will never...
  5. A

    Skype bot help

    You could try using Skype4COM (if that's what your not using already). I've personally used it in C# as well as python (skype4py) to make auto responders. I think they have closed access to the desktop developer program and are the process of shutting it down though. There is still some good...
Back
Top