RE: CFQUERYPARAM: a good generic numeric type?

2002-03-04 Thread Pascal Peters
CF_SQL_NUMERIC works for Access, SQL Server and Oracle. Don't know about MySQL, but I imagine it will. -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: maandag 4 maart 2002 9:07 To: CF-Talk Subject: CFQUERYPARAM: a good generic numeric type? Was reading Ben

NT authentication

2002-03-04 Thread Paul Bowley
We are building an intranet for a client The client does not want his users to have to log in to the intranet, but still wants the intranet to be personalised Is there any way that we can use the NT login credentials to achieve this? What we're thinking of is this: the user will log in to his or

RE: Developers Exchange... How *could* they!?

2002-03-04 Thread Kwang Suh
They removed the advanced search by author :) -- Robert wrote: Too bad they still haven't fixed the advanced search so that you can search by author I noticed that as well I'm curious to hear this from Macromedia: wh at did you guys do to make such a big change in performance? --Matt

RE: NT authentication

2002-03-04 Thread Ian Tait
Test for the cgi.AUTH_USER var. Ian -Original Message- From: Paul Bowley [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 09:13 To: CF-Talk Subject: NT authentication We are building an intranet for a client. The client does not want his users to have to log in to the intranet, but

RE: NT authentication

2002-03-04 Thread Paul Bowley
As far as I know, I can only get at CGI.AUTH_USER if we use basic authentication. If we use basic authentication, the user will be asked for a username and password when the home page of the intranet is requested. What the client wants is no login at all. We somehow have to pick up the user's

RE: NT authentication

2002-03-04 Thread James Maltby
OK - you are gonna have to do two things here - the first is to make sure that NT logins are attached to specific IP addresses - so that when a user logs in to their machine there's an NT/IP match. Secondly you will have to create a set-up screen so that the first time they look at the Intranet

RE: NT authentication

2002-03-04 Thread Paul Bowley
Sorry, I should have mentioned that the client is using DHCP. -Original Message- From: James Maltby [SMTP:[EMAIL PROTECTED]] Sent: 04 March 2002 10:48 To: CF-Talk Subject: RE: NT authentication OK - you are gonna have to do two things here - the first is to make sure that

RE: NT authentication

2002-03-04 Thread Andrew Scott
The best solution would be to set the attributes of the directory so that it uses the same authentication as NT Does, this would mean anyone else outside who visited the site would be challenged for a username and password. Anyone inside should not be challenged, from memory they might be

RE: NT authentication

2002-03-04 Thread Paul Bowley
One attempt I made was to use an ActiveX control on a 'splash' page. The control had a call to a Windows API function to get the user's NT username. The username was then submitted to a validation page. The only problem with this was that the control required the user's browser security

RE: NT authentication

2002-03-04 Thread Andrew Scott
I assume that the intranet being that everyone is running on the same network, with a central Authentication Server... If so, just allow the directory and files be authenticated against that with the permissions. Don't bother with doing it in code, its too much work let the server's OS take care

RE: Purge Client Vars

2002-03-04 Thread Andrew Scott
I would be very interested to see if you solve this as well, I have never been able to get my data purged without running a script to do it or manually if I am at the computers, from day one on this server and I can't figure it out either just assumed that it was a bug with CF not setting

RE: Uploading file directly into SQL database

2002-03-04 Thread Kevan . Windle
You don't need to store it in the database to use sql server indexing you can mix and match database and file index searches with sql server. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 01 March 2002 12:29 To: CF-Talk Subject: RE: Uploading file directly

RE: problems with storedproc

2002-03-04 Thread Bosky, Dave
Verify the local variable 'run_query' is not null. Thanks, Dave Bosky -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 5:36 PM To: CF-Talk Subject: Re: problems with storedproc Well since you are using an IN have you tested if

SQL Transaction log backup

2002-03-04 Thread Mark A. Kruger - CFG
SQL Gurus We are having a periodic problem with a heavily utilized SQL 2000 server The server is scheduled to backup transaction logs on the news database every 4 hours throughout the day The news database receives and processes about 8000 stories a day and it is hit continually throughout the

RE: NT authentication

2002-03-04 Thread Dave Watts
We are building an intranet for a client The client does not want his users to have to log in to the intranet, but still wants the intranet to be personalised Is there any way that we can use the NT login credentials to achieve this? What we're thinking of is this: the user will log in

RE: NT authentication

2002-03-04 Thread Paul Bowley
Thanks, Dave. Can I get the IE Administration Kit from the Microsoft site? -Original Message- From: Dave Watts [SMTP:[EMAIL PROTECTED]] Sent: 04 March 2002 15:18 To: CF-Talk Subject: RE: NT authentication We are building an intranet for a client. The client does not

RE: NT authentication

2002-03-04 Thread Dave Watts
Thanks, Dave Can I get the IE Administration Kit from the Microsoft site? Yes Note that it's for creating customized IE installs, and I don't know how well it'll work for changing existing installs You might need something else for that http://wwwmicrosoftcom/windows/ieak/defaultasp Dave

RE: NT authentication

2002-03-04 Thread Dave Watts
The only way of which I'm aware to avoid all logins entirely is to configure the browser so that it'll automatically login to the site IE supports this feature, and you can build custom configurations of IE using the IE Administration Kit Essentially, you'd want to ensure that your site

Inserting Javascript into your application.cfm

2002-03-04 Thread Jason Larson
I have a piece of javascript that is needed for every page on my site Instead of inserting the script into the head section of the headercfm file Would I run into any problems just having my applicationcfm file load the script? The script is: an image rollover and a position of a onclick pop up

RE: CFMAIL goes straight to UNDELIVERABLE

2002-03-04 Thread Tammy Hong
Al, I have had the same problem before. All of my emails were going straight into the UNDELIV folder after istting in the SPOOL foler. I have resolved it finally after someone witht he same problem told me to restart all my coldfusion services. Tammy -Original Message- From: Al

RE: Inserting Javascript into your application.cfm

2002-03-04 Thread Pascal Peters
USe cfhtmlhead to put it in the HEAD section of the html. (OR the CT cf_htmlhead if you want to make your coding easy) -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: maandag 4 maart 2002 16:36 To: CF-Talk Subject: Inserting Javascript into your application.cfm

RE: NT authentication

2002-03-04 Thread Kevan . Windle
You can use NT login , you can get it via the cgi.auth_user variable, but you need to have challenge response set on in IIS. That's what we do. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 15:18 To: CF-Talk Subject: RE: NT authentication We are

RE: NT authentication

2002-03-04 Thread Dave Watts
You can use NT login, you can get it via the cgiauth_user variable, but you need to have challenge response set on in IIS That's what we do Yes, but for that to work, I think that the following also have to be true: 1 Everyone's using IE 2 The site is within the Intranet Zone 3 Everyone

RE: Inserting Javascript into your application.cfm

2002-03-04 Thread Jason Larson
Thanks, I imagine that I could of figured that out myself, had a brain fart. CF_HTMLHead worked like a champ. Thanks, Jason Larson You think the Cubs have sore arms? What about the fans in left field? -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: Monday,

a little about the future

2002-03-04 Thread Michael Dinowitz
wwwmacromediacom/macromedia/proom/pr/2002/flash_mx_appshtml __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

SMB 2.0 Spanish language file

2002-03-04 Thread Tony Schreiber
Can a native spanish speaker (I don't have a dialect preference, I just don't want any really wrong phrases in the file) download the smb language files and check the Spanish file for me? I never really finished it and I'm not the best Spanish translator at all (ha!)...

RE: a little about the future

2002-03-04 Thread Angel Stewart
I don't like how they seem to have CF MX as errr 'supporting' Flash MX.. *folds arms and pouts* The whole thing was about Flash MX basically. *taps foot and pouts some more* -Gel -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]

in need of CF training docs

2002-03-04 Thread Greg Jordan
I am going to be training 3 VB programmers at my work on how to use ColdFusion 5, and before I make up my own tutorial, I was wondering if anyone had any training docs. Any advice on a training method or approach is welcome as well. Thanks! Greg

RE: a little about the future

2002-03-04 Thread Robert Everland
Looks like slashdot also picked this up, see what other geeks have to say. http://slashdot.org/articles/02/03/04/1618227.shtml?tid=152 Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: a little about the future

2002-03-04 Thread Michael Dinowitz
CF MX isn't as far along in the cycle as Flash MX is. Add in that Flash is really the star of MM and you see why it was written that way. I'm quite sure (with all of MM listening here) that when the press release is written for CF MX that the reverse will be said and Flash will be mentioned as

RE: a little about the future

2002-03-04 Thread Angel Stewart
Ehmm..somehow I thought this was posted to the CF Community list. *nervous chuckle* -Gel -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] CF MX isn't as far along in the cycle as Flash MX is. Add in that Flash is really the star of MM and you see why it was

