User Profile

Collapse

Profile Sidebar

Collapse
Elena
Elena
Last Activity: Dec 26 '07, 06:44 PM
Joined: Jul 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Elena
    replied to data retrieval with C#
    in .NET
    if (venue_top.Coun t == 0)
    {
    return "xyz";
    }
    else
    {
    if(venue_top.Ro ws.Count > 0 ){
    foreach (DataSet1.tblVe nueRow row in venue_top)
    {
    return row.Name;
    }
    }

    }

    }
    See more | Go to post

    Leave a comment:


  • Elena
    replied to Loop problem
    in .NET
    you don't need to increase i (i = i + 1). In For loop, Next statement does that for you

    For i = 0 To AtendanceName.L ength-1

    AtendanceName(i ) = txtAname.Text

    Next
    See more | Go to post

    Leave a comment:


  • Elena
    replied to C# INSERT statement using OleDb
    in .NET
    try
    Code:
    string insertStatement = "INSERT INTO Clock "
    + "([Login], [Time], [Status]) "
    + "VALUES (@Login, @Time, @Status)";
    See more | Go to post
    Last edited by Frinavale; Nov 19 '09, 04:31 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.

    Leave a comment:

No activity results to display
Show More
Working...