Click here to Skip to main content
15,927,744 members
Home / Discussions / C#
   

C#

 
GeneralRe: Unable to check INT values with == Pin
Kodanda Pani15-Feb-05 23:41
Kodanda Pani15-Feb-05 23:41 
QuestionHow to Customize my DataGrid Pin
innocent7315-Feb-05 21:33
innocent7315-Feb-05 21:33 
QuestionWindows Shell Integration? Pin
Anonymous15-Feb-05 21:03
Anonymous15-Feb-05 21:03 
GeneralC# networking. text sent over network transforms Pin
Member 154579515-Feb-05 20:51
Member 154579515-Feb-05 20:51 
GeneralRe: C# networking. text sent over network transforms Pin
Colin Angus Mackay16-Feb-05 0:05
Colin Angus Mackay16-Feb-05 0:05 
GeneralRe: C# networking. text sent over network transforms Pin
Member 154579516-Feb-05 14:57
Member 154579516-Feb-05 14:57 
QuestionHow to open all the pages in .tif files? Pin
Deepa3015-Feb-05 19:17
Deepa3015-Feb-05 19:17 
AnswerRe: How to open all the pages in .tif files? Pin
Gavin Jeffrey15-Feb-05 20:21
Gavin Jeffrey15-Feb-05 20:21 
you need to iterate through the tif file to get each individual image -
<br />
System.Drawing.Image i = System.Drawing.Image.FromStream(mem);<br />
int count = i.GetFrameCount(System.Drawing.Imaging.FrameDimension.Page);<br />
for (int x = 0 ; x < count ; x++)<br />
{<br />
   i.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page,x);<br />
   Bitmap bmp = new Bitmap(i, i.Width / 2 * 140 / 100, i.Height * 140 / 100);<br />
}<br />

Then if you want to zoom the easiest way is probably just to change the width and height of your image.
GeneralRe: How to open all the pages in .tif files? Pin
Deepa3015-Feb-05 23:44
Deepa3015-Feb-05 23:44 
GeneralRe: How to open all the pages in .tif files? Pin
Gavin Jeffrey16-Feb-05 0:46
Gavin Jeffrey16-Feb-05 0:46 
GeneralRe: How to open all the pages in .tif files? Pin
Deepa3016-Feb-05 1:26
Deepa3016-Feb-05 1:26 
GeneralRe: How to open all the pages in .tif files? Pin
Gavin Jeffrey17-Feb-05 10:34
Gavin Jeffrey17-Feb-05 10:34 
QuestionEquivalent of Delay in C#? Pin
Gregg Holter15-Feb-05 18:18
Gregg Holter15-Feb-05 18:18 
AnswerRe: Equivalent of Delay in C#? Pin
S. Senthil Kumar15-Feb-05 18:27
S. Senthil Kumar15-Feb-05 18:27 
GeneralRe: Equivalent of Delay in C#? Pin
Gregg Holter15-Feb-05 18:31
Gregg Holter15-Feb-05 18:31 
Generalaccessing database using webservice Pin
ronin177015-Feb-05 15:57
ronin177015-Feb-05 15:57 
GeneralRe: accessing database using webservice Pin
Kodanda Pani15-Feb-05 18:07
Kodanda Pani15-Feb-05 18:07 
GeneralRe: accessing database using webservice Pin
padvit15-Feb-05 20:10
padvit15-Feb-05 20:10 
Questionmemory leaks? Pin
15-Feb-05 15:32
suss15-Feb-05 15:32 
AnswerRe: memory leaks? Pin
S. Senthil Kumar15-Feb-05 18:28
S. Senthil Kumar15-Feb-05 18:28 
GeneralRe: memory leaks? Pin
TheSnakeByte15-Feb-05 20:03
TheSnakeByte15-Feb-05 20:03 
GeneralGet user groups of an authenticated domain user Pin
Hong Dat Huynh15-Feb-05 15:01
Hong Dat Huynh15-Feb-05 15:01 
GeneralRe: Get user groups of an authenticated domain user Pin
Mazdak15-Feb-05 23:17
Mazdak15-Feb-05 23:17 
GeneralRe: Get user groups of an authenticated domain user Pin
Scott Serl16-Feb-05 8:13
Scott Serl16-Feb-05 8:13 
GeneralRemove Hyperlink attribute from DataGrid in C# Pin
Vipul Mehta15-Feb-05 14:45
Vipul Mehta15-Feb-05 14:45 

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.