Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chowki

    Table borders between rows only

    Scrap that, I've seen my mistake. Your reply KAHT did work, Thank You
  2. chowki

    Table borders between rows only

    That's putting a border around the table but the horizontal lines inbetween rows are still not showing up. I had a hunch and so removed all table styling except I kept border="1" in the table tag. It showed up a border around the edge but not for any of the internal borders so it's something...
  3. chowki

    Table borders between rows only

    How can I create a table that only has a border on the inside in between rows? I've tried doing: .CSS file: body { margin-top:0; } a { text-decoration:none; } a:hover { text-decoration:underline; } h1 { } .class1 a { display:block; background-color:#EEEEEE; color:#336666; } .class1...
  4. chowki

    Urgent! Pausing a function using a timer

    Great, thank you so much Marty. I hadn't put the System.Threading line in. Thank you again
  5. chowki

    Urgent! Pausing a function using a timer

    Could you explain this a bit please. If I have: public void MyFunction() //executes every second if (condition1) {//do this} if (condition2) {//do this} if (a different statement is true) { do not run through function for 5 seconds } public static bool TimeDelay(int intDelayInMilliSeconds)...
  6. chowki

    Urgent! Pausing a function using a timer

    I have a function that executes on every second. I wish to add an if statment that if it is true then it will do nothing for the next 5 seconds. How can I do this? public void MyFunction() if (statement is true) { do not run through function for 5 seconds }

Part and Inventory Search

Back
Top