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 SkipVought 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. midnightswan

    Multiple Cases with the same Case Block in Switch Statements

    I'm sorry, I'll know not to do that again. :) Thanks heaps for your help!
  2. midnightswan

    Multiple Cases with the same Case Block in Switch Statements

    thanks :o) I understand the case bit now. I'm now having problems getting it to work for my code. This is it here: sub Test { #Assigning subroutine parametrs to meaningful variables my $session = $_[0]; my $trunkMode = $_[1]; switch($trunkMode){ case /^[ringNone...
  3. midnightswan

    Multiple Cases with the same Case Block in Switch Statements

    Thanks for your reply guys, but I'm a noob to Perl and am still having a hard time interpreting all the symbols and that correctly, so could you please explain what you assigned to the $var variable, and what the symbols mean in the case statements, i.e /^[ij]$/ #!/usr/bin/perl -w use strict...
  4. midnightswan

    Multiple Cases with the same Case Block in Switch Statements

    Hi, I was wondering if I can do this in Perl (multiple cases attached to 1 case block: use Switch; switch($var) { case 'i' case 'j' { #... some code ... { case 'x' case 'y' { #... more code ... } } I know it can be done in like C++...
  5. midnightswan

    What happened to MIBCENTRAL?

    MIB Central apparently is now known as MIBDepot www.mibdepot.com ***************************************************************** mibCentral, November 2002 An e-mail newsletter for the SNMP community ***************************************************************** mibCentral.com has been...
  6. midnightswan

    Table Relationships

    Hi :o) I was just wondering if I could have a multi-table one-to-one sparse dependent relationship between conceptional tables. So there will be a base table with a fixed number of rows that contains the index. Then various other tables which uses the base table's index but may only contain a...
  7. midnightswan

    SQL and dates

    Hi, I'm having a problem when trying to select a record from an Access database with ASP. Here's the statement sql = "SELECT * FROM Day_Log WHERE Day_Log.Employee='" & employee & "' AND Day_Log.dWorked=#" & dateEntered & "#" set rsCheck =...

Part and Inventory Search

Back
Top