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
  1. Home
  2. General Programming
  3. C#
  4. bool condition

bool condition

Scheduled Pinned Locked Moved C#
csharpcssmcp
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    Tauseef A
    wrote on last edited by
    #1

    hi guys i have a grid in whihc i have two columns these are check box columns now i want to iterate all the rows of grid and to perform some action but only if one of the two check box columns is active or checked else i am skipping the current row i am doing the floowing but it is not working correctly (!(Convert.ToBoolean(ugrRow.Cells["Add to device "].Value)) && Convert.ToBoolean(ugrRow.Cells["Discard"].Value))) continue; else {perform logic here .}

    Tauseef A Khan MCP Dotnet framework 2.0.

    M 1 Reply Last reply
    0
    • T Tauseef A

      hi guys i have a grid in whihc i have two columns these are check box columns now i want to iterate all the rows of grid and to perform some action but only if one of the two check box columns is active or checked else i am skipping the current row i am doing the floowing but it is not working correctly (!(Convert.ToBoolean(ugrRow.Cells["Add to device "].Value)) && Convert.ToBoolean(ugrRow.Cells["Discard"].Value))) continue; else {perform logic here .}

      Tauseef A Khan MCP Dotnet framework 2.0.

      M Offline
      M Offline
      musefan
      wrote on last edited by
      #2

      try this...

      if((bool)ugrRow.Cells["Add to device "].Value || (bool)ugrRow.Cells["Disgard"].Value)
      {
      //Perform Logic Here
      }

      Life goes very fast. Tomorrow, today is already yesterday.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

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