Tagged Questions
6
votes
9answers
991 views
Recommended data format for describing the rules of chess
I'm going to be writing a chess server and one or more clients for chess and I want to describe the rules of chess (e.g. allowable moves based on game state, rules for when a game is complete) in a ...
1
vote
3answers
1k views
Set DataFormatString on DataGridView at Runtime?
Is it possible to set the DataFormatString property of a column or cell in an ASP.NET DataGridView at runtime?
0
votes
1answer
267 views
how show raw xml string in Telerik RadGrid columns without rendering
i have a boundedColumn In my telerik RadGrid As string Type -> some xml codes ...
how can i show that column (raw xml) in that RadGrid without rendering?
my problems :
my grid direction is right to ...
0
votes
1answer
251 views
Adding a png to clipboard
I have a simple question. What do I use as a DataFormat when saving a png to the clipboard.
An example that works for Bitmaps is:
DataObject data = new DataObject();
data.SetData(DataFormats.Bitmap, ...