Click here to Skip to main content
16,007,760 members
Home / Discussions / C#
   

C#

 
GeneralGenerate an Image using ByteCode/HexaView Pin
MDKrishan27-Jun-05 21:25
MDKrishan27-Jun-05 21:25 
GeneralDataAdapter.Fill Problems Pin
metalsandman27-Jun-05 21:20
metalsandman27-Jun-05 21:20 
GeneralRe: DataAdapter.Fill Problems Pin
Piovra_27-Jun-05 21:38
Piovra_27-Jun-05 21:38 
GeneralRe: DataAdapter.Fill Problems Pin
metalsandman27-Jun-05 23:44
metalsandman27-Jun-05 23:44 
GeneralRe: DataAdapter.Fill Problems Pin
Dave Kreskowiak28-Jun-05 4:34
mveDave Kreskowiak28-Jun-05 4:34 
GeneralRe: DataAdapter.Fill Problems Pin
metalsandman28-Jun-05 4:43
metalsandman28-Jun-05 4:43 
GeneralManipulate cells in datagrid Pin
Piovra_27-Jun-05 20:27
Piovra_27-Jun-05 20:27 
GeneralRe: Manipulate cells in datagrid Pin
sreejith ss nair28-Jun-05 0:02
sreejith ss nair28-Jun-05 0:02 
You can define an expression for a column, enabling it to contain a value calculated from other column values in the same row or from the column values of multiple rows in the table. To define the expression to be evaluated, use the Expression property of the target column, and use the ColumnName property to refer to other columns in the expression. The DataType for the expression column must be appropriate for the value the expression will return.

<br />
workTable.Columns.Add("Total", typeof(Double));<br />
workTable.Columns.Add("SalesTax", typeof(Double), "Total * 0.086");


Sreejith Nair
[ My Articles ]
Generalexport excell file to SQL SERVER Pin
dabuskol27-Jun-05 19:58
dabuskol27-Jun-05 19:58 
GeneralRe: export excell file to SQL SERVER Pin
harbanone28-Jul-05 7:15
harbanone28-Jul-05 7:15 
GeneralSQL and loops Pin
mhmo27-Jun-05 19:50
mhmo27-Jun-05 19:50 
GeneralRe: SQL and loops Pin
Christian Graus27-Jun-05 19:53
protectorChristian Graus27-Jun-05 19:53 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 20:02
mhmo27-Jun-05 20:02 
GeneralRe: SQL and loops Pin
Christian Graus27-Jun-05 20:04
protectorChristian Graus27-Jun-05 20:04 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 20:11
mhmo27-Jun-05 20:11 
GeneralRe: SQL and loops Pin
Christian Graus27-Jun-05 20:31
protectorChristian Graus27-Jun-05 20:31 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 20:38
mhmo27-Jun-05 20:38 
GeneralRe: SQL and loops Pin
Christian Graus27-Jun-05 20:48
protectorChristian Graus27-Jun-05 20:48 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 20:52
mhmo27-Jun-05 20:52 
GeneralRe: SQL and loops Pin
Christian Graus27-Jun-05 20:56
protectorChristian Graus27-Jun-05 20:56 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 22:34
mhmo27-Jun-05 22:34 
GeneralRe: SQL and loops Pin
MicrosoftBob28-Jun-05 4:45
MicrosoftBob28-Jun-05 4:45 
GeneralRe: SQL and loops Pin
J4amieC27-Jun-05 22:15
J4amieC27-Jun-05 22:15 
GeneralRe: SQL and loops Pin
mhmo27-Jun-05 22:35
mhmo27-Jun-05 22:35 
GeneralRe: SQL and loops Pin
J4amieC28-Jun-05 2:48
J4amieC28-Jun-05 2:48 

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.