+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: C# Tutorial: Cropping images and bitmaps

  1. #11
    Charny is offline Learning Programmer
    Join Date
    Jan 2010
    Location
    Quebec
    Posts
    53
    Rep Power
    0

    Re: C# Tutorial: Cropping images and bitmaps

    Thanks for this tutorial, it will probably be useful in my next application.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #12
    gokuajmes's Avatar
    gokuajmes is offline Programming God
    Join Date
    Jan 2010
    Location
    India
    Posts
    516
    Blog Entries
    5
    Rep Power
    12

    Re: C# Tutorial: Cropping images and bitmaps

    i could use this for making Graphical effects.Thanks for the tut
    How do i + Rep you ?

  4. #13
    Mtsc is offline Newbie
    Join Date
    Dec 2010
    Posts
    1
    Rep Power
    0

    Re: C# Tutorial: Cropping images and bitmaps

    Hi, I'm having some errors with using your coding. I'm still a beginner in C#. Can you tell me why I encounter errors like "the name xxxx does not exist in the current context" What does current context means? Thank you.

  5. #14
    sam_coder's Avatar
    sam_coder is offline Programming Expert
    Join Date
    Dec 2010
    Location
    Canada
    Posts
    372
    Rep Power
    7

    Re: C# Tutorial: Cropping images and bitmaps

    Quote Originally Posted by Mtsc View Post
    Hi, I'm having some errors with using your coding. I'm still a beginner in C#. Can you tell me why I encounter errors like "the name xxxx does not exist in the current context" What does current context means? Thank you.
    this means, you're trying to reference an object that doesnt exist. example
    int Test = 1;
    Console.WriteLine(test); //because c# is case sensitive, test does not exist in this context.

    This could be caused by something like this.. or even

    {
    int test = 4;
    }
    Console.WriteLine(test); //test no longer exists

+ Reply to Thread
Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 213
    Last Post: 04-14-2011, 07:57 PM
  2. Tutorial: Storing Images in MySQL with PHP
    By Jordan in forum PHP Tutorials
    Replies: 47
    Last Post: 01-04-2011, 08:37 PM
  3. Graphics in VB.NET Part 1 - Bitmaps
    By Vswe in forum Visual Basic Tutorials
    Replies: 3
    Last Post: 11-07-2009, 05:59 PM
  4. Comparing two monochrome bitmaps
    By brownhead in forum C and C++
    Replies: 9
    Last Post: 08-14-2009, 04:20 AM
  5. CSS and Images
    By Chan in forum JavaScript and CSS
    Replies: 5
    Last Post: 10-26-2006, 01:38 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts