Re: VTM Files

2001-11-23 Thread Bryan LaPlante
a type of control for each of your entries as well as adding in the standard event and style sheet tabs that are used with the tag editors that come with studio/homesite. Bryan LaPlante - Original Message - From: Steve Reich [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday

Re: Breaking up cfoutput

2001-10-03 Thread Bryan LaPlante
Sound like you are looking for the group attribute of the cfoutput tag. Here is a snippet from the help file. GROUP Optional. Specifies the query column to use when you group sets of records together. Use this attribute if you have retrieved a record set ordered on a certain query column. For

Re: JS tag keyboard shortcut

2001-10-03 Thread Bryan LaPlante
are you talking about code templates. Press F8 and expand the editor section to see the code templates section and you will see at the bottom of the dialog where it says [ctrl + j] is the keyboard short-cut that invokes the code template. Bryan LaPlante - Original Message - From

Re: SELECT

2001-09-30 Thread Bryan LaPlante
I imagine you are pulling your list from a database and using the query of a cfoutput, just add this code to it. select cfoutput query=mybooknames cfif name is form.namecfset selected = selectedcfelsecfset selected = /cfif option value=#name# #selected##name#/option /cfoutput /select there is

Re: CF path question...

2001-09-16 Thread Bryan LaPlante
getDirectoryFromPath(script_name) should give you what you want. Bryan LaPlante - Original Message - From: Paris Lundis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, September 16, 2001 3:37 PM Subject: CF path question... I have one of these unique issues

Prepared statements

2001-08-30 Thread Bryan LaPlante
continue to run the query with the cfqueryparam or would I need to run it as a stored procedure? Bryan LaPlante President Network Web Applications Inc. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: Looping through a CFfile upload

2001-08-22 Thread Bryan LaPlante
cfloop index=file list=#form.fieldnames# delimiters=, cfif file is not submit cffile action=UPLOAD filefield=#file# destination=c:\destination\ nameconflict=MAKEUNIQUE /cfif /cfloop - Original Message - From: Brent Goldman [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: ava script

2001-08-17 Thread Bryan LaPlante
In IE the form tag can have a property of autocomplete set to false and the form elements won't do that. Bryan - Original Message - From: Andy Ewings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 17, 2001 6:50 AM Subject: ava script | OK another Javascript

Re: UDF best practices

2001-08-09 Thread Bryan LaPlante
I am getting pretty good results with saving my udf's in the session scope. see the tutorial at http://www.kcfusion.org/Presentations/cflp.zip Bryan - Original Message - From: Correa, Orlando (ITSC) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 9:02 PM

Re: Verity index problems

2001-08-05 Thread Bryan LaPlante
Try action=Purge first before you update. Bryan LaPlante - Original Message - From: Carlo van Wyk [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, August 05, 2001 1:50 PM Subject: Verity index problems | Whenever I update my verity index after adding files, the index

CFScript?

2001-07-22 Thread Bryan LaPlante
I am trying to create a custom tag for CF5 that will find functions in the body of the tag and run them dynamically. The end result of the tag will be saving or caching those user defined functions into the variable scope of my choice. This much of the tag I have working properly. I don't know if

Re: CFX and the caller scope?

2001-07-22 Thread Bryan LaPlante
I wish I had more information about how the request.class was written in the cfx.jar file. I would like to write my own support for the pageContext() into it. It would be nice at the very least to have support for session, application, request and caller scope. As usual I want something that the

Regexp help

2001-07-17 Thread Bryan LaPlante
( so that I can get the word addition into a list. Here is what I have so far. cfset funcName = refindnocase(([function]+) [ ]+ \(,thistag.generatedcontent,1,true) function addition(a,b){ somevar = a + b; return somevar; } Bryan LaPlante

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Bryan LaPlante
Try saving the content in a variable first. cfset content = thistag.generatedContent then clear the content. cfset thistag.generatedContent = then do your replacement. cfoutput#ReplaceNoCase(content, 'do NOT', 'do')#/cfoutput - Original Message - From: Jamie Jackson [EMAIL

Learning CFX

2001-07-16 Thread Bryan LaPlante
I am learning to write cfx tag in Java. If anyone is aware of open source tags that I can learn from I would like to download them. Thanks Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your

Re: Learning CFX

2001-07-16 Thread Bryan LaPlante
| 619.222.7082 | | | -Original Message- | From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] | Sent: Monday, July 16, 2001 4:57 AM | To: CF-Talk | Subject: Learning CFX | | | I am learning to write cfx tag in Java. If anyone is aware of open source | tags that I can learn from I would like

Re: table column names

2001-07-16 Thread Bryan LaPlante
Try this. CFQUERY NAME=QryResult DATASOURCE= MAXROWS= DBTYPE=ODBC /CFQUERY TABLE TR CFLOOP INDEX=ColumnName LIST=#QryResult.ColumnList# DELIMITERS=, TDCFOUTPUT#ColumnName#/CFOUTPUT/TD /CFLOOP CFOUTPUT QUERY=QryResult /TR TR CFLOOP INDEX=CellValue LIST=#QryResult.ColumnList#

Re: CF Services

2001-07-16 Thread Bryan LaPlante
I will approach this from the NT point of view since you didn't say what OS your on. In user manager for domains you will see user rights under the policies menu. Click the checkbox labeled show advanced user rights in the user rights policy dialog. Choose access this computer from a network from

CFX and the caller scope?

2001-07-15 Thread Bryan LaPlante
or help would be appreciated. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http

Re: Define and Call UD-Functions

2001-07-11 Thread Bryan LaPlante
There is a tutorial you can download from the KCfusion (Cold Fusion user group in Kansas city) that shows you how to package udf's and load them once per life of the server if you choose the server scope. The tutorial says you can use any scope you want. http://www.kcfusion.org/ Look in the

Host provider needed

2001-07-10 Thread Bryan LaPlante
I have a friend that is looking for a Cold Fusion host that supports a web based shopping cart client so that he does not need to know programming to sell his products. Any body have suggestions. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development

Re: Contents of textarea formfield getting stripped out after quotation mark

2001-07-08 Thread Bryan LaPlante
When you do the insert statement use PreserveSingleQuotes(form.textarea) around your value. CF puts escape characters around the single quotes so they don't crash your query. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message

test

2001-06-26 Thread Bryan LaPlante
Please disregard ~~ 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:

KCfusion meeting tomorrow

2001-06-11 Thread Bryan LaPlante
at http://www.kcfusion.org See you there Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

Re: Need decryptor tag for CFUG presentation

2001-06-08 Thread Bryan LaPlante
I agree with you Raymond, I think as a producer of software I am offering a fair approach to the folks out there that are new to Cold Fusion. For every Application that I write and offer for sale I also make available all of the custom tags and components that it took to build that software. If

Re: How to get a list of all tables in a given datasource - and how to combine queries

2001-06-08 Thread Bryan LaPlante
That's very cool Clint, have you written a web version of the sql client so that you can query the database and see your result set's? Bryan - Original Message - From: Clint Tredway [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 08, 2001 9:01 AM Subject: Re: How to

Re: OT BUT URGENT: IIS stability

2001-06-08 Thread Bryan LaPlante
A similar thing happened to me and the cause of the memory saturation was a security site I had used RDS security or advanced security. If you are using the native cfauthenticate cfauthorize tags in a security setting, go look at siteminder in perfMon and see how much memory it has tied up. It

Re: Login Management

2001-06-07 Thread Bryan LaPlante
Chaz, I built a couple of free custom tags that replace CF's advanced security with a database solution. I also sell a management console to manipulate the database. You can find all of the tutorials and documentation at http://www.netwebapps.com/products/securitymanager/introduction.cfm Bryan

CF 5 Eval

2001-06-06 Thread Bryan LaPlante
with a function instead. Anyway before I go into it. Anybody? Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: CF 5 Eval

2001-06-06 Thread Bryan LaPlante
to drop these libraries into you custom tags folder and only have to load them once pre session,application,request or server occurrence, which ever you choose. Bryan - Original Message - From: Bryan LaPlante [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 06, 2001 1

Re: CF 5 Eval

2001-06-06 Thread Bryan LaPlante
and as a result your function call will run just like it was a native function call like Len() or ListContains(). That's pretty much it in a nut shell. - Original Message - From: Bryan LaPlante [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 06, 2001 9:11 AM Subject: Re: CF 5 Eval

Re: cfhttp/cffile locking?

2001-06-03 Thread Bryan LaPlante
You only need to use scope on server, application and session. To single thread another resource like cfhttp, cffile or cfregistry use the name attribute instead. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message - From: Michael

Re: Store Query in APPLICATION variable

2001-06-02 Thread Bryan LaPlante
it will be served from memory not requiring an additional trip to the database. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message - From: Hamid Hossain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 02, 2001 12

CF5 and UDF's

2001-06-02 Thread Bryan LaPlante
Is anyone playing with user defined functions? I can not find any doc's on the subject in cfdocs or in studio. I wander if there is a way to do what I am trying below CFSCRIPT function mydate(){ if (arguments is ) d = now(); else d = arguments[1]; return DateFormat(d); } /CFSCRIPT

Re: CF5 and UDF's

2001-06-02 Thread Bryan LaPlante
://www.cfcomet.com/ | | | - Original Message - | From: Bryan LaPlante [EMAIL PROTECTED] | To: CF-Talk [EMAIL PROTECTED] | Sent: Saturday, June 02, 2001 4:04 AM | Subject: CF5 and UDF's | | | Is anyone playing with user defined functions? I can not find any doc's on | the subject in cfdocs

Re: CF5 and UDF's

2001-06-02 Thread Bryan LaPlante
Yes, the custom tag I built was for the _strlib function library, I'll send you a copy off line if you like and you can check it out. - Original Message - From: Dain Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 02, 2001 9:51 AM Subject: Re: CF5 and UDF's

Re: Securing user created sub-directories

2001-05-31 Thread Bryan LaPlante
If the only file types in those directories are cfm pages you can put some code in the application.cfm file to check for a login otherwise if there are images and htm pages in the directory any user could view those files with out cf knowing about it. Bryan - Original Message - From:

Re: COOKIE expiration :((

2001-05-30 Thread Bryan LaPlante
You may already be doing this but the value should be EXPIRES=NEVER not timeout Bryan - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 3:27 AM Subject: COOKIE expiration :(( I'm getting really frustrated from

Re: Logon Attempts

2001-05-29 Thread Bryan LaPlante
To resolve the problem put this code into login.cfm cfif isDefined(client.counterVar) cfset client.counterVar = IncrementValue(client.counterVar) cfelse cfset client.counterVar = 1 /cfif You can use cfinclude or call the login.cfm as a custom tag, either way the client scope will persist

Re: Paste Screen Capture into a browser and submit it

2001-05-29 Thread Bryan LaPlante
If you are on an intranet and you just need to get to the users screen, you may want to look at this kind of solution. http://www.uk.research.att.com/vnc/ - Original Message - From: Don VanMeter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 29, 2001 1:00 AM Subject:

Re: whitespace

2001-05-25 Thread Bryan LaPlante
I use cf_LessWhiteSpace from the tag gallery http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34784E-2830-11D4-AA 9700508B94F380method=Full - Original Message - From: nagesh [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 25, 2001 2:08 PM Subject: whitespace

Re: whitespace

2001-05-25 Thread Bryan LaPlante
to suppress the whitespace. Is there any otherway around to overcome this problem. Because, the textfile is going to generated by the outputs of the 3 to 4 coldfusion files. -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 3:50 PM To: CF-Talk

Re: CFX resources

2001-05-24 Thread Bryan LaPlante
Funny you would post this just now. I was just searching the web for that very subject when I stumbled upon a site that looks like they have written their own version of the Allaire docs. I don't know how different or alike they might be but here is the url.

OT DBMS select distinct

2001-05-24 Thread Bryan LaPlante
select unique values (r.Description). Thanks in advance for your help Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: OT DBMS select distinct

2001-05-24 Thread Bryan LaPlante
in (select distinct name from resources) -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 10:04 PM To: CF-Talk Subject: OT DBMS select distinct Sorry for the off topic but how do you select distinct only on one of several items

Re: NT User authentication

2001-05-23 Thread Bryan LaPlante
CF has this ability through advanced security. There is a bit of a learning curve but once you figure it out it makes sense why it works the way it does. Start reading the docs and when you get stuck email the group and I'll keep an ear out for you. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
Use the free custom tag wizard at http://www.netwebapps.com/mytags/main.cfm .. On the last screen you get a chance to choose the type of control you want associated with your input and choosing a checkbox from the drop down gives your vtm file that default behavior. CF_CUSTOMTAGWIZARD

Re: cfcatch and email

2001-05-22 Thread Bryan LaPlante
Never tried to do that inside of a cfcatch block before but could you just populate a variable with the email message and then outside the try block check to see if the message is not empty and then send an email if so? Bryan - Original Message - From: sebastian palmigiani [EMAIL

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
: Re: VTML edit tag dialogs: attributes with no value? On Tue, 22 May 2001 02:35:20 -0500, Bryan LaPlante [EMAIL PROTECTED] wrote: Use the free custom tag wizard at http://www.netwebapps.com/mytags/main.cfm .. On the last screen you get a chance to choose the type of control you want

Re: VTML edit tag dialogs: attributes with no value?

2001-05-22 Thread Bryan LaPlante
:35:20 -0500, Bryan LaPlante [EMAIL PROTECTED] wrote: Use the free custom tag wizard at http://www.netwebapps.com/mytags/main.cfm .. On the last screen you get a chance to choose the type of control you want associated with your input and choosing a checkbox from the drop down gives your vtm

Could someone test this

2001-05-22 Thread Bryan LaPlante
of you kindly go to the tag gallery and click on the custom tag wizard and then click on the link at the top to see if it starts the wizard. Your help is very much appreciated. http://devex.allaire.com/developer/gallery/index.cfm Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com

Re: Dynamic Queries (RecordCount)

2001-05-22 Thread Bryan LaPlante
you should be able to just output the queryname.recordcount. make sure it is spelled correctly Bryan - Original Message - From: Steve Reich [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 6:06 PM Subject: Dynamic Queries (RecordCount) How do I set a

Re: Could someone test this

2001-05-22 Thread Bryan LaPlante
Thank you everyone who replied to me off list. Sometimes I don't know were my head is at. Bryan - Original Message - From: Bryan LaPlante [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 6:27 PM Subject: Could someone test this I uploaded a free wizard

Re: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Bryan LaPlante
There is an option in studio's settings under tools (F8) that will allow you to choose your file settings so that a saved document uses the OS type of document structure. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message - From

Re: CFINPUT -- not validating Integer

2001-05-16 Thread Bryan LaPlante
Here is an experment that did and it works for IE, someone on the list may have the equivilent for NS. Here are the docs for all the char codes. http://msdn.microsoft.com/workshop/author/dhtml/reference/charsets/charset1. asp Basicaly I just added an event to the input tag after it was loaded

Re: IE4 and Required Fields w/ CFINPUT

2001-05-14 Thread Bryan LaPlante
If the radio buttons are the only difficulty you are having in IE4, it would be easier to just make one of them checked and not use cfinput for that element, that way you are sure to get a value. Bryan - Original Message - From: Ray Bujarski [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: Session/Application Locking

2001-05-13 Thread Bryan LaPlante
is available on our CFUG web site at http://www.kcfusion.org/ Thanks Bryan LaPlante - Original Message - From: Mike Brunt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, May 13, 2001 10:55 AM Subject: RE: Session/Application Locking Thank you and my apologies to all on the list

Re: CF 5.0 graphs

2001-05-11 Thread Bryan LaPlante
file for the tag editor. If you want to click on the banner adds the spongers make it possible to offer this tool for free. Bryan LaPlante - Original Message - From: Kevin Gilchrist [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 11, 2001 12:29 PM Subject: CF 5.0 graphs

Re: Query Help!!

2001-05-11 Thread Bryan LaPlante
did you really mean to put the tick marks around the '#session.total#' or did you mean to pass that as an integer without the tick marks? Bryan - Original Message - From: ibtoad [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 11, 2001 3:01 PM Subject: Query Help!!

Re: Query Help!!

2001-05-11 Thread Bryan LaPlante
: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 4:48 PM To: CF-Talk Subject: Re: Query Help!! did you really mean to put the tick marks around the '#session.total#' or did you mean to pass that as an integer without the tick marks? Bryan - Original Message - From

Re: JS:URL Parameter in window.open

2001-05-10 Thread Bryan LaPlante
Try building your string first and then pass it to window.open() in a variable. - Original Message - From: Richard Colman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 10, 2001 9:40 AM Subject: JS:URL Parameter in window.open does anyone know something like this

Re: syntax error when inserting date

2001-05-09 Thread Bryan LaPlante
Remember that date is a key word in sql and will produce undesired results if a field in a table is named date as in your code snippet. insert into class_schedule (classID, location, date) Try changing the field name to aDate or lastupdated or something. Bryan - Original Message -

Re: Quick DB Design

2001-05-06 Thread Bryan LaPlante
. There is a management console that goes with the secure pack called security manager you can get that from my site for a fee, but the custom tags are free. Bryan LaPlante http://www.netwebapps.com - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, May

Re: Object Oriented CFML

2001-05-04 Thread Bryan LaPlante
That's awesome man, I want to take some time and read about it. Do you have a design interface beyond the availability of the vtm editors? don't forget I have a free tool for creating vtm's on line at http://www.netwebapps.com/mytags/main.cfm Bryan LaPlante - Original Message - From

Re: Inexpensive Hosting

2001-05-03 Thread Bryan LaPlante
http://www.cfdeveloper.co.uk/ Free - Original Message - From: Guy McDowell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 8:52 AM Subject: Inexpensive Hosting G'day eh? I'm trying to find very inexpensive CF hosting to no avail. Something under $20

Re: Inexpensive Hosting

2001-05-03 Thread Bryan LaPlante
the cfdeveloper site is having technical difficulty this morning. I'll post a mail here when it comes back on line. - Original Message - From: Mike Townend [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 03, 2001 9:45 AM Subject: RE: Inexpensive Hosting try

Re: Finding the last item in a loop

2001-05-03 Thread Bryan LaPlante
!--- start count outsite of loop --- cfset count = 1 cfloop query=qry_show_event_sponsors !--- check each iteration of the loop to see if count equals the total records --- #EventSponserName#cfif count is not qry_show_event_sponsors.RecordCount,/cfif !--- increment the count at the end of each

Re: cfexecute problems

2001-05-02 Thread Bryan LaPlante
If the program you are trying to communicate with was build to support the COM interface (probably a .dll) then you can use CFOBJECT. Look for the OleViewer on Microsoft's site it will show you the methods and properties of the program if you have no 3rd party documentation. If you are trying to

Re: OT - Good list for HTML questions

2001-05-02 Thread Bryan LaPlante
here is one. http://www.wdvl.com - Original Message - From: Perez, Bismark [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 02, 2001 10:16 AM Subject: OT - Good list for HTML questions Hello there, Can somebody recommend a good list to ask HTML questions, I have

Re: Verity Indexing a Remote Server

2001-05-01 Thread Bryan LaPlante
Have you tried referring to the share as a drive like G:\Server\Path\To\My\Files where G is the drive letter assigned to the share. - Original Message - From: Bryan Batchelder [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 8:11 AM Subject: Verity Indexing a

Re: OT (maybe?): IIS5 CF authentication prob

2001-05-01 Thread Bryan LaPlante
That is the one that works for me is to go to the advanced user rights and set permission to log on to the server locally. Are you using IIS challenge response or any additional authentication? Bryan - Original Message - From: Cold Fusion [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: Hosting Service Provider Edition Eliminated

2001-04-29 Thread Bryan LaPlante
Jim, What you asked for in the second paragraph is here, http://webteem.cf-developer.net/remotedev2001.cfm login as password The online docs are here. http://www.netwebapps.com/Accounts/index.cfm - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: New CF5 Partner Hosting License

2001-04-28 Thread Bryan LaPlante
and the custom tag model thus far is a pretty fair method of creating reusable code. I guess for now with the tools that I use I will be ok with not upgrading to CF 5. It will be interesting to see the outcome of this in the future. Bryan LaPlante Network Web Applications Inc. http://www.netwebapps.com

caller scope

2001-04-24 Thread Bryan LaPlante
/cfquery In the calling page I output cfoutput query=qry /cfoutput Error message says that the value of the output tag does not refer to the name of an available query. I also tried to cfset caller.qry = qry setting the name value for cfquery name=qry and that fails too. Any idea's. Bryan

Re: caller scope

2001-04-24 Thread Bryan LaPlante
, but it just seems neater that way. Nick -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 2:16 PM To: CF-Talk Subject: caller scope Going nuts friends, I could swear that I have used this syntax in the past, but I can not get

Re: caller scope

2001-04-24 Thread Bryan LaPlante
, but it just seems neater that way. Nick -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 2:16 PM To: CF-Talk Subject: caller scope Going nuts friends, I could swear that I have used this syntax in the past, but I can not get it to work now

Re: Validate a string for a valid directory name?

2001-04-24 Thread Bryan LaPlante
try cfif directoryExists(path/to/directory/) code /cfif - Original Message - From: river [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 24, 2001 12:48 PM Subject: Validate a string for a valid directory name? What's the best way to validate a string for a valid

Re: get the directory a file is in.

2001-04-24 Thread Bryan LaPlante
I think it is getDirectoryFromPath(script_name) if you use script_name it will return the current directory otherwise just use the c:\wwwroot\1234\index.cfm approach. - Original Message - From: Tony Schreiber [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 24, 2001

Re: populating the query result to IFRAME

2001-04-23 Thread Bryan LaPlante
Not sure if this is what you mean, but try this. eval(document. + secNum + .style.display = ''; don't forget to alternate your single and double quotes. - Original Message - From: paul . [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 23, 2001 10:12 AM Subject:

RSVP reminder

2001-04-23 Thread Bryan LaPlante
Just a quick reminder. If you haven't already registered for the Ben Forta meeting this Wednesday in Kansas City, go to http://www.kcfusion.org/ and RSVP for the meeting. All of the information for the meeting is there. Thanks Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http

Re: Oh that's just great.

2001-04-23 Thread Bryan LaPlante
dude, go and get cf_avartree, it rocks - Original Message - From: Erika L Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 23, 2001 1:56 PM Subject: Oh that's just great. I just downloaded a tag from the Tag Gallery called CF_Debugthat I wanted to throw

Re: SQL INSERTS - return ID

2001-04-23 Thread Bryan LaPlante
select max(id) as maxID from tablename - Original Message - From: Matt Eschenbaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 23, 2001 6:36 PM Subject: SQL INSERTS - return ID Anyone know a trick to return the ID of a record just Inserted into a table?

Re: CFTRY / CFCATCH questions

2001-04-23 Thread Bryan LaPlante
There are no requirements on the order of cfcatch statements that I'm aware of. - Original Message - From: Jeffry Houser [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 23, 2001 6:45 PM Subject: CFTRY / CFCATCH questions I know that at least one CFCATCH must be

Re: value of field not appear

2001-04-23 Thread Bryan LaPlante
try cfoutput input type=image name=imageName src=#getdosen.image# /cfoutput - Original Message - From: Haryono ... [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 23, 2001 9:04 PM Subject: value of field not appear Hallo, Source code: cfoutput input type=file

Re: New File Extension....

2001-04-20 Thread Bryan LaPlante
go to your IIS management console in NT4 it's under the option pack menu and W2k it's in the computer manager. Right click on the web site in question and go to properties and them to the home directory tab. Click on configure and you will see the extensions in there. Bryan - Original

Re: OT Javascript question

2001-04-20 Thread Bryan LaPlante
In IE4 and up event.keyCode(13) is the enter key - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, April 20, 2001 12:45 PM Subject: Re: OT Javascript question i know there is in NS but i'm not sure about IE in NS you can enable event

SecurePack

2001-04-19 Thread Bryan LaPlante
If anyone downloaded the SecurePack from the Allaire DevX, I just realized that I did not include the file to auto create the security database, I only put in the tag editor for it. Sorry about that. The updated files should show up in the morning on Allaires site. Bryan LaPlante 816-347-8220

Re: HTML editor for idiots? recommendation?

2001-04-18 Thread Bryan LaPlante
Try Dreamweaver, if you can walk them through using it, the wysiwyg editor is a lot more code friendly than M$ - Original Message - From: "Peter Theobald" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 9:09 AM Subject: OT: HTML editor for idiots?

Re: CFML not being executed

2001-04-18 Thread Bryan LaPlante
Couple of things to look for. Forgive me I am not sitting at my W2k machine but you need to go to computer manager and find the IIS manager. Right click on the default web site or the site in question and go to the home directory tab. Look at application settings and see if you have an entry for

Re: Netscape equivalent of iframe

2001-04-18 Thread Bryan LaPlante
M$ is the only browser that will display a ppt in the browser, that I'm aware of. - Original Message - From: "Rosa, Issac" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 3:48 PM Subject: RE: Netscape equivalent of iframe I tried ilayer in the

Re: input type='file'

2001-04-17 Thread Bryan LaPlante
I have a question about your script. Assuming the input looks like so form name="foo" input type="file" name="bar" /form does your script refer to the input as document.foo.bar.value; If so how did you work around the access denied js error that the browser gives me when I try this? -

Re: input type='file'

2001-04-17 Thread Bryan LaPlante
dForm" OnSubmit="return allowedExt(this.filefield.value);" this is the form heading. - Original Message - From: "Bryan LaPlante" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 10:44 AM Subject: Re: input type='f

Re: input type='file'

2001-04-17 Thread Bryan LaPlante
t the form must come AFTER the script. - Original Message - From: "Bryan LaPlante" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 11:36 AM Subject: Re: input type='file' I've never gotten that to work for me. It always complains

Re: CSS

2001-04-17 Thread Bryan LaPlante
input type="text" style="border:1px solid blue;" - Original Message - From: "Neil H." [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 7:54 AM Subject: CSS I want to make "flat" select boxes, radio buttons, and checkboxes. What I mean is no shadow and

Re: ZIPPING with coldfusion

2001-04-17 Thread Bryan LaPlante
This one works great, http://www.forta.com/cf/tags/ I use it for my Custom tag wizard http://www.netwebapps.com/mytags/main.cfm - Original Message - From: "Michael Lugassy" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 11:42 AM Subject: ZIPPING with

Re: escaping ' in SQL

2001-04-17 Thread Bryan LaPlante
#PreserveSingleQuotes(string)# - Original Message - From: "Gil Barden" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 12:09 PM Subject: escaping ' in SQL Hi everyone, I have a question about how to pass an SQL statement through a text area box in a

Re: ENcoding URL

2001-04-17 Thread Bryan LaPlante
no without useing a form post - Original Message - From: "Pooh Bear" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 2:37 PM Subject: ENcoding URL hey yall, is there a way to hide the values in the URL so people can't see them? like I am passing URL

Ben Forta in KC

2001-04-16 Thread Bryan LaPlante
is sponsored by: Allaire/Macromedia GreenSoft Solutions, Inc. Network Web Applications, Inc. Human Kind Systems, Inc. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development ~~ Structure your ColdFusion code with Fusebox. Get

Re: Creating Page Breaks to make page printable?

2001-04-16 Thread Bryan LaPlante
http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/pageBre akAfter.asp - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 6:20 PM Subject: Re: Creating Page Breaks to make page printable? Does anyone know of a

Re: Image / File Security

2001-04-15 Thread Bryan LaPlante
not sure how your pages are set up but we server our images dynamically so that if you were to just copy the url from the img tag on the site you would get a page that gets the image for you. That will allow you to do auth on users that attempt to obtain resources. If you need a solution for CF

  1   2   >