Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. alanshort

    forced program exit ??

    I've written a small app which downloads a file from the internet then parses it. If the file cannot be downloaded, the execption is caught and it calls its self again for another try. (however, this will go on forever) i'm using for example public static void getFile() { string fileToGet =...
  2. alanshort

    overlaying images with transparency..

    I'm now using a bmp and I've got this so far which works however, the arrow is not being displayed correctly. It's being resized for some reason... any ideas ?? public static void updateWeatherMap () { Graphics g; Image weatherMap = Image.FromFile...
  3. alanshort

    overlaying images with transparency..

    Hi I'm tryting to create a weather map. Currently, I have two images, the map and an arrow to show wind direction. I would like to use C# to load the map image(bmp) as a background then paste the arrow on top of the map. The arrow is currently a png with transparency. Is this possible ...
  4. alanshort

    images and drawing.

    thanks caudet, just what i was looking for. cheers A
  5. alanshort

    images and drawing.

    hi I would like to load an image from file, draw on it and save it as a different file. Something like this.... public static void updateWeatherMap () { Image weatherMap = Image.FromFile (@"outputMap/weathermap.gif"); Pen bluePen = new Pen (Color.Blue, 3); //this is the...

Part and Inventory Search

Back
Top