Click here to Skip to main content
15,889,863 members
Home / Discussions / C#
   

C#

 
GeneralRe: voice Pin
Wizard_0127-Dec-03 10:36
Wizard_0127-Dec-03 10:36 
GeneralRe: voice Pin
Nick Parker27-Dec-03 10:38
protectorNick Parker27-Dec-03 10:38 
GeneralProblem adding web reference to Visual c++ application Pin
Anonymous27-Dec-03 9:56
Anonymous27-Dec-03 9:56 
GeneralConditional Xml Document Reading Pin
LokiSD27-Dec-03 6:04
LokiSD27-Dec-03 6:04 
GeneralRe: Conditional Xml Document Reading Pin
Nick Parker27-Dec-03 8:14
protectorNick Parker27-Dec-03 8:14 
Generalread jpeg into memory Pin
Leon Radley27-Dec-03 5:30
Leon Radley27-Dec-03 5:30 
GeneralRe: read jpeg into memory Pin
Nick Parker27-Dec-03 8:33
protectorNick Parker27-Dec-03 8:33 
GeneralRe: read jpeg into memory Pin
Wizard_0127-Dec-03 8:40
Wizard_0127-Dec-03 8:40 
I don't thing this should be the best way, maybe you should read and draw image on demand. How does it take to load e.g. 100 jpegs ?!

in .NET is very easy :

<br />
public bool ThumbnailCallback()<br />
{<br />
return false;<br />
}<br />
public void Example_GetThumb(PaintEventArgs e)<br />
{<br />
Image.GetThumbnailImageAbort myCallback =<br />
new Image.GetThumbnailImageAbort(ThumbnailCallback);<br />
Bitmap myBitmap = new Bitmap("Climber.jpg");<br />
Image myThumbnail = myBitmap.GetThumbnailImage(<br />
40, 40, myCallback, IntPtr.Zero);<br />
e.Graphics.DrawImage(myThumbnail, 150, 75);<br />
}<br />



Wizard_01
GeneralRe: read jpeg into memory Pin
Nick Parker27-Dec-03 8:54
protectorNick Parker27-Dec-03 8:54 
GeneralRe: read jpeg into memory Pin
Leon Radley29-Dec-03 1:49
Leon Radley29-Dec-03 1:49 
GeneralADS Pin
realaravind27-Dec-03 2:59
realaravind27-Dec-03 2:59 
GeneralRe: ADS Pin
Wizard_0127-Dec-03 3:12
Wizard_0127-Dec-03 3:12 
QuestionHow to create menuItems dynamic on Popup event? Pin
Chris Richner27-Dec-03 2:02
Chris Richner27-Dec-03 2:02 
AnswerRe: How to create menuItems dynamic on Popup event? Pin
Wizard_0127-Dec-03 3:05
Wizard_0127-Dec-03 3:05 
GeneralRe: How to create menuItems dynamic on Popup event? Pin
Chris Richner27-Dec-03 3:29
Chris Richner27-Dec-03 3:29 
GeneralRe: How to create menuItems dynamic on Popup event? Pin
Heath Stewart27-Dec-03 5:29
protectorHeath Stewart27-Dec-03 5:29 
GeneralRe: How to create menuItems dynamic on Popup event? - what I did with a couple of classes Pin
Bryan White1-Jan-04 22:20
Bryan White1-Jan-04 22:20 
GeneralC# and COM - Further information Pin
Tristan Rhodes27-Dec-03 1:17
Tristan Rhodes27-Dec-03 1:17 
GeneralRe: C# and COM - Further information Pin
Nick Parker27-Dec-03 4:30
protectorNick Parker27-Dec-03 4:30 
GeneralRe: C# and COM - Further information Pin
27-Dec-03 5:15
suss27-Dec-03 5:15 
GeneralRe: C# and COM - Further information Pin
Heath Stewart27-Dec-03 5:26
protectorHeath Stewart27-Dec-03 5:26 
QuestionHow can I make a newline in &quot;net send&quot; Pin
bookwormXP26-Dec-03 19:50
bookwormXP26-Dec-03 19:50 
AnswerRe: How can I make a newline in &quot;net send&quot; Pin
leppie27-Dec-03 0:39
leppie27-Dec-03 0:39 
GeneralRe: How can I make a newline in &quot;net send&quot; Pin
bookwormXP27-Dec-03 1:01
bookwormXP27-Dec-03 1:01 
GeneralRe: How can I make a newline in &quot;net send&quot; Pin
leppie27-Dec-03 1:20
leppie27-Dec-03 1:20 

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.