spin vector wrote:
Where should I post a more detailed entry?
On the external open-source site. Usually these sites have their own mechanisms for keeping you up to date, so it's best to start there.
Deja View - the feeling that you've seen this post before.
UPDATE T1
SET time2 = T2.time2
FROM T2
WHERE T1.id = T2.id
Tested with SQL Server 2000 SP4. You basically have an implicit cross-join with the table you're updating and the tables and join statements listed in the FROM clause.
Stability. What an interesting concept. -- Chris Maunder
You don't need to do anything, the default for the C++ compiler is native.
--Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ Dunder-Mifflin, this is Pam.
Intel now has examples on how to do this using P/Invoke. http://software.intel.com/en-us/forums/intel-math-kernel-library/topic/48812/[^]
-- Trevor Misfeldt CenterSpace Software www.centerspace.net
LOL... sorry, I forget about that often... You could get around that by writing a console app and then using something like FireDaemon (I think that is the name?) that allows you to run an application as a service in Windows. ~dnc
Is this what you're looking for? DataGrid grid = new DataGrid(); //First Row BackColor grid.Items[0].BackColor = Color.Red; //First Row First Cell grid.Items[0].Cells[0].BackColor = Color.Green; As for changing the column's color I think you need to loop though each row for a particular cell and change the color that way... I'm not really sure if there is a better way to do it. e.g. //Change Column color for first cell foreach(DataRow row in grid.Rows) { row.Cells[0].BackColor = Color.Blue; }
Cheers Disgyza Programmer Analyst