Click here to Skip to main content
16,006,432 members
Home / Discussions / C#
   

C#

 
AnswerRe: Function like invalirect in web Pin
Judah Gabriel Himango13-Apr-06 5:01
sponsorJudah Gabriel Himango13-Apr-06 5:01 
QuestionNumeric Text Box Formatting Pin
StyleGuide13-Apr-06 3:35
StyleGuide13-Apr-06 3:35 
AnswerRe: Numeric Text Box Formatting Pin
Stefan Troschuetz13-Apr-06 4:01
Stefan Troschuetz13-Apr-06 4:01 
GeneralRe: Numeric Text Box Formatting Pin
StyleGuide13-Apr-06 4:17
StyleGuide13-Apr-06 4:17 
GeneralRe: Numeric Text Box Formatting Pin
Stefan Troschuetz13-Apr-06 4:52
Stefan Troschuetz13-Apr-06 4:52 
QuestionHow can I run a Select query from a datatable so that it only brings the Pin
ALBSHAH13-Apr-06 3:26
ALBSHAH13-Apr-06 3:26 
AnswerRe: How can I run a Select query from a datatable so that it only brings the Pin
CWIZO13-Apr-06 10:51
CWIZO13-Apr-06 10:51 
AnswerRe: How can I run a Select query from a datatable so that it only brings the Pin
Jakob Farian Krarup13-Apr-06 12:39
Jakob Farian Krarup13-Apr-06 12:39 
Hi there Smile | :)

Why do you need this functionality?

If there isn't too much data in the table, you could copy the table and then remove the columns you didn't need, and then Select from it:

DataTable newTable = oldTable.Copy();
newTable.Columns.RemoveAt(1);
newTable.Columns.RemoveAt(3);
dgDisplay.DataSource = newTable.Select("WHERE age < 50");


Kind regards - Jakob Cool | :cool:
*********************************************
Three kinds of people in the world:
- Those who can count..
- Those who can't!

10 kinds of people in the world:
- Those who understand binary
- Those who don't
QuestionUltraWeb Grid Pin
cppdotnet13-Apr-06 2:42
cppdotnet13-Apr-06 2:42 
AnswerRe: UltraWeb Grid Pin
Robert Rohde13-Apr-06 2:54
Robert Rohde13-Apr-06 2:54 
QuestionPop up menu for a custom toolbar button on IE Pin
LMHP13-Apr-06 2:34
LMHP13-Apr-06 2:34 
QuestionPopUp Menu for a custom toolbar button on the IE Pin
LMHP13-Apr-06 2:32
LMHP13-Apr-06 2:32 
QuestionCombobox SeletedIndexchanged event Pin
Rickey_Me13-Apr-06 1:22
Rickey_Me13-Apr-06 1:22 
AnswerRe: Combobox SeletedIndexchanged event Pin
alexey N13-Apr-06 1:45
alexey N13-Apr-06 1:45 
Questionpc to pc calls Help ??? Pin
snouto13-Apr-06 0:54
snouto13-Apr-06 0:54 
QuestionDisplaying DataGrid Data Using Upper Case Pin
rosenvas13-Apr-06 0:47
rosenvas13-Apr-06 0:47 
AnswerRe: Displaying DataGrid Data Using Upper Case Pin
Dinuj Nath13-Apr-06 1:19
Dinuj Nath13-Apr-06 1:19 
GeneralRe: Displaying DataGrid Data Using Upper Case Pin
rosenvas13-Apr-06 4:15
rosenvas13-Apr-06 4:15 
Questioncom component Pin
rmedo13-Apr-06 0:43
rmedo13-Apr-06 0:43 
AnswerRe: com component Pin
J4amieC13-Apr-06 1:08
J4amieC13-Apr-06 1:08 
AnswerRe: com component Pin
Bassam Saoud13-Apr-06 1:13
Bassam Saoud13-Apr-06 1:13 
GeneralRe: com component Pin
rmedo13-Apr-06 3:08
rmedo13-Apr-06 3:08 
GeneralRe: com component Pin
Jakob Farian Krarup13-Apr-06 12:41
Jakob Farian Krarup13-Apr-06 12:41 
GeneralRe: com component Pin
rmedo16-Apr-06 22:29
rmedo16-Apr-06 22:29 
GeneralRe: com component Pin
Bassam Saoud13-Apr-06 19:37
Bassam Saoud13-Apr-06 19:37 

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.