Click here to Skip to main content
15,901,373 members
Home / Discussions / C#
   

C#

 
GeneralMessage Removed Pin
12-Oct-11 10:21
professionalN_tro_P12-Oct-11 10:21 
GeneralRe: Need lots of help! Pin
DaveyM6912-Oct-11 10:28
professionalDaveyM6912-Oct-11 10:28 
AnswerRe: Need lots of help! Pin
BillWoodruff12-Oct-11 15:08
professionalBillWoodruff12-Oct-11 15:08 
AnswerRe: Need lots of help! Pin
BobJanova12-Oct-11 23:20
BobJanova12-Oct-11 23:20 
QuestionIssue with creating bitmap image data for Format8bppIndexed and Format4bppIndexed Pin
AMSR12-Oct-11 8:35
AMSR12-Oct-11 8:35 
AnswerRe: Issue with creating bitmap image data for Format8bppIndexed and Format4bppIndexed Pin
BobJanova12-Oct-11 22:46
BobJanova12-Oct-11 22:46 
GeneralRe: Issue with creating bitmap image data for Format8bppIndexed and Format4bppIndexed Pin
AMSR12-Oct-11 23:24
AMSR12-Oct-11 23:24 
GeneralRe: Issue with creating bitmap image data for Format8bppIndexed and Format4bppIndexed Pin
AMSR12-Oct-11 23:27
AMSR12-Oct-11 23:27 
We tried using palette information eventhough we faced same issue.

here is the code used to assign palatte

ColorPalette palette = bitmap.Palette;

for (int i = 0; i < palette.Entries.Length; i++)
{
int cval = 17 * i;
palette.Entries[i] = Color.FromArgb(0, cval, cval, cval);
}

bitmap.Palette = palette;

Instead of palette.Entries.Length we also tried giving 256.

Thanks for the reply.
QuestionHow to Programatically find the application pool of an applicatiom Pin
yaju patel12-Oct-11 4:14
yaju patel12-Oct-11 4:14 
AnswerRe: How to Programatically find the application pool of an applicatiom Pin
Ravi Bhavnani13-Oct-11 16:21
professionalRavi Bhavnani13-Oct-11 16:21 
GeneralRe: How to Programatically find the application pool of an applicatiom Pin
yaju patel14-Oct-11 1:43
yaju patel14-Oct-11 1:43 
GeneralRe: How to Programatically find the application pool of an applicatiom Pin
Ravi Bhavnani14-Oct-11 1:47
professionalRavi Bhavnani14-Oct-11 1:47 
QuestionGet Client machine localization Pin
Mugdha_Aditya12-Oct-11 2:55
Mugdha_Aditya12-Oct-11 2:55 
AnswerRe: Get Client machine localization Pin
Eddy Vluggen12-Oct-11 7:22
professionalEddy Vluggen12-Oct-11 7:22 
GeneralRe: Get Client machine localization Pin
Mugdha_Aditya12-Oct-11 19:38
Mugdha_Aditya12-Oct-11 19:38 
AnswerRe: Get Client machine localization Pin
Bernhard Hiller12-Oct-11 19:56
Bernhard Hiller12-Oct-11 19:56 
GeneralRe: Get Client machine localization Pin
Mugdha_Aditya12-Oct-11 20:08
Mugdha_Aditya12-Oct-11 20:08 
Questionblock os Pin
mspmohanraj11-Oct-11 20:02
mspmohanraj11-Oct-11 20:02 
AnswerRe: block os Pin
Richard MacCutchan11-Oct-11 21:50
mveRichard MacCutchan11-Oct-11 21:50 
GeneralRe: block os Pin
harold aptroot11-Oct-11 21:54
harold aptroot11-Oct-11 21:54 
AnswerRe: block os Pin
Dave Kreskowiak12-Oct-11 1:46
mveDave Kreskowiak12-Oct-11 1:46 
AnswerRe: block os Pin
Not Active12-Oct-11 2:16
mentorNot Active12-Oct-11 2:16 
AnswerRe: block os Pin
loyal ginger12-Oct-11 2:48
loyal ginger12-Oct-11 2:48 
GeneralRe: block os Pin
Not Active12-Oct-11 3:01
mentorNot Active12-Oct-11 3:01 
GeneralRe: block os Pin
jschell12-Oct-11 12:24
jschell12-Oct-11 12:24 

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.