DotNetShoutout - Stories tagged with image
2
Shouts

SQL UPDATE statement with SELECT and SQL Server Image data type column

published 682 days, 20 hours, 56 minutes ago posted by lenielleniel 684 days, 28 minutes ago
Sunday, August 07, 2011 8:39:59 PM GMT Saturday, August 06, 2011 5:08:01 PM GMT
In a SQL Server database I have a table called users which has a column named signature. This columns is of type Image. My production SQL Server is located in a shared hosting environment. One problem I’ve been facing lately is that I need permission to execute an UPDATE statement to insert a signature image for a given user. This problem occurs because to insert a signature image for a given user I have to execute a BULK statement. Read on... (more)
category: Data | clicked: 17 | comment | | source: www.leniel.net
tags: SQL Server, Bulk, Update, ssms, select, data, SQL, image, Microsoft, Database, linked server
5
Shouts

Visual Studio 2010 Image Optimizer Extension - Gil Fink on .Net

published 766 days, 5 hours, 47 minutes ago posted by gilfgilf 768 days, 4 hours, 11 minutes ago
Monday, May 16, 2011 11:49:14 AM GMT Saturday, May 14, 2011 1:25:23 PM GMT
One thing that caught my attention while watching the session that Mads Kristensen had in MIX11 was the Image Optimizer extension he is writing. This extension can be very valuable when you are trying to optimize your ASP.NET application (whether it is Web Forms or MVC 3). (more)
category: How To | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: optimizing, Visual Studio 2010, image, Extension
3
Shouts

Advanced Dotnet Tutorial: CSS: Change Image of Button On Hover and Disabled

posted by learndotnet123learndotnet123 771 days, 6 hours, 11 minutes ago
Wednesday, May 11, 2011 11:25:09 AM GMT
This article helps to understand how CSS is changed automatically when a button is disabled from the server side. Further, how to define CSS when a user hovers over an element. Step 1: Define CSS for button Define two css (i.e. one for hover and another normal) for each button. Button1: Which will enable 3rd button CSS for button1 when it is hovered by the user. Here CButtonMakeEnable:hover does it all; :hover defines what css is applied when an element is hovered. .CButtonMakeEnable:hover ... (more)
category: Web Dev | clicked: 3 | comment | | source: advanceddotnettutorial.blogspot.com
tags: image, CSS, hover, ASP.NET
2
Shouts

Asp.Net Image Dropdownlist

posted by pons_saravananpons_saravanan 850 days, 8 hours, 8 minutes ago
Monday, February 21, 2011 9:28:36 AM GMT
Image Dropdownlist using Repeater and ImageHandler I was searching for a Dropdownlist that can have a image thumbnail before the text in each item in the list. However, in ASP.net do not have any Dropdownlist that can contain image thumbnails. WPF does but not ASP.Net. Hence, I started planning to build... (more)
category: Web Dev | clicked: 10 | comment | | source: www.vbknowledgebase.com
tags: Image Handling, image, dropdownlist, ASP.NET
9
Shouts

Creating a scrollable and zoomable image viewer in C# Part 4 :: Cyotek

published 1026 days, 2 hours, 37 minutes ago posted by http://richardmoss.myopenid.com/http://richardmoss.myopenid.com/ 1027 days, 39 minutes ago
Sunday, August 29, 2010 2:59:30 PM GMT Saturday, August 28, 2010 4:57:40 PM GMT
Article on creating an image viewer for Windows Forms that can be scrolled and zoomed using C#. (more)
category: UX | clicked: 6 | comment | | source: cyotek.com
tags: C#, image, zoom, WinForms
6
Shouts

Dealing with Images with Bad Metadata - Corrupted Color Profiles in WPF - Scott Hanselman

published 1054 days, 3 hours, 4 minutes ago posted by iftekharahmedamitiftekharahmedamit 1055 days, 18 hours, 9 minutes ago
Sunday, August 01, 2010 2:32:30 PM GMT Friday, July 30, 2010 11:27:28 PM GMT
Creating a Twitter client is a really interesting exercise in application development because, amongst many reasons, it's taking input from effectively an infinite number of people and places. Never trust user input, right? Input to your application comes not only in the form of text, but also images. Writing a Twitter client is effectively writing a web browser that only browses one website. Getting a browser stable is hard. Long Zheng, Raphael Rivera and the MetroTwit team (MetroTwit is a lovely new T... (more)
category: UX | clicked: 0 | comment | | source: www.hanselman.com
tags: Metadata, color, Images, image, WPF
11
Shouts

Open Source Interactive WPF image cropper control released

published 1078 days, 4 hours, 3 minutes ago posted by akoskapuiakoskapui 1079 days, 10 hours, 4 minutes ago
Thursday, July 08, 2010 1:33:51 PM GMT Wednesday, July 07, 2010 7:32:44 AM GMT
Although there are already some good articles on how to crop an image in WPF, the ones We tried out did not fit out requirements, so we decided to write our own control. Our control extends the regular Image control, so you can use the all of the features you are used to have. That’s it in a nutshell. It’s a simple interactive image cropping control written in WPF and C#. (more)
category: How To | clicked: 20 | comment | | source: teamdistinction.com
tags: interactive, copper, adorner, C#, OpenSource, cropping, image, Source, WPF, Tutorial, crop, windows presentation foundation, XAML
7
Shouts

Printing problem in Silverlight 4.0 RC - loading images in code behind

published 1186 days, 4 hours, 31 minutes ago posted by http://jacekciereszko.pl/http://jacekciereszko.pl/ 1187 days, 15 hours, 52 minutes ago
Monday, March 22, 2010 1:05:50 PM GMT Sunday, March 21, 2010 1:44:39 AM GMT
Few days ago I faced a problem with printing in new Silverlight 4 RC. When you try to dynamically load image (in code behind) and print it, it doesn't work. Paper sheet is blank.ProblemXAML file: XAML.cs: image.Source = new BitmapImage(new Uri(imageUri, UriKind.RelativeOrAbsolute)); Print: var pd = new PrintDocument();   pd.PrintPage += (s, args) =>     {       args.PageVisual = image;     };   pd.Print();Result: Blank paper. Solution What you need to do, is forced Silverlight engine... (more)
category: Metro | clicked: 2 | comment | | source: geekswithblogs.net
tags: Silverlight 4 RC, image, printing
4
Shouts

Rotaing Images using GDI+

posted by vcskicksvcskicks 1296 days, 20 hours, 59 minutes ago
Tuesday, December 01, 2009 8:37:44 PM GMT
Rotate images in C# and other .NET languages using the built-in GDI+ library. (more)
category: Web Dev | clicked: 0 | comment | | source: www.vcskicks.com
tags: C#, image