Re: (Admin) Respect

2003-10-17 Thread GH - CF
What SS event? Could you tell more?

Michael Dinowitz wrote:

> Please refrain from personal attacks. They do not reflect the attackers
> professionalism or even maturity. Remember that everything on this list is
> archived and an attack today can come back to haunt you at work or 
> other places
> tomorrow. (remember the Secret Service event as an extreme of that)
> Thank you
>
> --
> Michael Dinowitz
> Finding technical solutions to the problems you didn't know you had yet
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: Linux Newbie

2003-10-16 Thread GH - CF
I want to get in to linux... got 3 questions

    1. What distro is best?
    2. Any one recomend a good book on beginning with Linux?
    3. Also, how can I dual boot it with WinXP Pro?


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Breadcrumbs in Cold Fusion

2003-10-01 Thread GH - CF
Pardon my ignorance & noviceness  but what are breadcrumbs (other 
than the real world thing you use to coat food)

Deetra Whatley wrote:

> Good Day,
>
> Does anyone have any code for breadcrumbs in Cold Fusion.
>
> If so and possible may I have a sample of that code.  I would like to 
> use breadcrumbs with Cold Fusion in my site.  
>
> Thank you.
>
> Deetra Whatley
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: credit card test numbers

2003-09-30 Thread GH - CF
Me too... that would be a real shame... but you can also email 
[EMAIL PROTECTED]

[EMAIL PROTECTED] wrote:

> Tony,
>
> 4012345678990 is a credit card test number given to me from Visa a long,
> long time ago.  It's been quoted as an example/test number in many banking
> applications, payment gateways, and POS software.
>
> If that number belongs to someone then I truly feel sorry for them.  ;-)
>
> -Novak
>
> - Original Message -
> From: "Tony Weeg" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, September 30, 2003 11:40 AM
> Subject: RE: credit card test numbers
>
>
> > I think its just 4 and any other 15 digits, however to be sure that you
> > arent mischarging
> > someones card, you would want to use 4111
> >
> > wouldntyathink?
> >
> >
> > ...tony
> >
> > tony weeg
> > senior web applications architect
> > navtrak, inc.
> > www.navtrak.net
> > [EMAIL PROTECTED]
> > 410.548.2337
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 30, 2003 2:35 PM
> > To: CF-Talk
> > Subject: Re: credit card test numbers
> >
> > For Visa you can use:
> >
> > 4012345678990
> >
> > Please note the two 9's at the end.
> >
> > -Novak
> >
> > - Original Message -
> > From: "Robert Orlini" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Monday, September 29, 2003 11:41 AM
> > Subject: credit card test numbers
> >
> >
> > > I'm testing out the use of our CF validation script for credit 
> cards. I
> > don't want to use real cc numbers. Anyone know of test numbers to 
> use for
> Am
> > Express, M/C and Visa?
> > >
> > > Thanks.
> > >
> > > Robert Orlini
> > > HW Wilson
> > > 718-588-8400 x2656
> > > ô¿ô
> > >
> >
> > 
> >
> >
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Insert gone astray... not doing as instructed....

2003-09-30 Thread GH - CF
Sorry for the 2nd post of the same message made a mistake on my 
end Sorry.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Insert gone astray... not doing as instructed....

2003-09-30 Thread GH - CF
Trying to get some code to work. Maybe someone could help me.

Problem is that when I run the code, I seem to be getting unexpected 
results. The query runs, and where it should only dump 1 record into the 
db it is dumping 2 records that are identical except for the ID field 
(which is a MSAccess AutoNum).

My search for a cure is not going well. Can anyone see why this is 
happening?  The insert that I am using is at the end of the page.



VERIFY ADD ITEM





/**
 * Checks to see if a var is an integer.
 * version 1.1 - mod by Raymond Camden
 *
 * @param varToCheck Value you want to validate as an integer.
 * @return Returns a Boolean.
 * @author Nathan Dintenfass ([EMAIL PROTECTED])
 * @version 1.1, April 10, 2002
 */
   function isInt(varToCheck){
 return isNumeric(varToCheck) and round(varToCheck) is vartoCheck;
   }
   function isCurrency(c)
   {
  if(isNumeric(trim(c)))
  {
 c = NumberFormat(c,"9.00");
//writeOutput(trim(c) & "");
  }
  else
  {
 return isNumeric(trim(c));
  }
  return isCur2(trim(c));
   }
   function isCur2(n)
   {
  var dollars    = "";
  var cents  = "";
  if (listLen(n, '.') EQ 2)
  {
 dollars = listFirst(n, '.');
 cents = listLast(n, '.');
 return (len(cents) EQ 2 AND (isNumeric(dollars) AND 
isNumeric(cents)));
  }
  else
  {
 return listLen(n, '.') EQ 2;
  }
   }




ISDEFINED("Form.ProductID") OR NOT ISDEFINED("Form.addAnother") OR NOT 
ISDEFINED("Form.Size") OR NOT ISDEFINED("FORM.Price")>
  
  
  
    
    
  
  
    
    
  
  
    
    
  
  
    
    
  
  
    
    
  
  
Error Messages
    
    
    
  


















  
    
  
  
  
  
  
  
  
  
  
  
  
  
    
    
    
    
    
    
  
  
  
  
  
  



  
    
    SELECT * FROM #trim(v.PT)#Product WHERE PID = #Form.ProductID#
    
    
  
  
  
  
  
  
    
    
    
    
    
    
  
  
  
    
  







  
    
  
  SELECT * FROM
  
WineItems

LiquorItem
  
  WHERE #V.PT#ProductID = #V.PID# AND Size = #Trim(Form.Size)#
  
 
  











  
  
  
  
  
  
    
    
    
    
    
    
  
  
  
  
  
  








  
 
    
    
    
    
    
  
  
  
  
  
  






VAL(Form.BestBuy) EQ 1)>
  
  
  



   
  INSERT INTO
  
    WineItems
    
    LiquorItem
  
  (#V.PT#ProductID, Size, Price, BestBuy, Control) VALUES (#V.PID#, 
#TRIM(V.S)#,
  #TRIM(V.P)#, #Trim(V.BB)#, 'r')
  
    GOT TO INSERT SECTION 
  Added:  WineLiquor ITEM 
  Product ID:    #V.PT# - #V.PID# 
  Item Size   #v.s#ml 
  Item Price  $#v.p#
  Best Buy?  #YesNOFormat(V.BB)# 

    Add Item: Error 
Messages
    
   Errors have been found, and we 
could not complete your request. Please try to fix them. Thank You. 
    






 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]