RE: Studio Development Mapping

2001-05-18 Thread Peter Tilbrook
You need to register your server at the Allaire web site and they send you a full document set for free (Administering and Studio). I registered on a Monday and had the manuals only three days later (not bad considering I'm DownUnder). -Original Message- From: [EMAIL PROTECTED]

RE: Studio Development Mapping

2001-05-18 Thread Paul Smith
So you're telling me that even though I've always purchased my Allaire products from Allaire, they don't know it, eh? Sheeesh! best, paul At 04:36 PM 5/18/01 +1000, you wrote: You need to register your server at the Allaire web site and they send you a full document set for free

Configuring CF45 for Java

2001-05-18 Thread Jason Lees (National Express)
Hi All, The problem I am experiencing is that I have developed a Java Applet that creates a Menu system, It works fine on the development macine with Java installed but when I check on another Machine there I get a Class not found Exception. I have assumed that this is becuase CF isn't set up

profanity checker

2001-05-18 Thread Will Swain
Hi all, I posted this a few days ago, and was directed towards some custom tags, but none of them seem to work exactly how I want them, and I would like to come up with something myself. I have a Access db table which contains a list of badwords, and 3 ratings for each. The administrator sets

RE: CF and Flash classes?

2001-05-18 Thread Kola Oyedeji
is it possible to use flash to update the client's display with data bieng pulled by cf from a database if so how is this done? Thanks KOla -Original Message- From: Paul Mone [mailto:[EMAIL PROTECTED]] Sent: 18 May 2001 00:28 To: CF-Talk Subject: RE: CF and Flash classes? I've done

High usage web sites.

2001-05-18 Thread Craig Dudley
Hi, Anyone have experience of using Coldfusion with very large usage web sites? Somewhere in the region of 240k - 250k page impressions an hour. If so, what sort of hardware would be needed? I know it's a bit vague, the site would be fairly basic database searches through say, 40-50k records,

RE: UPS XML

2001-05-18 Thread Mel Wade
Right now the need is for their Rate System. Eventually we will add other services. The UPS Docs are clear enough from their end that I feel I will be able to work it once I get started. I just need a base to get going. Mel -Original Message- From: Joshua Tipton [mailto:[EMAIL

RE: defining french table in oracle

2001-05-18 Thread Stephen Galligan
Hi, While language support depends on the database install, most installations include support for Western European languages. If you use the proper NLS specifier and pass that to oracle then you can support languages with no problem. SELECT TO_CHAR(sale_date, 'Day DD Month HH24:MI:SS')

RE: defining french table in oracle

2001-05-18 Thread Stephen Galligan
Oops forgot to say the rest! SELECT TO_CHAR(sale_date, 'Day DD Month HH24:MI:SS') as nice_sale_date FROM sales WHERE sales_id=3939 This would return Nice_sale_date -- Wednesday 25 October 2000 00:16:13 if you do the same query and add the NLS specifier SELECT

RE: profanity checker

2001-05-18 Thread Raymond Camden
cfloop query=getprofanities cfset newlist = ReplaceNoCase(bodytext, getprofanities.badword, getprofanities.rate1, ALL) /cfloop One mistake is the use of quotes. In a function, if you do Function(foo), foo is a string. But you want to use the value of getprofanities.badword, so you

RE: [RE: [Re: Native Drivers - Oracle80]]

2001-05-18 Thread mherbene
Remember that each database can have multiple schemas; a schema is really just a set of tables (and indexes, triggers, etc) that belong to a user. But if you've got user A who owns schema B in database XYZ, and your application needs access to the tables in schema B, then you can use user A's

RE: profanity checker

2001-05-18 Thread John
It looks to me like you are setting the variable newlist equal to the form field after a replace. The problem lies mostly that every time you loop over this you reset the variable. So of the list result from the query has no matches then your variable will be equal to the original form field.

Report Solution (long)--My shared experience

2001-05-18 Thread Terri Stocke
Okay, all. I just spent 4 days tearing my hair out trying to figure out how to pass CF variables to a Crystal Report(8) (while hiding the db userid and password). I searched the archives and the Allaire site and noticed that many other people have been gnashing their teeth over the same topic,

Re: High usage web sites.

2001-05-18 Thread Edward Smith
We do. We serve about 3 million pages per day lately, with our hourly peaks usually in the 400-500K range. About half of these are CF based - ranging from very simple no-query pages to pages with a dozen queries. The most hit pages have 2-3 queries on them. Our DB server is a Sun E450

RE: Will MM Create Server-Side Image Editing Tools For CF?

2001-05-18 Thread John McKown
Thanks. I will take a look at that. John McKown Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 Local: 302-736-5515 Toll Free: 888-432-7965 Fax: 302-736-5945 Cellular: 302-423-0605 E-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Web Site: http://www.delaware.net

CF Performance Tuning

2001-05-18 Thread Tim Bahlke
Good Morning List I have read posts talking about Allaire Consultants that come into a company and play around with your CF setup in the hopes of boosting performance. We are thinking about bringing in such a person. I'm fishing for information on how we set something like this up. Is it

RE: High usage web sites.

2001-05-18 Thread Craig Dudley
Thanks Edward, very useful info. Regards, Craig. ~~ 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:

[Re:] RE: defining french table in oracle

2001-05-18 Thread FARRAH NG
Hi, my problem is i have to put the french text like this one : Le revenu d'exploitation par action selon la comptabilité de caisse1, du deuxième trimestre s’est établi à 0,84 $ contre 0,84 $ pour la même période de l’exercice précédent into my database table. I am developing a site in which

RE: Report Solution (long)--My shared experience

2001-05-18 Thread mherbene
I haven't done anything like this but may have to soon. Question: is there anything stopping a user from creating an html page on their desktop with a form that posts to the report server ASP page, just like your action page does? If not, it appears that anyone could run any report if they can

RE: Report Solution (long)--My shared experience

2001-05-18 Thread John
Sorry I didn't reply sooner. I had this solution but chose not to post it for fear of all the ASP flames. We were presented with a similar problem and resolved it much the same way. We were faced with an additional problem in that we had an integrated security system which was handled through

CF-driven In-browser HTML editor

2001-05-18 Thread Jason Blum
Hello, First question: Has anyone out there seen a Cold Fusion tag or app driving an in-browser HTML editor for folks who need to submit content to a web page but don't know HTML? Second question: http://www.siteobjects.com/ offers EzEdit and SoEdit which fit the bill perfectly - but after

Re: High usage web sites.

2001-05-18 Thread Paul Smith
Nice posting. Thanks! The following (50ms) appears low to me. (But what do I know?) Do these pages have relatively little content delivered from DB to page by CF? I have a Yellow Pages application I'm working on. It typically takes longer than 50ms to deliver a list of 100 Yellow Page

RE: CF-Notes database connection

2001-05-18 Thread Rob Brooks-Bilson
Lloyd, Lotus has a product called LEI that you can use to query data from ODBC data sources (SELECT, INSERT, etc.). We use it in some of our Notes apps to get data from our AS400 as well as a SQL server. Best regards, Rob Thanks to everyone who responded. It is disappointing that no one has

deleting records in a dbase III table

2001-05-18 Thread Terry Troxel
I am stumped as to why I cannot delete records from a dbase III dbf file that is defined as an odbc source using the MS dbase 3 ODBC driver. I can update, insert, but no delete. Any and all suggestions would be greatly appreciated. Terry The datasource is defined as test.dbf and pointing to

RE: CF-driven In-browser HTML editor

2001-05-18 Thread Darren Adams
Hello Jason, cant really answer your second question but, as for the first I use HTML_Area (the lite version at present). You can download this from Alliares tag gallery, I think it is pretty good but there are a few idiosyncracies with it and it is deffinately worth paying to get the full

RE: Report Solution (long)--My shared experience

2001-05-18 Thread Terri Stocke
hmmm. Good question. Yes, I suppose they could do that. Depending on how you set up your Crystal Report, however, you probably could make it more difficult for them to 'guess' what fields the report is expecting. For example, this is what my final CF page has in the source code: FORM

Harpoon: Disappearing Form Elements

2001-05-18 Thread Paul Sizemore
I'm using the great new Harpoon Cascading Menu, and I have a search form on the page with the menu, and on mouse over of the menu, the menu expands and the pop up select in the form disappears. I've tried moving the form around, moving it to a different layer, and only including those two

Re: High usage web sites.

2001-05-18 Thread Edward Smith
Over 50ms from a cached query? That sounds kinda high to me. Just to make sure we're talking about the same thing, I'm measuring from the page processing time in the DEBUG info for that page, not what the load generator or anything else is telling me. What other operations are you doing on the

RE: CF-driven In-browser HTML editor

2001-05-18 Thread Tim Bahlke
First question: Has anyone out there seen a Cold Fusion tag or app driving an in-browser HTML editor for folks who need to submit content to a web page but don't know HTML? We use HTMLAREA by iAutomated, http://www.iautomated.com/store/default.cfm?iid=2. Pretty happy with it so far.

RE: deleting records in a dbase III table

2001-05-18 Thread Adkins, Randy
Is there an error returned? If memory serves me right, DBaseIII also uses a command called: PACK Not sure it is needed in this case however. -Original Message- From: Terry Troxel [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 9:18 AM To: CF-Talk Subject: deleting records in a

CF 4.5.2 docs update

2001-05-18 Thread David Shadovitz
Here's a page with late changes and additions to the CF Server and Studio documentation: http://www.allaire.com/documents/cf45docs/cfupdate.htm I've long been bothered by the inability to maintain horizontal cursor position in Studio. Didn't know that Studio has addressed this. The

Re: [the big export]

2001-05-18 Thread Michael Lugassy
yes, import. I'm using SQL 2000 I know that there is a DTS object but I don't know how can I use it to transfer 1000s of txt files easily... Help!! :) - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 17, 2001 6:44 PM Subject: Re: [the

Re: the big export

2001-05-18 Thread Michael Lugassy
thanks for the tip, paul! I keep seeing this learn VB tips and I was wondering - are there any good and quick resources on learning VB on the net? something you know about?? Michael. - Original Message - From: Paul Mone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May

Re: EnableCFoutputOnly not cutting the mustard in Custom Tag

2001-05-18 Thread Jamie Jackson
Patricia and others, Thanks for your replies, everyone. Patricia's solution is the sort of answer I was looking for. I didn't want to use a trimmed caller variable, as doing so is three times more complicated than just getting the results via the custom tag itself. Fine for me, but I intend

Re: deleting records in a dbase III table

2001-05-18 Thread C Frederic Valone
Are you getting an error? If so what is it please post the code and I'll take a look... I have worked a bit with dbf files and may be able to help. Also helpfull would be the os and cf version you are using. Thanks, Frederic Terry Troxel wrote: I am stumped as to why I cannot delete records

Re: the big export

2001-05-18 Thread Michael Lugassy
Aaron, the DTS sounds VERY good and USEFUL on paper, but I didn't know how to use it on MULTIPLE files where the datasource, is, in fact, 100s of 1000s of txt files.. do you know how to batch import a complete directory, for example? Michael. - Original Message - From: Aaron Rouse

Re: CF-driven In-browser HTML editor

2001-05-18 Thread Ken Wilson
Second question: http://www.siteobjects.com/ offers EzEdit and SoEdit which fit the bill perfectly - but after two days I am unable to get either to work properly. Has anyone had any luck with this? SoEdit is still early beta with several features missing. I use EzEdit in a few places

Re: CF-driven In-browser HTML editor

2001-05-18 Thread Terry Troxel
I have used EZedit and it works fine. Send me an example of your code and the paths to the ezedit files and I will try and help you. Terry - Original Message - From: Jason Blum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 6:12 AM Subject: CF-driven

Re: [Re: CF vs Perl]

2001-05-18 Thread Alex
http://www.faqs.org/faqs/www/cgi-faq/ another programmer [EMAIL PROTECTED] wrote: Watch the I thinks I'd bet because it's just that, not I have observed or I know I think Perl, in the past, would've been frowned upon because the execution of the perl engine would've been required for every

RE: profanity checker

2001-05-18 Thread Will Swain
Thanks Raymond, I will look at that regular expression, as I can see it being a loophole, people putting spaces between letters. Like your choice for a bad word!! Cheers Will -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 18 May 2001 13:22 To: CF-Talk

RE: profanity checker

2001-05-18 Thread Will Swain
Thanks John, It seems to be working now. Incidentally, there wasn't a where clause yet, I have added it now. Many Thanks Will -Original Message- From: John [mailto:[EMAIL PROTECTED]] Sent: 18 May 2001 13:39 To: CF-Talk Subject: RE: profanity checker It looks to me like you are

Re: EnableCFoutputOnly not cutting the mustard in Custom Tag

2001-05-18 Thread Jamie Jackson
iif(isdefined('myVar'),de(''),setvariable('myVar',myDefaultValue)); The following requires less typing (and is more intuitive to me). It is equivalent, isn't it? if (NOT isdefined('myVar')) { myVar = MyDefaultValue; } Thanks for your reply, Jamie On Fri, 18 May 2001 11:19:09 +1000, in cf-talk

Re: High usage web sites.

2001-05-18 Thread Michael Lugassy
what website are we talking about? ibsys.com? - Original Message - From: Edward Smith [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 2:51 PM Subject: Re: High usage web sites. We do. We serve about 3 million pages per day lately, with our hourly peaks

Re: deleting records in a dbase III table

2001-05-18 Thread Terry Troxel
Here is what is returned: Error Diagnostic Information ODBC Error Code = S1000 (General error) [Microsoft][ODBC dBase Driver] Could not delete from specified tables. SQL = delete from work Data Source = test.dbf SQL = delete from work The error occurred while processing an element with a

RE: CF-driven In-browser HTML editor

2001-05-18 Thread Billy Cravens
Another option is eWebEditPro by Ektron (www.ektron.com) eWebEdit is actually the editor used in Spectra. --- Billy Cravens HR Systems, Sabre [EMAIL PROTECTED] -Original Message- From: Tim Bahlke [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 8:31 AM To: CF-Talk Subject: RE:

Dedicated Hosting

2001-05-18 Thread Michael Lugassy
I'm about to start a personal project which requires a dedicated server, anyone can recommened the cheapest DEDICATED server? NT/WIN2K a must. Thanks! ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: CF Performance Tuning

2001-05-18 Thread John Wilker
Check out http://www.allaire.com/services/consulting/ J. John Wilker Web Applications Consultant Macromedia Certified ColdFusion Developer www.red-omega.com http://www.red-omega.com Losing - If at first you don't succeed, failure may be your style. ~despair.com -Original Message-

Re: CF-driven In-browser HTML editor

2001-05-18 Thread Eric Dawson
i am using ezedit - I'll send you my code. very very basic implementation - but good enough for my paltry standards. Eric From: [EMAIL PROTECTED] (Jason Blum) Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CF-driven In-browser HTML editor Date: Fri, 18 May 2001 09:12:17

RE: CFTRANSACTION

2001-05-18 Thread Bill King
AHH... Use the ISOLATION attribute for additional control over how the database engine performs locking during the transaction. This is what I was looking for!! -Original Message- From: Semrau, Steven L Mr SRA [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 1:14 PM To:

Re: the big export...ColdFusion.NET?

2001-05-18 Thread Jon Hall
Michael, before you go and learn VB, realize that vb is morphing into vb.net. Although the syntax is similar, the changes/improvements are quite drastic. You may want to skip picking up a book on the old VB and concentrate on learning the new stuff. Microsofts site is a great place to start

RE: profanity checker

2001-05-18 Thread Raymond Camden
This is a bit off topic, but back in the 'old days', I wrote a curse word checker that had the option to replace the curse word with what I called 'cartoon cursing'. Ie, it would change Clinton to $%^@!@# : === Raymond

RE: profanity checker

2001-05-18 Thread Robert Everland
This is really no way to check for all kinds of bad words. Let's use the Clinton scenario wCiLlIlNiTaOmN If you look closely you see I put the word willion in between where there were space for clinton. The only way to insure there are no bad words is if you have a place where you can manually

RE: Configuring CF45 for Java

2001-05-18 Thread Dave Watts
The problem I am experiencing is that I have developed a Java Applet that creates a Menu system, It works fine on the development macine with Java installed but when I check on another Machine there I get a Class not found Exception. I have assumed that this is becuase CF isn't set up to

Re: deleting records in a dbase III table

2001-05-18 Thread Keith Meade
Can you delete a single record, e.g. delete where key=value ? - Original Message - From: Terry Troxel [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 9:16 AM Subject: Re: deleting records in a dbase III table : Here is what is returned: : : Error Diagnostic

Re: High usage web sites.

2001-05-18 Thread Edward Smith
No, all the sites that are listed on the map: http://www.ibsys.com/aboutus/map.html Michael Lugassy wrote: what website are we talking about? ibsys.com? - Original Message - From: Edward Smith [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 2:51 PM

Best way to limit access to a specific template from only previous template?

2001-05-18 Thread Jerre Hale
What is the best way to limit access to a specific template? Template2 can only be accessed via template1. Disallowing user access to template2 simply by typing in the specific url for template2. I see where CFABORT can limit access to a ip addresses as exampled in the manual Advanced

RE: Best way to limit access to a specific template from only previous template?

2001-05-18 Thread Raymond Camden
There are probably a few ways you can do this. 1) You can check cgi.http_referer(check my spelling on that). It returns the URL of the page where you came from. 2) Don't have a page2.cfm! Have page1.cfm link to itself, and if the proper URL variable is returned, you can CFINCLUDE the contents

RE: Best way to limit access to a specific template from only p revious template?

2001-05-18 Thread Adkins, Randy
CFIF #CGI.HTTP_REFERER# IS template.cfm *** AUTHORIZED CFELSE *** NOT AUTHORIZED /CFIF -Original Message- From: Jerre Hale [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 11:59 AM To: CF-Talk Subject: Best way to limit access to a specific template from only

cfsilent - what's its function?

2001-05-18 Thread W Luke
What exactly does CFSILENT do? They're a custom tag I'm using which I had to make a modification to - when I ran it locally, it worked fine, but uploading it to the live site revealed that my hosters don't have it installed. I removed cfsilent from the code, and tested it, and the code worked

RE: cfsilent - what's its function?

2001-05-18 Thread Raymond Camden
Stealing from the CFDocs: CFSILENT suppresses all output that is produced by the CFML within the tag's scope. CFSILENT CFSET a=100 CFSET b=99 CFSET c=b-a CFOUTPUT#c#/CFOUTPUT /CFSILENT === Raymond Camden, Principal

RE: cfsilent - what's its function?

2001-05-18 Thread Darren Adams
Is it the slide out menu one by any chance ? I had this error earlier. I just assumed it was the fact that I dont have cold Fusion 4.5. -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: 18 May 2001 17:11 To: CF-Talk Subject: cfsilent - what's its function? What exactly

Re: deleting records in a dbase III table

2001-05-18 Thread Terry Troxel
I am using nt4 cf 4.01 Microsoft][ODBC dBase Driver] Could not delete from specified tables. Here is the error that is thrown. You can see my sql call in it as well. I am trying to delete all the records. I have made a workaround by creating a blank dbf and dbt and then deleting the files and

RE: Best way to limit access to a specific template from only previous template?

2001-05-18 Thread Craig Bowes
You should be able to use the referrer, right? #cgi.http_referer# Something like this maybe: CFIF cgi.http_referer does not contain template1.cfm H1Unauthorized host detected! Access denied!/H1 CFABORT SHOWERROR=You are not authorized to use this function! /CFIF And yes, the word referer is

RE: Two Questions for the price of one!

2001-05-18 Thread Craig Bowes
It really doesn't matter what I put for the requesttimeout. It breaks way before that. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 4:14 PM To: CF-Talk Subject: RE: Two Questions for the price of one! Query String:

Re: cfsilent - what's its function?

2001-05-18 Thread W Luke
Thanks - sorry I didn't look there first. Is there any reason why my hosters would disable this tag? It's on a NT 4 box. Will - Original Message - From: Raymond Camden [EMAIL PROTECTED] Newsgroups: gradwell.lists.cftalk Sent: Friday, May 18, 2001 5:21 PM Subject: RE: cfsilent - what's

Problems with inserting a date fields (Using Native Driver, AS/400)

2001-05-18 Thread James Taavon
Can anybody tell me why I am getting this error? Thanks, James cffile action=UPLOAD filefield=documents destination=/inq2/netscape/suitespot/intranet-docs/dllr/secured-docs/lsar/pdf nameconflict=OVERWRITE cfif #date_closed# IS NOT cfset str_date_closed = #date_closed# cfelse

Re[2]: Download Software From The CF Server

2001-05-18 Thread Carol Bluestein
Thank you all for your help. It worked. Carol L. Bluestein Senior Programmer NYS Office of Real Property 518-486-6335 [EMAIL PROTECTED] Reply Separator Subject:Re: Download Software From The CF Server Author: [EMAIL PROTECTED] Date: 5/17/01

RE: Report Solution (long)--My shared experience

2001-05-18 Thread Paul Smith
I don't understand your point here. Could you explain in more detail, pleas? best, paul At 01:27 PM 5/18/01 +, you wrote: hmmm. Good question. Yes, I suppose they could do that. Depending on how you set up your Crystal Report, however, you probably could make it more difficult for them

RE: Best way to limit access to a specific template from only p revious template?

2001-05-18 Thread Albert Feliu
Be care using CGI variables. This method is extremely easy to hack. Albert. -Mensaje original- De: Adkins, Randy [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 18 de mayo de 2001 18:09 Para: CF-Talk Asunto: RE: Best way to limit access to a specific template from only p revious

Re: Problems with inserting a date fields (Using Native Driver, AS/400)

2001-05-18 Thread Wjreichard
My guess is either date_closed can not be null in the DB or NULL is not the correct way to insert a null value into your particular DB. Try running the insert sql statement thru a DB tool ... Query Analyzer for MS-SQL ... and resolve the problem there. Then move back to CF. Good luck, Bill

RE: Best way to limit access to a specific template from only p revious template?

2001-05-18 Thread Albert Feliu
Be care using CGI variables. This method is extremely easy to hack. Albert. -Mensaje original- De: Craig Bowes [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 18 de mayo de 2001 18:24 Para: CF-Talk Asunto: RE: Best way to limit access to a specific template from only previous template?

Re: Best way to limit access to a specific template from only p revious template?

2001-05-18 Thread Chris Rice
Why not store some sort of authorization code as session variable? Chris [EMAIL PROTECTED] - Original Message - From: Albert Feliu [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 6:21 PM Subject: RE: Best way to limit access to a specific template from only p

RE: cfsilent - what's its function?

2001-05-18 Thread Raymond Camden
I don't think you can disable it. It's not on the list of tags that can be turned off. Are you use the server is 4.5? I don't remember your original email, but I believe you said that your code was failing because of the presence of this tag. Are you sure then that the server you are using is

RE: Report Solution (long)--My shared experience

2001-05-18 Thread Terri Stocke
Sure. If you have a Crystal Report that is accessed directly through a URL, and not by passing parameters via a web page, and that Crystal Report expects certain input from a user, Crystal Reports will display a series of javascript-like prompts for the user to fill in. So, for example, one of

Help with CFDEV

2001-05-18 Thread CF Crazy
Ok, I need help can some one please help me. I don't know what I am doing wrong. I have included the error and my code on both pages. I keep getting this error: Error Diagnostic Information ODBC Error Code = S1000 (General error) [Microsoft][ODBC Microsoft Access Driver] The search key was

RE: Help with CFDEV

2001-05-18 Thread Raymond Camden
Looks like CFUPDATE is failing because your trying to update a record that doesn't exist. I see in your code that you hard coded the ID to 3. Does that record exist? === Raymond Camden, Principal Spectra Compliance Engineer for

Deep Into Oracle 8.0.5

2001-05-18 Thread Debbie McDaniel
I am deeper into Oracle 8.0.5 than I wish to be...but I know someone here can help me. Currently, I have an application that connects to Oracle using Native Drivers. Recently, I have noticed that when I view Oracle Sessions (using Oracle Tools, Instance Manager), when I close my browser session,

Another Question About Database Connections Using Oracle

2001-05-18 Thread Debbie McDaniel
Here I go again... Where can I find specific information on how CF connects to an Oracle DB using Native Drivers? In the CF Administrator, under data sources, Native Drivers, what happens when I select the option Maintain Database Connections. Does this mean that only one connection per client

Syntax Output??

2001-05-18 Thread Alii Design
How can I display a tag syntax within a .cfm page without executing the tag? Rich ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Syntax Output??

2001-05-18 Thread Raymond Camden
You mean you want to display CF... on screen? Same way you would do HTML. Either manually change to lt; and to gt;, or, if it's a file, use CFFILE to read it and do the change w/ regex. Also, I _think_ someone wrote a CFX to do exactly this, plus some other formatting things. I want to say

OT: Integration with LiveLink?

2001-05-18 Thread Reed Powell
Anyone out there doing any sort of integration with the LiveLink document management product from OpenText? tia, Reed Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Re: Problems with inserting a date fields (Using Native Driver, AS/400)

2001-05-18 Thread James Taavon
Actually, the NULL value is ok. The insertion works correctly on my local machine, but I am using ODBC with Client Access to connect to AS/400 where I am using a Native Driver connection using DB2 Connect on the production side since CF is running on Solaris on Production and Windows on my local

Re: deleting records in a dbase III table

2001-05-18 Thread Don Vawter
just grasping at staws here because it has been a long long time. Do you really want to delete all records? I think you would use: DELETE * from work (note *) - Original Message - From: Terry Troxel [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 8:16 AM

Re: EnableCFoutputOnly not cutting the mustard in Custom Tag

2001-05-18 Thread Jim McAtee
I didn't want to use a trimmed caller variable, as doing so is three times more complicated than just getting the results via the custom tag itself. Fine for me, but I intend this to be used by others in my company, and the simpler the usage the better. So, I can use: cf_MyCustomTag

Displaying recordsets?

2001-05-18 Thread Adrienne H. Cregar
Hi all! I am trying to figure out how to display my recordsets in groups of 5... you see this on search engines, etc... where you can display the first 5 or 10, then hit the next button for the next set, etc... The examples in my books show how to limit a recordset, but not how to display a set,

RE: Syntax Output??

2001-05-18 Thread Alii Design
Sometimes I just try to make a problem more complex than it should be. lt; and gt; were just to simple of an answer and work just fine. Thanks for your help, Rich -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 2:08 PM To: CF-Talk Subject:

RE: Help with ActiveEdit - OPPS

2001-05-18 Thread Pete Freitag
Hi, You are using Activedit with type=edit which is now deprecated, and not the recommended way to do it. It looks like you are probably using version 2.0 (am I right?) In 2.0 you can use type=form which will allow you to use activedit like a textarea... cf_activedit fieldname=htmlcode

RE: Displaying recordsets?

2001-05-18 Thread John Stanley
I currently use the following code in a few different places in my application. It works fast and goodI am posting it because many people helped me getting started using CF and I hope to continue the traditionIf you come up with something better that is awesome, just post it

RE: Displaying recordsets?

2001-05-18 Thread Pete Freitag
Sure... Use the maxrow and startrow attributes of cfoutput... cfoutput maxrows=5 startrow=#url.lastrecord#/cfoutput Where url.lastrecord would be where you need to start (for page 3 it would be 15) ~~ Structure your ColdFusion code with Fusebox.

OT: IIS4 Log file

2001-05-18 Thread Chad Gray
I have two servers. One server logs browser, and computer information like this: Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt) This computer has CF 4.5, and Webtrends loaded on it. The other server (IIS4 also, but without CF4.5, and Webtrends) does not log this information. Anyone

RE: IIS4 Log file

2001-05-18 Thread Dan Phillips
Check your logging properties in IIS. Open IIS, right click on the master site, properties, Edit WWW Service. The Web Site tab should now be displayed, At the bottom click Properties near where it says Enable Logging. Click the Extended Properties tab. Now just make sure all the attributes you

RE: IIS4 Log file

2001-05-18 Thread Christopher Olive, CIO
did you select these items in the Logging configuration on both machines? chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 3:12 PM To: CF-Talk Subject: OT: IIS4 Log

How do I create Boolean field with create table in access?

2001-05-18 Thread Mike
How do I create Boolean field with create table in access? what other field types are available? Thanks mike ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: IIS4 Log file

2001-05-18 Thread Chad Gray
The only log format that has the Extended Properties tab is the W3C Extended log format and if memory serves this format is not comma delimited. Both computers are setup to use the IIS Log Format and that format does not have an extended properties tab. So it is kind of strange that they dont

RE: Deep Into Oracle 8.0.5

2001-05-18 Thread mherbene
In CF Admin for a particular datasource there is a setting maintain database connections and another setting Connection timeout. If you check maintain database connections, then CF will keep a connection to the database open for as long as connection timeout after its last use. So if you have

Re: IIS4 Log file

2001-05-18 Thread Tracy Bost
Change your Active log format to W3C Extended Log File Format Then make sure your WebTrends is pointing to ex* and not in*.. - Original Message - From: Christopher Olive, CIO [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 18, 2001 2:29 PM Subject: RE: IIS4 Log file

RE: How do I create Boolean field with create table in access?

2001-05-18 Thread John Wilker
Access has a yes/no type that you can use as a Boolean-esque field. Checking for Yes/No and I think you can check for existence as the yes as well. Not sure on the last part. Hope that helps. J. John Wilker Web Applications Consultant Macromedia Certified ColdFusion Developer

rebuilding mod_coldfusion

2001-05-18 Thread Jeff Pizio
I probably have a very simple question but I have not been able to find the answer anywhere. I want to rebuild the mod_coldfusion.so file but it keeps returning an error as follows: apxs:Break: Command failed with rc=255 Does anybody know what the problem is? Jeff

Re: How do I create Boolean field with create table in access?

2001-05-18 Thread Tony Schreiber
It's called a Yes/No field in Access. Access will take either 1/0 or True/False values. Use 1/0 to maintain compatibility with MS SQL Server. Internally, I think it's stored at 0 and -1, go figure. How do I create Boolean field with create table in access? what other field types are

RE: How do I create Boolean field with create table in access?

2001-05-18 Thread Pete Freitag
The Yes/No data type is Boolean. ~~ 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:

  1   2   >