Next/Previous???

2002-03-04 Thread Kelly Matthews
Does anyone know of an unencrypted tag that will do next/previous start/end type navigation. The type that outputs like Anyone? -Kelly ~~ Kelly Matthews Senior Programmer [EMAIL PROTECTED] http://www.allsoldout.net 703.387.4000 x 35 ~~

RE: a little about the future

2002-03-04 Thread Michael Dinowitz
Tech related to CF and which tells a bit more about Neo (publicly). Fits with this list a bit more. Macromedia ColdFusion MX, which can be used in conjunction with Microsoft .NET, Java application servers, and web services, will provide developers with the fastest and easiest way to create

Re: Next/Previous???

2002-03-04 Thread Paul Giesenhagen
Give qdnext a try: http://www.quilldesign.com It allows you to set next/previous pages as well as series of pages ... and it's open source.. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder Does anyone know of an unencrypted tag that will do

Re: Next/Previous???

2002-03-04 Thread Douglas Brown
search dev-exchange for CF_recordcount it is very nice and unencrypted. Success is a journey, not a destination!! Doug Brown - Original Message - From: Kelly Matthews [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 04, 2002 8:48 AM Subject: Next/Previous???

Re: a little about the future

2002-03-04 Thread Jim Priest
Great This sounds like CF Server has been reduced to nothing more than a backend for Flash Yuck And can they lay of the 'rich' thing? Bill Gates and my grandmother's three layer chocolate cake are 'rich' - not Flash applications Jim On Monday, March 04, 2002, Michael wrote: MD

OT- security

2002-03-04 Thread Jones, Becky
i had a question about security and uploading files i have a form that admins fill out to upload articles to a web page it goes to a directory on my web server that is in inetpub\wwwroot\admin\fil e directory now when i click on the article and then try to click on the link to the stored

Re: a little about the future

2002-03-04 Thread Jochem van Dieten
Michael Dinowitz wrote: CF MX isn't as far along in the cycle as Flash MX is Add in that Flash is really the star of MM and you see why it was written that way Now they have merged with Allaire they really have 2 stars, one of which is powered by Cold Fusion :) Jochem

RE: a little about the future

2002-03-04 Thread Nick McClure
This NET stuff you speak of, tell me more At 11:51 AM 3/4/2002 -0500, you wrote: Tech related to CF and which tells a bit more about Neo (publicly) Fits with this list a bit more Macromedia ColdFusion MX, which can be used in conjunction with Microsoft NET, Java application servers, and web

Re: in need of CF training docs

2002-03-04 Thread Douglas Brown
The best way I have found is just using the product documentation in CF 5 http://127.0.0.1/cfdocs/Developing_ColdFusion_Applications/contents.htm Success is a journey, not a destination!! Doug Brown - Original Message - From: Greg Jordan [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: a little about the future

2002-03-04 Thread Douglas Brown
Change is not always a good thing, but we have to go with the flow. Personally I like the idea. Success is a journey, not a destination!! Doug Brown - Original Message - From: Jim Priest [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 04, 2002 8:56 AM Subject:

RE: a little about the future

2002-03-04 Thread Declan Maher
http://www.microsoft.com/net/ -Original Message- From: Nick McClure [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 16:57 To: CF-Talk Subject: RE: a little about the future This .NET stuff you speak of, tell me more. At 11:51 AM 3/4/2002 -0500, you wrote: Tech related to CF and which

value list of a timeformat

2002-03-04 Thread Joshua Tipton
What is wrong with this? cfset report = #valuelist(timeonacd_total(timeformat(report_time, HH:MM),',')# __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation ·

RE: a little about the future

2002-03-04 Thread Mike Chambers
You are still going to be able to do everything in NEO that you are currently doing. you will now just be able to do a LOT more. mike chambers [EMAIL PROTECTED] -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 12:03 PM To: CF-Talk

HTML email form

2002-03-04 Thread Mark Leder
Hi All, A client wants to send out HTML formatted email to their client base. (Forget the flat text for this discussion). I have a simple 1 question radio button survey with a textarea box. I would like to pass the form to a processing page on their website, which then drives the

Re: value list of a timeformat

2002-03-04 Thread Douglas Brown
Looks like your missing a closing ) Success is a journey, not a destination!! Doug Brown - Original Message - From: Joshua Tipton [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 04, 2002 9:07 AM Subject: value list of a timeformat What is wrong with

RE: a little about the future

2002-03-04 Thread Nick McClure
I was actually wanting to know more about .NET and CF working together. At 04:57 PM 3/4/2002 +, you wrote: http://www.microsoft.com/net/ -Original Message- From: Nick McClure [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 16:57 To: CF-Talk Subject: RE: a little about the future

RE: in need of CF training docs

2002-03-04 Thread Paul Melanophy
There is an Macromedia interactive skillbuilding CD available - its quite good Paul Melanophy Web Applications Developer 133 - 137 Lisburn Road Belfast N. Ireland BT9 7AG T +44 (0) 28 9022 3224 F +44 (0) 28 9022 3223 E [EMAIL PROTECTED] W http://www.biznet-solutions.com -Original

Re: a little about the future

2002-03-04 Thread Bryan Stevenson
I've been dangling CF/Flash teasers in fornt of some local companies and they are flipping out about the potential. So I guess we as developers could throw our opinions at this latest announcement until our fingers are red and raw or we could be happy that the folks that pay us to build

RE: value list of a timeformat

2002-03-04 Thread Garza, Jeff
There are a few questions on what columns you are working with... I'm assuming that timeon.acd_total is the column, is this a computed column from SQL? What is report_time? It appears that you have two separate columns that you are trying to put in here... Try something like CFSET report

OT Flashguru and Macromedia

2002-03-04 Thread savan . thongvanh
Does anyone know what happened to Macromedia's Link to a site called flashguru or something to that effect? They used to have a like to it as a reference to flash resources but now i can't find any trace of it Thanks-Savan __

Re: Next/Previous???

2002-03-04 Thread Kelly Matthews
Maybe I am missing something but the help on this is SERIOUSLY lacking [EMAIL PROTECTED] writes: search dev-exchange for CF_recordcount it is very nice and unencrypted. ~~ Kelly Matthews Senior Programmer [EMAIL PROTECTED] http://www.allsoldout.net 703.387.4000 x 35

RE: a little about the future

2002-03-04 Thread Garza, Jeff
NET is the MS framework that exchanges information using SOAP, UDDI, and WSDL. It's built into the ASP.NET system as well as all the new MS languages (C#, VisualBasic.NET, C++, etc...). It's completely XML based and as such, can interface with any system that supports the above standards

RE: OT Flashguru and Macromedia

2002-03-04 Thread Mike Chambers
here you fo: http://www.flash-guru.com hope that helps... mike chambers [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 12:23 PM To: CF-Talk Subject: OT Flashguru and Macromedia Does anyone know what

Re: OT Flashguru and Macromedia

2002-03-04 Thread Stephen Moretti
Do you mean http://www.flashcfm.com/ ?? Regards Stephen - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 04, 2002 5:22 PM Subject: OT Flashguru and Macromedia Does anyone know what happened to Macromedia's Link to a site called flashguru

RE: Next/Previous???

2002-03-04 Thread Plane, Nathaniel
It would probably just be easier to write it yourself, its pretty basic.. Quick dirty example below.. - cfparam name=MyStartRow default=1 cfset MyMaxRows = 10 cfif MyStartRow is 0 PROBLEMS! cfabort /cfif cfquery

RE: value list of a timeformat

2002-03-04 Thread Joshua Tipton
It is a smalldatetime column that is pulled straight out of the database no computations. Joshua TIpton On Mon, 04 March 2002, Garza, Jeff wrote: There are a few questions on what columns you are working with... I'm assuming that timeon.acd_total is the column, is this a computed column

Re: HTML email form

2002-03-04 Thread WebMaster
We'll probably need to see the actual CF code to determine the cause of the error, but one possibility is that the radio button is not actually between form/form or cfform/cfform tags. IE is very forgiving about this sort of thing, but Netscape is not. HTH, Mike At 3/4/2002 12:12 PM, you

Re: RE: Next/Previous???

2002-03-04 Thread Kelly Matthews
Probably and I have a normal next previous module I have been using for years but as I mentioned in my first message they want it like this which is a tad different then Next/Previous... don't worry about it i will figure it out eventually... [EMAIL PROTECTED] writes: It would probably just

RE: value list of a timeformat

2002-03-04 Thread Joshua Tipton
I tried that one already and recieved this error: Error Diagnostic Information Just in time compilation error Invalid parser construct found on line 18 at position 37. ColdFusion was looking at the following text: ( Invalid expression format. The usual cause is an error in the expression

Re: value list of a timeformat

2002-03-04 Thread Joshua Tipton
Recieve a JIT error this way. Invalid parser construct found on line 18 at position 43. ColdFusion was looking at the following text: ( Invalid expression format. The usual cause is an error in the expression structure. cfset report = valuelist(timeon.acd_total(timeformat(report_time,

getting customers that placed their first order in a given time period

2002-03-04 Thread Andres
Hello everyone, I have two sql server 2000 db tables with the following fields in each: orders= orderid customerid orderdate orderamt customers customerid fname lname how can i query the total amount (sum(orderamt)) purchased by customers who placed THEIR FIRST ORDER in a given

RE: value list of a timeformat

2002-03-04 Thread Joshua Tipton
Duh I see what I typed and I did not mean to do that what I need is a valuelist of timeon.report_time in a timeformat on HH:MM. Please help On Mon, 04 March 2002, Garza, Jeff wrote: There are a few questions on what columns you are working with... I'm assuming that timeon.acd_total is

RE: value list of a timeformat

2002-03-04 Thread Garza, Jeff
Have you considered doing the time formatting on the database rather than in CF? What DB are you using? This might be the easiest solution. In SQL Server try SELECT CONVERT(varchar(2), DATEPART(hh, report_time)) + ':' + CONVERT(varchar(2), DATEPART (n, report_time)) AS thetime This should

Re: HTML email form

2002-03-04 Thread Mark Leder
On Mon, 4 Mar 2002 12:12:48 -0500, Mark Leder wrote: Hi All, A client wants to send out HTML formatted email to their client base. (Forget the flat text for this discussion). I have a simple 1 question radio button survey with a textarea box. I would like to pass the form to a processing page

RE: getting customers that placed their first order in a given ti me period

2002-03-04 Thread Haggerty, Michael A.
Just taking a stab at this... don't have a SQL box to test it with... SELECT sum(orderamt), ( SELECT TOP 1 orderdate FROM orders or WHERE or.orderdate = '1/1/2001' AND or.orderdate = '1/1/2002' AND or.customerid = cu.customerid ORDER BY orderdate ) first_order FROM orders or JOIN

RE: getting customers that placed their first order in a given ti me period

2002-03-04 Thread Plane, Nathaniel
Here are two possibilities.. the first is prolly best and works only if your ID's are integer based.. The 2nd is just flat out ugly but should work.. I'd explore it a little further before implementing either of these if i were you, but seeing how you've had no responses yet thought I'd just

OT: Web Services

2002-03-04 Thread Jeff Beer
Shot in the dark time - is anyone on this list currently working on a book about Web Services? I'd love to see one with the Forta stamp of approval :) __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD

Re: OT: Web Services

2002-03-04 Thread Jeffry Houser
I believe that Wrox Professional ColdFusion touches on the subject I'm in discussions with Osborne/McGraw-Hill about a new ColdFusion book which may cover the topic I'm not sure (on the top of my head) of a book that deals strictly with web services, but that doesn't mean they don't

RE: Web Services

2002-03-04 Thread Ben Forta
Jeff, I'd love to see one to stamp, but so far it does not exist (that I know of). Guess I'll write it. :-) --- Ben -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 1:12 PM To: CF-Talk Subject: OT: Web Services Shot in the dark time - is

RE: Next/Previous???

2002-03-04 Thread Joseph DeVore
Kelly, Take a look at my custom tag and let me know if this is what you are looking for. http://www.cfxtras.com/SalesComponentDetail.cfx?componentid=221 If it is, hit me up off list for a copy. Thank you, Joseph DeVore VeloxWeb Technologies -Original Message- From: Kelly Matthews

RE: OT: Web Services

2002-03-04 Thread Jeff Beer
There are a number of books that deal with web services, but nothing that involves Cold Fusion (where web services is the primary topic of the book). I'm sure the NDA on Neo has something to do with it :) Here's two that I'm checking out (haven't received them yet): Web Services Essentials by

RE: OT: Web Services

2002-03-04 Thread Simon Horwith
Jeff is correct about the WROX book... the COM chapter toches on it, and there's also a .net chapter. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion 5 Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct line)

create .doc from CF

2002-03-04 Thread S R
I'm using cffile to create a word doc from cold fusion The weird thing is everytime I try and open the created file in Word, it tells me I need to install something When I decline to install, it still opens up the file just fine I don't want to deter people with this installation question so

RE: OT: Web Services

2002-03-04 Thread Mike Chambers
OReilly has a book on SOAP which i have found to be a good introduction to SOAP and webs ervicesin general. Programming Web Services with SOAP http://www.oreilly.com/catalog/progwebsoap/ i also just noticed this book from oreilly: Web Services Essentials Distributed Applications with

RE: create .doc from CF

2002-03-04 Thread Duane Boudreau
Someone posted on another board to create the file as html with a .doc extension. Duane -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 1:47 PM To: CF-Talk Subject: create .doc from CF I'm using cffile to create a word doc from cold fusion. The

RE: create .doc from CF

2002-03-04 Thread Brendan Avery
http://www.cfcomet.com has info on using cfobject to generate and manipulate office documents. cffile (write/append) just creates a plain-text file; you'll get a notification from office 2000+ to install components (specifically it wants to install file-type converters for the 'unknown'

RE: create .doc from CF

2002-03-04 Thread Haggerty, Michael A.
www.cfcomet.com has all the answers. Mike -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 1:47 PM To: CF-Talk Subject: create .doc from CF I'm using cffile to create a word doc from cold fusion. The weird thing is everytime I try and open the

Re: Next/Previous???

2002-03-04 Thread Bud
On 3/4/02, Kelly Matthews penned: Does anyone know of an unencrypted tag that will do next/previous start/end type navigation. The type that outputs like cf_recordcount http://www.twcreations.com/recordcount/ Look at the Links method. Works on grouped output from joined queries

RE: OT: Web Services

2002-03-04 Thread Al Musella, DPM
Ask to join the NEO beta you might not have to read books about web services maybe just a paragraph or 2:) There are a number of books that deal with web services, but nothing that involves Cold Fusion (where web services is the primary topic of the book) I'm sure the NDA on Neo has

RE: Next/Previous???

2002-03-04 Thread Pete Freitag
Does anyone know of an unencrypted tag that will do next/previous start/end type navigation. You can also check out CF_QueryBrowse at http://www.cfdev.com/products its free. + Pete Freitag ([EMAIL PROTECTED]) CTO, CFDEV.COM ColdFusion Developer

RE: create .doc from CF

2002-03-04 Thread S R
Thanks a lot Sal From: Haggerty, Michael A. [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: create .doc from CF Date: Mon, 4 Mar 2002 13:54:42 -0500 www.cfcomet.com has all the answers. Mike -Original Message- From: S R [mailto:[EMAIL

RE: create .doc from CF

2002-03-04 Thread Simon Horwith
there is a neat example of this for both word and pdf, on the cfugorama.com library (integrated technologies section) from the recent DC CFUG. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion 5 Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC

Optional parameters in UDF's

2002-03-04 Thread Jared Stark
Is it possible to have optional parameters in a UDF, and if so, how would I do that? TIA, Jared __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month ·

RE: Optional parameters in UDF's

2002-03-04 Thread Simon Horwith
sure, just check the length of the arguments array. If it's greater than the number of arguments you defined in the function declaration, then optional arguments were passed. ~Simon Simon Horwith Macromedia Certified Instructor Certified Advanced ColdFusion 5 Developer Fig Leaf Software 1400

RE: Optional parameters in UDF's

2002-03-04 Thread Raymond Camden
To have an optional param in a UDF, don't declare it. For example, this UDF has one required and one optional arg: function greet(firstName) { var lastName = ; //did the user pass 2 or more args? if(arrayLen(arguments) gt 1) { lastName = arguments[2]; }

CFFILE, CFCONTENT Excel - Formatting Numbers

2002-03-04 Thread David Schmidt
Hi all, I am trying to tell excel that a number is text I want the zip code to always be formatted with a minimum of 5 digits I can get cf to tell excel that the number is 01838, but excel always seems to interpret this as 1838 Any ideas on how to fake excel into thinking that it is a string

Re: CFFILE, CFCONTENT Excel - Formatting Numbers

2002-03-04 Thread Jerry Johnson
Put it in quotes? (off the top of my head with no Excel knowledge) Jerry Johnson [EMAIL PROTECTED] 03/04/02 02:46PM Hi all, I am trying to tell excel that a number is text. I want the zip code to always be formatted with a minimum of 5 digits. I can get cf to tell excel that the number

Re: How do you prevent web pages/images from being SAVED

2002-03-04 Thread one
Does anyone know how to prevent: 1 Preventing a web page from being saved when being viewed in a browser and 2 Preventing the images on the page from being saved Is there some technique or maybe a program that enables this? __

RE: old question, new answer?

2002-03-04 Thread jon
Just to be clear -- you're looking for a java chat applet of some kind? Not a forum system? -- jon -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 12:23 AM To: CF-Talk Subject: old question, new answer? Anyone have a good, free or

RE: old question, new answer?

2002-03-04 Thread Rick Eidson
I set one up using MIRC and CF for a webcam chat. You could do the same without the WebCam. http://kchost.net/CamChat You can set it up through http://www.mircx.com Rick -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 1:56 PM To: CF-Talk Subject:

RE: Web Services

2002-03-04 Thread Dave Watts
Shot in the dark time - is anyone on this list currently working on a book about Web Services? I'd love to see one with the Forta stamp of approval :) There are plenty of good books on this topic available now I've heard good things about O'Reilly's SOAP book, which Mike Chambers mentioned

OT: IIS 5 FTP Security Issue

2002-03-04 Thread Bryan Stevenson
Hi All, Sorry for the OT post, but my head is getting sore from banging it against my wall ;-) I'm trying to restrict FTP access in IIS to 1 IP address. Seems easy right ;-) Well the whole dang directory security tab is grayed out (disabled) in IIS which makes it quite difficult to add an

RE: IIS 5 FTP Security Issue

2002-03-04 Thread Lee Fuller
My .02... Get Serv-U. Much better software and much more control. http://www.serv-u.com (And no, I'm not affiliated.) | -Original Message- | From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] | Sent: Monday, March 04, 2002 12:18 PM | To: CF-Talk | Subject: OT: IIS 5 FTP Security

RE: IIS 5 FTP Security Issue

2002-03-04 Thread Garza, Jeff
This isn't possible with the version of IIS that comes with Win2K Professional. You have to be on Win2K Server for that to be enabled... I think you may well be better off with Lee's suggestion of Serv-U... Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]

RE: IIS 5 FTP Security Issue

2002-03-04 Thread Joel Blanchette
I don't think u can set directory security in Professional..Only server. == Joel Blanchette IT and System Specialist Point of Impact Technologies Inc. Tel: (204) 989-0013 Email: [EMAIL PROTECTED] == -Original Message- From:

Re: IIS 5 FTP Security Issue

2002-03-04 Thread Bryan Stevenson
Thanks all for the tips. Yup it looks like Professional doesn't play nice with IP restrictions. Geesh so much software out there will say This feature only available with the XYZ version. But of course asking M$ to add something as user friendly as that would be out of the question ;-) OK

RE: IIS 5 FTP Security Issue

2002-03-04 Thread Lee Fuller
Careful... Have tried playing with some of the freebies and they're typically wonderful on the admin side, but buggy/full-o-holes on the user/security side. Haven't had any direct experience with Argosoft's software. But have tried many others, and have always ended up back with Serv-U. It

Re: IIS 5 FTP Security Issue

2002-03-04 Thread Bryan Stevenson
Thanks for the heads up. So far ArgoSoft has been great...but that was the mail server ;-) Cheers Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia

Re: IIS 5 FTP Security Issue

2002-03-04 Thread Matt Robertson
Me three on Serv-U. I have the older (cheaper ;D) v2.5-something. Nothing easier when it comes to providing access to disparate directories without messing w/NT permissions. Tiny memory footprint and its never crashed in 1 5 months. --- Matt Robertson

  1   2   >