RE: ASP NumberFormat

2001-05-09 Thread DeVoil, Nick

WTF?
Is this a joke?

-Original Message-
From: Chris Maloney [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 8:04 PM
To: CF-Talk
Subject: RE: ASP NumberFormat


Nathan,
At first only your newsletters made me wonder about your lack of
professionalism.

Chris

-Original Message-
From: Nathan Stanford [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 10:58 AM
To: CF-Talk
Subject: RE: ASP NumberFormat


Your treading on THIN ICE mentioning that COMPETITOR...   grin

Nathan Stanford
Senior Programmer/Analyst
[EMAIL PROTECTED]


 -Original Message-
 From: Bernd VanSkiver [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 08, 2001 10:23 AM
 To:   CF-Talk
 Subject:  OT: ASP NumberFormat

 Sorry about bringing ASP in to the list but am having
 troubles finding the solution and was hoping someone
 here might know the answer.  I am needing a way to
 format a number in ASP similar to the CF function
 NumberFormat()  Is there a function or something in
 ASP for this?  I'm not sure if ASP even has built in
 support for this.  I am programming the ASP in
 VBScript.


 =
 Bernd VanSkiver
 [EMAIL PROTECTED]
 ColdFusion Developer
 ICQ UIN: 916324



**
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: ASP NumberFormat

2001-05-08 Thread Bernd VanSkiver

Sorry about bringing ASP in to the list but am having
troubles finding the solution and was hoping someone
here might know the answer.  I am needing a way to
format a number in ASP similar to the CF function
NumberFormat()  Is there a function or something in
ASP for this?  I'm not sure if ASP even has built in
support for this.  I am programming the ASP in
VBScript.


=
Bernd VanSkiver
[EMAIL PROTECTED]
ColdFusion Developer
ICQ UIN: 916324
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ASP NumberFormat

2001-05-08 Thread Andy Ewings

The VB function to convert to an Integer is CInt(string).  Will obviously
only work if the string can be converted to an int.  

However - If I remeber correctly (and it's been a while!) I thought that in
ASP you can't delare datatypes for variables.  

i.e in VB you do: Private myvar as int
in ASP you just do: Private myvar

So I'm not even sure the CInt function will work or indeed if it's supported
in ASP.

-- 
Andrew Ewings
Project Manager
Thoughtbubble Ltd 
http://www.thoughtbubble.net 
-- 
United Kingdom 
http://www.thoughtbubble.co.uk/ 
Tel: +44 (0) 20 7387 8890 
-- 
New Zealand 
http://www.thoughtbubble.co.nz/ 
Tel: +64 (0) 9 488 9131
-- 
The information in this email and in any attachments is confidential and
intended solely for the attention and use of the named addressee(s). Any
views or opinions presented are solely those of the author and do not
necessarily represent those of Thoughtbubble. This information may be
subject to legal, professional or other privilege and further distribution
of it is strictly prohibited without our authority. If you are not the
intended recipient, you are not authorised to disclose, copy, distribute, or
retain this message. Please notify us on +44 (0)207 387 8890. 



-Original Message-
From: Bernd VanSkiver [mailto:[EMAIL PROTECTED]]
Sent: 08 May 2001 16:23
To: CF-Talk
Subject: OT: ASP NumberFormat


Sorry about bringing ASP in to the list but am having
troubles finding the solution and was hoping someone
here might know the answer.  I am needing a way to
format a number in ASP similar to the CF function
NumberFormat()  Is there a function or something in
ASP for this?  I'm not sure if ASP even has built in
support for this.  I am programming the ASP in
VBScript.


=
Bernd VanSkiver
[EMAIL PROTECTED]
ColdFusion Developer
ICQ UIN: 916324
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ASP NumberFormat

2001-05-08 Thread Dave Watts

 Sorry about bringing ASP in to the list but am having
 troubles finding the solution and was hoping someone
 here might know the answer.  I am needing a way to
 format a number in ASP similar to the CF function
 NumberFormat()  Is there a function or something in
 ASP for this?  I'm not sure if ASP even has built in
 support for this.  I am programming the ASP in
 VBScript.

VBScript has a function called FormatNumber:

FormatNumber(Expression [,NumDigitsAfterDecimal [,IncludeLeadingDigit
[,UseParensForNegativeNumbers [,GroupDigits)

Note that this doesn't have anything to do specifically with ASP - ASP isn't
a language, but a specific object model for CGI-type scripting. So, to
answer further VBScript questions, you might want to download the VBScript
documentation available from Microsoft:

http://msdn.microsoft.com/scripting/vbscript/download/vbsdoc.exe

Enjoy!

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ASP NumberFormat

2001-05-08 Thread DeVoil, Nick

http://msdn.microsoft.com/scripting/default.htm?/scripting/vbscript/doc/vsfc
tFormatNumber.htm


**
Information in this email is confidential and may be privileged.
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ASP NumberFormat

2001-05-08 Thread Nathan Stanford

Your treading on THIN ICE mentioning that COMPETITOR...   grin

Nathan Stanford
Senior Programmer/Analyst
[EMAIL PROTECTED]


 -Original Message-
 From: Bernd VanSkiver [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 08, 2001 10:23 AM
 To:   CF-Talk
 Subject:  OT: ASP NumberFormat
 
 Sorry about bringing ASP in to the list but am having
 troubles finding the solution and was hoping someone
 here might know the answer.  I am needing a way to
 format a number in ASP similar to the CF function
 NumberFormat()  Is there a function or something in
 ASP for this?  I'm not sure if ASP even has built in
 support for this.  I am programming the ASP in
 VBScript.
 
 
 =
 Bernd VanSkiver
 [EMAIL PROTECTED]
 ColdFusion Developer
 ICQ UIN: 916324

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ASP NumberFormat

2001-05-08 Thread Chris Maloney

Nathan,
At first only your newsletters made me wonder about your lack of
professionalism.

Chris

-Original Message-
From: Nathan Stanford [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 10:58 AM
To: CF-Talk
Subject: RE: ASP NumberFormat


Your treading on THIN ICE mentioning that COMPETITOR...   grin

Nathan Stanford
Senior Programmer/Analyst
[EMAIL PROTECTED]


 -Original Message-
 From: Bernd VanSkiver [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, May 08, 2001 10:23 AM
 To:   CF-Talk
 Subject:  OT: ASP NumberFormat

 Sorry about bringing ASP in to the list but am having
 troubles finding the solution and was hoping someone
 here might know the answer.  I am needing a way to
 format a number in ASP similar to the CF function
 NumberFormat()  Is there a function or something in
 ASP for this?  I'm not sure if ASP even has built in
 support for this.  I am programming the ASP in
 VBScript.


 =
 Bernd VanSkiver
 [EMAIL PROTECTED]
 ColdFusion Developer
 ICQ UIN: 916324

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: ASP NumberFormat

2001-05-08 Thread Kevin Schmidt

Chris,

How does kidding around with someone show lack of professionalism?? Or did
you not bother to read the grin at the end of his post.  Attacking someone
like that shows a lack of professionalism.

Kevin Schmidt
- Original Message -
From: Chris Maloney [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, May 08, 2001 2:04 PM
Subject: RE: ASP NumberFormat


 Nathan,
 At first only your newsletters made me wonder about your lack of
 professionalism.

 Chris

 -Original Message-
 From: Nathan Stanford [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 08, 2001 10:58 AM
 To: CF-Talk
 Subject: RE: ASP NumberFormat


 Your treading on THIN ICE mentioning that COMPETITOR...   grin

 Nathan Stanford
 Senior Programmer/Analyst
 [EMAIL PROTECTED]


  -Original Message-
  From: Bernd VanSkiver [SMTP:[EMAIL PROTECTED]]
  Sent: Tuesday, May 08, 2001 10:23 AM
  To: CF-Talk
  Subject: OT: ASP NumberFormat
 
  Sorry about bringing ASP in to the list but am having
  troubles finding the solution and was hoping someone
  here might know the answer.  I am needing a way to
  format a number in ASP similar to the CF function
  NumberFormat()  Is there a function or something in
  ASP for this?  I'm not sure if ASP even has built in
  support for this.  I am programming the ASP in
  VBScript.
 
 
  =
  Bernd VanSkiver
  [EMAIL PROTECTED]
  ColdFusion Developer
  ICQ UIN: 916324
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists