Click here to Skip to main content
15,913,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Import Excel Option Pin
Jörgen Andersson27-Feb-09 4:31
professionalJörgen Andersson27-Feb-09 4:31 
Questionplease help me Pin
sivasampathkumar24-Feb-09 19:09
sivasampathkumar24-Feb-09 19:09 
AnswerRe: please help me Pin
Christian Graus24-Feb-09 19:16
protectorChristian Graus24-Feb-09 19:16 
GeneralRe: please help me Pin
N a v a n e e t h24-Feb-09 21:20
N a v a n e e t h24-Feb-09 21:20 
QuestionImage Resize Pin
Robymon24-Feb-09 18:57
Robymon24-Feb-09 18:57 
AnswerRe: Image Resize Pin
Christian Graus24-Feb-09 19:17
protectorChristian Graus24-Feb-09 19:17 
GeneralRe: Image Resize Pin
Robymon24-Feb-09 19:39
Robymon24-Feb-09 19:39 
GeneralRe: Image Resize Pin
Christian Graus24-Feb-09 19:43
protectorChristian Graus24-Feb-09 19:43 
something like:

Bitmap bm = new Bitmap(newWidth, newHeight);

using (Graphics g = Graphics.FromImage(bm))
{
g.InterpolationMode = ??? // I don't recall what enum this is, or the values, set to bicubic if it's offered, or bilinear otherwise.
g.DrawImage(theOriginalImage, 0, 0, theOriginalImage.Width, theOriginalImage.Height, 0, 0, newWidth, newHeight);
}

MemoryStream s = new MemoryStream;

bm.Save(s, ImageType.Gif);


This is all from memory, it almost certainly won't compile, but it's the sort of thing you need to write. Try referring to your textbooks or google for the specifics.

Christian Graus

Driven to the arms of OSX by Vista.

GeneralRe: Image Resize Pin
Robymon24-Feb-09 19:49
Robymon24-Feb-09 19:49 
QuestionHow i store all Images into applcation Directroy Pin
Rameez Raja24-Feb-09 18:51
Rameez Raja24-Feb-09 18:51 
AnswerRe: How i store all Images into applcation Directroy Pin
Christian Graus24-Feb-09 19:17
protectorChristian Graus24-Feb-09 19:17 
Questionsessions Pin
sritha24-Feb-09 18:51
sritha24-Feb-09 18:51 
AnswerRe: sessions Pin
Christian Graus24-Feb-09 19:19
protectorChristian Graus24-Feb-09 19:19 
Questionsetup ASP Pin
aratireddy24-Feb-09 18:31
aratireddy24-Feb-09 18:31 
AnswerRe: setup ASP Pin
Vimalsoft(Pty) Ltd24-Feb-09 18:54
professionalVimalsoft(Pty) Ltd24-Feb-09 18:54 
Questionhow to create more number of buttons in MessageBox Pin
Arpita2724-Feb-09 18:14
Arpita2724-Feb-09 18:14 
AnswerRe: how to create more number of buttons in MessageBox Pin
Christian Graus24-Feb-09 19:20
protectorChristian Graus24-Feb-09 19:20 
AnswerRe: how to create more number of buttons in MessageBox Pin
N a v a n e e t h24-Feb-09 19:23
N a v a n e e t h24-Feb-09 19:23 
AnswerRe: how to create more number of buttons in MessageBox Pin
Arpita2724-Feb-09 19:38
Arpita2724-Feb-09 19:38 
GeneralRe: how to create more number of buttons in MessageBox Pin
N a v a n e e t h24-Feb-09 19:52
N a v a n e e t h24-Feb-09 19:52 
GeneralRe: how to create more number of buttons in MessageBox Pin
Christian Graus24-Feb-09 20:16
protectorChristian Graus24-Feb-09 20:16 
GeneralRe: how to create more number of buttons in MessageBox Pin
Greg Chelstowski24-Feb-09 20:51
Greg Chelstowski24-Feb-09 20:51 
GeneralRe: how to create more number of buttons in MessageBox Pin
N a v a n e e t h24-Feb-09 21:14
N a v a n e e t h24-Feb-09 21:14 
GeneralRe: how to create more number of buttons in MessageBox Pin
Greg Chelstowski24-Feb-09 21:27
Greg Chelstowski24-Feb-09 21:27 
GeneralRe: how to create more number of buttons in MessageBox Pin
N a v a n e e t h24-Feb-09 21:32
N a v a n e e t h24-Feb-09 21:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.