Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
W

Wael Dalloul

@Wael Dalloul
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Preserving row pointer across an database update via a datatable
    W Wael Dalloul

    TableAdapter don't store any rows, it just provide communication between your application and a database. try to read this article to get more info:http://msdn.microsoft.com/en-us/library/bz9tthwx(VS.80).aspx[^] The Datatable represents one table of data, so you should depend on the datatable to use the find or select methods.

    Like what you do if you can't do what you like :)

    C# database algorithms help question announcement

  • Transparent through the label
    W Wael Dalloul

    CodingLover wrote:

    How can I see the image through the label?

    set the Backcolor for the label to: Transparent label.Backcolor = Transparent

    C# question help

  • Preserving row pointer across an database update via a datatable
    W Wael Dalloul

    jrgrobinson wrote:

    DishVarTA.Update(CurrentStDishVarRow);

    This code will attempts to save changes in the indicated DataRow to the database. You can store the row before updating and then manipulate the new instance of required row. now to locate the row in the datatable before calling the update method for the dataadapter use one of this methods: string s = "primaryKeyValue"; DataRow foundRow = datatable.Rows.Find(s); DataRow[] foundRows; foundRows = datatable.Select("put filter expression ");

    C# database algorithms help question announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups