Click here to Skip to main content
15,913,854 members
Home / Discussions / C#
   

C#

 
AnswerRe: Seemingly seperate strings point to same object Pin
Marc Clifton1-Feb-07 6:52
mvaMarc Clifton1-Feb-07 6:52 
AnswerRe: Seemingly seperate strings point to same object Pin
PIEBALDconsult1-Feb-07 7:09
mvePIEBALDconsult1-Feb-07 7:09 
GeneralRe: Seemingly seperate strings point to same object Pin
crunchi1-Feb-07 12:50
crunchi1-Feb-07 12:50 
GeneralRe: Seemingly seperate strings point to same object Pin
Russell Jones1-Feb-07 22:01
Russell Jones1-Feb-07 22:01 
AnswerRe: Seemingly seperate strings point to same object Pin
Judah Gabriel Himango1-Feb-07 7:56
sponsorJudah Gabriel Himango1-Feb-07 7:56 
GeneralRe: Seemingly seperate strings point to same object Pin
crunchi1-Feb-07 12:52
crunchi1-Feb-07 12:52 
GeneralRe: Seemingly seperate strings point to same object Pin
Judah Gabriel Himango1-Feb-07 13:23
sponsorJudah Gabriel Himango1-Feb-07 13:23 
QuestionDataTable.Select() [modified] Pin
lost in transition 1-Feb-07 6:03
lost in transition 1-Feb-07 6:03 
Filtering a column in a datatable, but I keep getting a error when the nothing is found in the filter.[Modified]When there are not any results returned.[Modified] Using the filter there will either be a record or not. I do not have to worry about multiple results.

            <br />
DataRow[] _dr = _Master.Select("[EU ID]=" + RecID);<br />
if (_dr.Length == 1)<br />
{<br />
}<br />


Does this not cause the DataRow to have 0 rows or 1 row??
What am I missing?

Urgently!!!!!! not in a hurry about this.


-- modified at 12:34 Thursday 1st February, 2007

Well never mind just went ahead and did this way, works just fine.
            <br />
for (int i = 0; i < _Master.Rows.Count; i++)<br />
{<br />
    if ((string)_Master.Rows[i]["EU ID"] == RecID)<br />
    {<br />
    }<br />
}<br />

QuestionHow do I select the "Directory" Pin
Eyungwah1-Feb-07 6:01
Eyungwah1-Feb-07 6:01 
QuestionHow do I select the "Directory" Pin
Eyungwah1-Feb-07 6:04
Eyungwah1-Feb-07 6:04 
AnswerRe: How do I select the "Directory" Pin
Luc Pattyn1-Feb-07 6:31
sitebuilderLuc Pattyn1-Feb-07 6:31 
QuestionC# equilavent functionality to a C++ Vector Pin
rishid71-Feb-07 5:15
rishid71-Feb-07 5:15 
AnswerRe: C# equilavent functionality to a C++ Vector Pin
Mircea Puiu1-Feb-07 5:30
Mircea Puiu1-Feb-07 5:30 
AnswerRe: C# equilavent functionality to a C++ Vector Pin
Luc Pattyn1-Feb-07 6:37
sitebuilderLuc Pattyn1-Feb-07 6:37 
AnswerRe: C# equilavent functionality to a C++ Vector Pin
Marc Clifton1-Feb-07 7:13
mvaMarc Clifton1-Feb-07 7:13 
Questionhow to put the gradient effect on the BindingNavigator object's bacground in Windows Forms Pin
Rocky#1-Feb-07 5:11
Rocky#1-Feb-07 5:11 
QuestionControls on programmatically added TabPages Pin
jimkeating1-Feb-07 5:09
jimkeating1-Feb-07 5:09 
AnswerRe: Controls on programmatically added TabPages Pin
Luc Pattyn1-Feb-07 6:47
sitebuilderLuc Pattyn1-Feb-07 6:47 
GeneralRe: Controls on programmatically added TabPages Pin
jimkeating1-Feb-07 7:15
jimkeating1-Feb-07 7:15 
QuestionDependency issue Pin
Dan Neely1-Feb-07 5:04
Dan Neely1-Feb-07 5:04 
AnswerRe: Dependency issue Pin
Luc Pattyn1-Feb-07 6:59
sitebuilderLuc Pattyn1-Feb-07 6:59 
GeneralRe: Dependency issue Pin
Dan Neely1-Feb-07 7:33
Dan Neely1-Feb-07 7:33 
GeneralRe: Dependency issue Pin
Luc Pattyn1-Feb-07 7:48
sitebuilderLuc Pattyn1-Feb-07 7:48 
QuestionCalling SP from .net Pin
Astricks1-Feb-07 3:43
Astricks1-Feb-07 3:43 
AnswerRe: Calling SP from .net Pin
Michael P Butler1-Feb-07 3:51
Michael P Butler1-Feb-07 3:51 

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.