Click here to Skip to main content
15,887,376 members
Home / Discussions / C#
   

C#

 
GeneralRe: ContextMenu problem Pin
James T. Johnson10-Sep-03 8:25
James T. Johnson10-Sep-03 8:25 
GeneralRe: ContextMenu problem Pin
Mazdak10-Sep-03 9:08
Mazdak10-Sep-03 9:08 
GeneralRe: ContextMenu problem Pin
James T. Johnson10-Sep-03 9:24
James T. Johnson10-Sep-03 9:24 
GeneralRe: ContextMenu problem Pin
Mazdak10-Sep-03 22:00
Mazdak10-Sep-03 22:00 
GeneralAdd typed DataTable from one DataSet to another DataSet Pin
STW9-Sep-03 21:36
STW9-Sep-03 21:36 
GeneralRe: Add typed DataTable from one DataSet to another DataSet Pin
A.Wegierski10-Sep-03 2:54
A.Wegierski10-Sep-03 2:54 
GeneralRelocating Generated Dlls Pin
jtmtv189-Sep-03 13:41
jtmtv189-Sep-03 13:41 
Generalcasting System.Drawing.Imaging.EncoderValue Pin
RHamilton9-Sep-03 12:54
RHamilton9-Sep-03 12:54 
I see people doing this with VB, but I can't get it to work in C#.

<br />
System.Drawing.Imaging.ImageCodecInfo    myImageCodecInfo;<br />
System.Drawing.Imaging.Encoder           myEncoder;<br />
System.Drawing.Imaging.EncoderParameter  myEncoderParameter;<br />
System.Drawing.Imaging.EncoderParameters myEncoderParameters;<br />
<br />
myImageCodecInfo = GetEncoderInfo("image/tiff");<br />
<br />
myEncoder = new System.Drawing.Imaging.Encoder(System.Drawing.Imaging.Encoder.Compression.Guid);<br />
<br />
myEncoderParameters = new System.Drawing.Imaging.EncoderParameters(1);<br />
<br />
myEncoderParameter = new System.Drawing.Imaging.EncoderParameter(myEncoder,<br />
	:confused:System.Drawing.Imaging.EncoderValue.CompressionCCITT3<br />
			);<br />
<br />
myEncoderParameters.Param[0] = myEncoderParameter;<br />
DestBitmap.Save(strFileName, myImageCodecInfo, myEncoderParameters); 


The compiler insists that it doesn't know how to convert CompressionCCITT3 to byteConfused | :confused: . I don't know why EncoderValue isn't one of the overloads in the first place. If I manually cast it as byte, int, or long, I get an invalid parameter error from save. Does anybody know which one of the 16 overloads I'm supposed to use?
GeneralRetraction: casting System.Drawing.Imaging.EncoderValue Pin
RHamilton10-Sep-03 2:23
RHamilton10-Sep-03 2:23 
Generalupdating dataset through datagrid Pin
zuhx9-Sep-03 10:14
zuhx9-Sep-03 10:14 
GeneralRe: updating dataset through datagrid Pin
STW9-Sep-03 21:23
STW9-Sep-03 21:23 
GeneralRe: updating dataset through datagrid Pin
zuhx10-Sep-03 10:50
zuhx10-Sep-03 10:50 
GeneralRe: updating dataset through datagrid Pin
STW10-Sep-03 22:39
STW10-Sep-03 22:39 
GeneralRe: updating dataset through datagrid Pin
zuhx11-Sep-03 5:47
zuhx11-Sep-03 5:47 
GeneralRe: updating dataset through datagrid Pin
STW11-Sep-03 10:17
STW11-Sep-03 10:17 
GeneralRe: updating dataset through datagrid Pin
zuhx12-Sep-03 6:03
zuhx12-Sep-03 6:03 
GeneralRe: updating dataset through datagrid Pin
STW12-Sep-03 7:23
STW12-Sep-03 7:23 
GeneralRe: updating dataset through datagrid Pin
STW12-Sep-03 8:02
STW12-Sep-03 8:02 
QuestionHow to Scale down controls on a window Pin
sumeat9-Sep-03 10:04
sumeat9-Sep-03 10:04 
AnswerRe: How to Scale down controls on a window Pin
STW9-Sep-03 21:51
STW9-Sep-03 21:51 
GeneralLooking for a good book on C# Pin
Flack9-Sep-03 9:54
Flack9-Sep-03 9:54 
GeneralRe: Looking for a good book on C# Pin
gadgetfbi9-Sep-03 13:15
gadgetfbi9-Sep-03 13:15 
GeneralRe: Looking for a good book on C# Pin
David Stone9-Sep-03 13:44
sitebuilderDavid Stone9-Sep-03 13:44 
GeneralRe: Looking for a good book on C# Pin
Braulio Dez9-Sep-03 23:28
Braulio Dez9-Sep-03 23:28 
GeneralC# Suitable for my new app? please help! Pin
Hydra9-Sep-03 7:53
Hydra9-Sep-03 7:53 

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.