CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Crozone

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    4,072

    Re: Issues with very simple bootloader off USB

    I think I have found the issue, here: http://bootloader.wikidot.com/linux:boot:usb-grub

    When a USB device is emulated as a floppy disk drive, the value of dl is in fact 00h. However, instead of...
  2. Replies
    4
    Views
    4,072

    Re: Issues with very simple bootloader off USB

    Thankyou for your post. That website was very helpful (it is now bookmarked :P), but I was still unable to resolve the issue. I copied my image to a floppy disk and stuck it in an old pentium 2 pc...
  3. Replies
    4
    Views
    4,072

    Issues with very simple bootloader off USB

    Hi, I've been working on a very simple bootloader that should run off a usb flash drive or similar attached device. All it does is load the next 1024 bytes off an unformatted disk into ram, and jump...
  4. Re: Having trouble writing program to find average of numbers

    static void Main(string[] args)
    {
    double input = 0;
    double total = 0;
    int numberOfTerms = 1;

    Console.WriteLine("To end this program,...
  5. Replies
    3
    Views
    5,952

    Re: Many individual threads run from one method

    thankyou for the link.

    However, it's not so much that I want them to share the same object, I want each thread to each have their own, individual List of IP addresses, and be totally independent ...
  6. Replies
    3
    Views
    5,952

    Many individual threads run from one method

    Hello,

    At the moment I am developing an app in VC# 2008. The aim is to ping a large number of ip addresses simultaneously.

    Basically, I generate a list of 20 IP addresses and make a new thread...
  7. Replies
    3
    Views
    8,030

    Re: Exception Handling within ForEach loop

    Thankyou, this code works great.
  8. Replies
    3
    Views
    8,030

    Exception Handling within ForEach loop

    Hello,

    I have a program that needs to get the file paths of all files in a given folder.

    The following code goes through every file in the folder specified by txtFolderPath.Text, and adds this...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured