Jump to content

  •  

  • iBotModz CBox


    dschu012's Content

    There have been 58 items by dschu012 (Search limited from 02-July 23)



    Sort by                Order  

    #24573 Connection Problems

    Posted by dschu012 on 18 June 2008 - 05:12 PM in Help Desk

    You have to create a network bridge to get xbox live and media center both to work. Try googling it, its what I do with my laptop. If you can't find a tutorial how to do it after some searches I'll try to look for you.

    Edit: http://my.afterdawn.com/krafty7/blog_entry.cfm/1706/ics
    Try looking at that



    #63750 :O ---> B)

    Posted by dschu012 on 29 January 2009 - 07:19 PM in Off-Topic

    too bad their fugly.

    QFT



    #23810 .map resigner

    Posted by dschu012 on 16 June 2008 - 09:17 PM in Halo 3 / ODST

    Even if we get the key, thats only like the "hint" key. Then we can decode/decrypt with it. Its like National Treasure 2. We have to steal the key, then decode it.

    Good movie.



    #71885 .::Fun with Projectile Speeds::.

    Posted by dschu012 on 01 March 2009 - 10:59 PM in H3 Modding

    Why care if he has made progress or not in Halo or not. He made a video that he thought was cool (it looked pretty cool) and wanted to share it. Why does everyone have to flame about any map modding video posted anywhere?



    #89143 (VB.NET & C#) Executing A File

    Posted by dschu012 on 16 May 2009 - 08:42 AM in Coding / Development

    You can also run the process with arguments if acceptable.

    Example:
    Process.Start("firefox.exe","-url www.ibotmodz.net");



    #88232 (C#) Loops

    Posted by dschu012 on 11 May 2009 - 09:56 PM in Coding / Development

    Should just be called a for loop not "for next". While your at it why not cover do while (they can be helpful) and foreach.



    #88329 (C#) Loops

    Posted by dschu012 on 12 May 2009 - 12:00 PM in Coding / Development

    While is in there, look further down.

    I mean a "do while" loop.

    int i = 0;
    
    do
    {
    i++;
    }while(i < 10);

    That example really doesn't prove to be helpful. But it can be very helpful whenever you need to do something atleast once, then repeat the action based on the results.



    #88337 (C#) Linear Searching

    Posted by dschu012 on 12 May 2009 - 12:11 PM in Coding / Development

    A recursive function is a function that calls itself.

    Example:
    //C++ Returns the Greatest Common Denominator
    int gcd(int x, int y)
    {
      if (y == 0)
    	 return x;
      else
    	 return gcd(y, x % y); //calls itself
    }

    What you posted is a linear search