Click here to Skip to main content
15,898,374 members
Home / Discussions / C#
   

C#

 
GeneralRe: Checkers under c# Pin
SimonS25-Sep-04 22:25
SimonS25-Sep-04 22:25 
GeneralRe: Checkers under c# Pin
Anonymous26-Sep-04 5:50
Anonymous26-Sep-04 5:50 
QuestionCan I put an email to the inbox of the outlook (not outlook express) using outlook object model? Pin
ting66825-Sep-04 16:01
ting66825-Sep-04 16:01 
QuestionTransfer an SQL database? Pin
cemlouis25-Sep-04 14:09
cemlouis25-Sep-04 14:09 
AnswerRe: Transfer an SQL database? Pin
Colin Angus Mackay25-Sep-04 14:56
Colin Angus Mackay25-Sep-04 14:56 
Questiontrying to fade in and out a picture on a form? Pin
vista2725-Sep-04 13:46
vista2725-Sep-04 13:46 
AnswerRe: trying to fade in and out a picture on a form? Pin
Alex Korchemniy25-Sep-04 15:03
Alex Korchemniy25-Sep-04 15:03 
AnswerRe: trying to fade in and out a picture on a form? Pin
yoaz26-Sep-04 3:43
yoaz26-Sep-04 3:43 
i don't think having 2 forms is a good idea.
maybe you can set the Alpha property of the image by defining System.Drawing.Imaging.ColorMatrix something like:
float[][] matrixItems ={ 
	new float[] {1, 0, 0, 0, 0},
	new float[] {0, 1, 0, 0, 0},
	new float[] {0, 0, 1, 0, 0},
	new float[] {0, 0, 0, xxxf, 0}, 
	new float[] {0, 0, 0, 0, 1}}; 
System.Drawing.Imaging.ColorMatrix colorMatrix = new System.Drawing.Imaging.ColorMatrix(matrixItems);

where xxx is the desired alpha value. its a float between 0 and 1. Now create an image attrbute:
System.Drawing.Imaging.ImageAttributes imageAtt = new System.Drawing.Imaging.ImageAttributes();

Finally, draw the image using the DrawImage function of a Graphics object you have created from your pictureBox, panel, etc. to which you pass the ImageAttributes object you've just created

there are no facts, only interpretations
GeneralReflection and operators Pin
Ben Martin25-Sep-04 12:39
Ben Martin25-Sep-04 12:39 
GeneralRe: Reflection and operators Pin
Alex Korchemniy25-Sep-04 12:58
Alex Korchemniy25-Sep-04 12:58 
GeneralRe: Reflection and operators Pin
Ben Martin25-Sep-04 14:52
Ben Martin25-Sep-04 14:52 
GeneralRe: Reflection and operators Pin
Ben Martin25-Sep-04 20:12
Ben Martin25-Sep-04 20:12 
Generalfind a record Pin
cmarmr25-Sep-04 12:27
cmarmr25-Sep-04 12:27 
GeneralRe: find a record Pin
Alex Korchemniy25-Sep-04 12:44
Alex Korchemniy25-Sep-04 12:44 
GeneralDigi cam wizard Pin
Alex Korchemniy25-Sep-04 12:25
Alex Korchemniy25-Sep-04 12:25 
GeneralDifference between 2 datetime Pin
Apusnaias25-Sep-04 11:48
Apusnaias25-Sep-04 11:48 
GeneralRe: Difference between 2 datetime Pin
Alex Korchemniy25-Sep-04 12:28
Alex Korchemniy25-Sep-04 12:28 
GeneralRe: Difference between 2 datetime Pin
Apusnaias25-Sep-04 12:44
Apusnaias25-Sep-04 12:44 
GeneralRe: Difference between 2 datetime Pin
Roland Bär29-Sep-04 3:39
Roland Bär29-Sep-04 3:39 
Generalsaving a sequence of gif images in a single file Pin
hudhud25-Sep-04 10:15
hudhud25-Sep-04 10:15 
GeneralHelp needed.....Writing a Swap function using pointer variables... Pin
Kiran Satish25-Sep-04 9:44
Kiran Satish25-Sep-04 9:44 
GeneralRe: Help needed.....Writing a Swap function using pointer variables... Pin
Colin Angus Mackay25-Sep-04 14:59
Colin Angus Mackay25-Sep-04 14:59 
GeneralRe: Help needed.....Writing a Swap function using pointer variables... Pin
Kiran Satish25-Sep-04 19:18
Kiran Satish25-Sep-04 19:18 
GeneralProblem Solved Pin
Kiran Satish25-Sep-04 19:50
Kiran Satish25-Sep-04 19:50 
GeneralConverting byte[] to string Pin
João Paulo Figueira25-Sep-04 9:20
professionalJoão Paulo Figueira25-Sep-04 9: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.