Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
GeneralRe: Multiple Instances Pin
TyronX10-Jan-05 9:32
TyronX10-Jan-05 9:32 
GeneralKeypress Pin
The underdog8-Jan-05 6:14
The underdog8-Jan-05 6:14 
GeneralEnterprise Services and Resource Discovery Pin
disneystar8-Jan-05 5:37
disneystar8-Jan-05 5:37 
Generalpinvoke full list of functions in c# Pin
Philip Fitzsimons8-Jan-05 5:02
Philip Fitzsimons8-Jan-05 5:02 
GeneralRe: pinvoke full list of functions in c# Pin
Alex Korchemniy8-Jan-05 5:54
Alex Korchemniy8-Jan-05 5:54 
Generalsetup wizard Pin
Boniolopez8-Jan-05 4:49
Boniolopez8-Jan-05 4:49 
GeneralHelp on AlternatingBackColor Pin
monn8-Jan-05 2:13
monn8-Jan-05 2:13 
GeneralRe: Help on AlternatingBackColor Pin
Robert Rohde8-Jan-05 7:02
Robert Rohde8-Jan-05 7:02 
Make your own DataGridColumnStyle or just change an existing one:
<br />
public class AlternatingColumnStyle : DataGridTextBoxColumn <br />
{<br />
	protected override void Paint(Graphics g, Rectangle bounds, CurrencyManager source, int rowNum, Brush backBrush, Brush foreBrush, bool alignToRight)<br />
	{			<br />
		int i = rowNum % 4;<br />
		Color c = Color.Blue;<br />
		if (i > 1)<br />
			c = Color.Red;			<br />
		base.Paint(g, bounds, source, rowNum, new SolidBrush(c), foreBrush, alignToRight);<br />
	}<br />
}<br />

GeneralWEB services Pin
MoustafaS8-Jan-05 1:22
MoustafaS8-Jan-05 1:22 
GeneralRe: WEB services Pin
Rein Hillmann8-Jan-05 6:04
Rein Hillmann8-Jan-05 6:04 
GeneralGet the Stream Pin
Snowjim8-Jan-05 1:16
Snowjim8-Jan-05 1:16 
GeneralRe: Get the Stream Pin
Snowjim8-Jan-05 4:57
Snowjim8-Jan-05 4:57 
GeneralZoom In and Out in PictureBox Windows forms control Pin
AVaka7-Jan-05 23:21
AVaka7-Jan-05 23:21 
GeneralRe: Zoom In and Out in PictureBox Windows forms control Pin
Alex Korchemniy8-Jan-05 5:42
Alex Korchemniy8-Jan-05 5:42 
Generalsystem idle Pin
vyki_c7-Jan-05 23:08
vyki_c7-Jan-05 23:08 
GeneralRe: system idle Pin
Robert Rohde8-Jan-05 0:22
Robert Rohde8-Jan-05 0:22 
Generalscrolling of image Pin
montu33777-Jan-05 22:39
montu33777-Jan-05 22:39 
GeneralRe: scrolling of image Pin
MoustafaS8-Jan-05 1:10
MoustafaS8-Jan-05 1:10 
GeneralRe: scrolling of image Pin
Alex Korchemniy8-Jan-05 5:46
Alex Korchemniy8-Jan-05 5:46 
GeneralRe: scrolling of image Pin
montu33779-Jan-05 19:48
montu33779-Jan-05 19:48 
GeneralDouble click and single click on datagrid Pin
steve_rm7-Jan-05 20:47
steve_rm7-Jan-05 20:47 
GeneralRe: Double click and single click on datagrid Pin
Alex Korchemniy8-Jan-05 5:59
Alex Korchemniy8-Jan-05 5:59 
GeneralAsp .net gantt chart control Pin
amalatsliit7-Jan-05 19:27
amalatsliit7-Jan-05 19:27 
GeneralRe: Asp .net gantt chart control Pin
shruPrasad30-Jan-09 0:07
shruPrasad30-Jan-09 0:07 
GeneralTogle acheckbox Pin
picasso27-Jan-05 18:06
picasso27-Jan-05 18:06 

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.