Click here to Skip to main content
15,920,896 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataGrid Pin
benqazou2-Apr-04 5:46
benqazou2-Apr-04 5:46 
Generaldatatype check Pin
Anonymous1-Apr-04 19:01
Anonymous1-Apr-04 19:01 
GeneralRe: datatype check Pin
Andy Wieberneit1-Apr-04 20:19
Andy Wieberneit1-Apr-04 20:19 
GeneralRe: datatype check Pin
Anonymous2-Apr-04 2:21
Anonymous2-Apr-04 2:21 
GeneralOptimization of C# code!! Pin
abc8761-Apr-04 18:15
abc8761-Apr-04 18:15 
GeneralRe: Optimization of C# code!! Pin
Tristan Rhodes1-Apr-04 20:02
Tristan Rhodes1-Apr-04 20:02 
GeneralRe: Optimization of C# code!! Pin
Daniel Turini1-Apr-04 20:35
Daniel Turini1-Apr-04 20:35 
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:09
Kastellanos Nikos1-Apr-04 23:09 
Since you don't have problem with memory (you allready load a 3300x2100 image!), try allocating table that holds the colors.

int colors[]=new int[16777216]; //24bit colors<br />
for(int i=0;i<16777216;i++) colors[i]=0;  <br />
for(int y=0;y<img.Height;y++)<br />
{ <br />
  for(int x=0;x<img.Width;x++)<br />
  {<br />
  test = true;<br />
  colors[image.pixel[x,y]]++;<br />
}




- - - - - - - - - - - - - - - - - -
Memory leaks is the price we pay \0
01234567890123456789012345678901234
GeneralRe: Optimization of C# code!! Pin
Kastellanos Nikos1-Apr-04 23:24
Kastellanos Nikos1-Apr-04 23:24 
GeneralA question of a Game Pin
lajiyo1-Apr-04 15:36
lajiyo1-Apr-04 15:36 
GeneralRe: A question of a Game Pin
Christian Graus1-Apr-04 15:53
protectorChristian Graus1-Apr-04 15:53 
GeneralRe: A question of a Game Pin
CWIZO2-Apr-04 2:42
CWIZO2-Apr-04 2:42 
GeneralRe: A question of a Game Pin
lajiyo2-Apr-04 23:01
lajiyo2-Apr-04 23:01 
GeneraldataSet, combobox Pin
DougW481-Apr-04 14:53
DougW481-Apr-04 14:53 
GeneralRe: dataSet, combobox Pin
Anonymous1-Apr-04 16:47
Anonymous1-Apr-04 16:47 
GeneralC# Whidbey Language Changes Pin
Eric Gunnerson (msft)1-Apr-04 13:57
Eric Gunnerson (msft)1-Apr-04 13:57 
GeneralRe: C# Whidbey Language Changes Pin
CWIZO2-Apr-04 2:46
CWIZO2-Apr-04 2:46 
Generalstruct conversion(VB-&gt;C#) problem Pin
Member 6548331-Apr-04 13:21
Member 6548331-Apr-04 13:21 
GeneralC# . Question on &quot;Microsoft Data Access Application Block&quot; Pin
abidkayani11-Apr-04 12:30
abidkayani11-Apr-04 12:30 
GeneralC# problem .. SQLParameters Pin
abidkayani11-Apr-04 12:25
abidkayani11-Apr-04 12:25 
GeneralRe: C# problem .. SQLParameters Pin
Charlie Williams1-Apr-04 13:25
Charlie Williams1-Apr-04 13:25 
GeneralChild windows opening outside the screen! Pin
Carl Mercier1-Apr-04 12:04
Carl Mercier1-Apr-04 12:04 
GeneralRe: Child windows opening outside the screen! Pin
Dave Kreskowiak1-Apr-04 13:10
mveDave Kreskowiak1-Apr-04 13:10 
GeneralRe: Child windows opening outside the screen! Pin
Carl Mercier1-Apr-04 17:03
Carl Mercier1-Apr-04 17:03 
GeneralRe: Child windows opening outside the screen! Pin
Dave Kreskowiak2-Apr-04 4:56
mveDave Kreskowiak2-Apr-04 4:56 

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.