Re: Verity

2001-07-03 Thread Marc Garrett

I find that if I optimize the collection frequently Verity works much
better. Also, in CF4.5 and higher make sure you cflock your Verity tags.

Regards,

Marc Garrett

- Original Message -
From: Nathan Stanford [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 03, 2001 7:46 AM
Subject: Verity


 I seem to have a problem where verity breaks a lot on my site...



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

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



CSS and CF instead of tr?

2001-06-22 Thread Marc Garrett

Is there a way to generate a layout using only CSS and CF? Instead of building a table 
with the number of rows matching the number of results in a query, can this be done in 
CSS?

Thanks,

Marc Garrett



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

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



Re: XML with ColdFusion

2001-06-18 Thread Marc Garrett

There's a custom tag called cf_soXML. It's an easy way to handle XML
transformations. If you want more detail about how to handle XML via
cfscript, just look at the tag's code.

http://www.siteobjects.com

Regards,

Marc Garrett

- Original Message -
From: JoshMEagle [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, June 18, 2001 8:36 AM
Subject: XML with ColdFusion


 The following code opens and outputs an XML file based on an XSL template
 using ASP  I was wondering if there are similar functions in CF or if
 someone could point me in the right direction towards functions or whatnot



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

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



Re: CFSTOREDPROC and performance question

2001-06-11 Thread Marc Garrett

Thanks Aaron.

DTS was my first attempt but it will not work on this shared server with a
text file.

Regards,

Marc Garrett

- Original Message -
From: Aaron Rouse [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, June 10, 2001 9:58 PM
Subject: Re: CFSTOREDPROC and performance question


 Or DTS and you could schedule a Job to execute it whenever.


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

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



CFSTOREDPROC and performance question

2001-06-06 Thread Marc Garrett

To the group:

I need to walk through about 11,000 records with 25 columns in a text file and insert 
them daily into a SQL Server database. Since I'm on a shared server, my templates need 
to execute in 180 seconds or less. 

If I use CFQUERY to insert row by row into the database, the query takes about 160 to 
200 seconds to complete. In an effort to boost performance, I wrote a stored procedure 
in SQL Server and called it via CFSTOREDPROC from CF. But the sp takes about 183 to 
185 seconds to execute. 

Is this expected? Am I better off trying a query that simply calls the sp instead of 
using CFSTOREDPROC?

Thanks for any assistance.

Regards,

Marc Garrett



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

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



Re: securing IIS5 and CF server

2001-06-06 Thread Marc Garrett

Hi Chad,

Most of the CF security problems people have are actually IIS issues. Have
a look at this doc:

http://www.microsoft.com/technet/security/iis5chk.asp

In particular, pay attention to the querystring input section.

Regards,

Marc Garrett
- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, June 06, 2001 2:54 PM
Subject: securing IIS5 and CF server


 Anyone have any tips to secure an IIS 5 server with CF Server on it?



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

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



Re: list and looping problems

2001-06-05 Thread Marc Garrett

Seamus,

I'm working on the same issue today. Out of curiousity, why don't you create
an ODBC datasource and point it at the text file? Then you can read it like
any other database. (I'm assuming you're on NT or Win2K).

Regards,

Marc Garrett

- Original Message -
From: Seamus Campbell [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 05, 2001 7:41 AM
Subject: list and looping problems


 Hi - I have a text file in the below format:




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

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



Re: list and looping problems

2001-06-05 Thread Marc Garrett

Tim,

Thanks for posting that code. If you need to extract information from a text
file, is it better to use CFFILE or to set up a DSN and query the file?

Regards,

Marc Garrett

- Original Message -
From: Tim Painter [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 05, 2001 8:21 AM
Subject: Re: list and looping problems


 You can also use the pipe as the delimiter.  This code uses that and steps
 over every other list element to get the group code and does the same to
get
 the description.


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

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



Re: list and looping problems

2001-06-05 Thread Marc Garrett

Tim, thanks again for your assistance. I'd be interested to see whether you
think the code below is a good way to handle this issue.

Seamus, here's some code I wrote this morning that deals with the same
issue. It had not occurred to me to use CFFILE until I saw your code, so my
approach was to create a DSN pointing to the text file, then treat it as I
would any other query. I have not compared transaction times, but this
method seems to work quickly. Code follows sig. Obviously you have to create
a DSN pointing to the text file before this code works. Let me know if this
helps.

Regards,

Marc Garrett

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN

html
head
 titletest city text driver/title
 link rel=stylesheet href=../Common/common_style.css type=text/css
/head

body
!--- retrieve list of all cities from text file ---
!--- txt_Cities is the DSN pointing to the text file on the server ---
cfquery datasource=txt_Cities name=list_cities
SELECT CityCode, City
FROM Cities.txt
/cfquery

!--- show number of records in query and output via loop ---
pThere are cfoutput#list_cities.recordcount#/cfoutput cities in the
query./p
p
cfloop query=list_cities
 cfoutput#CityCode# / #City#/cfoutputbr /
/cfloop
/p

!--- loop through list_cities query and add one record at a time to
tblCityCodes ---
cfloop query=list_cities
 cfset varCityCode = #CityCode#
 cfset varCity = #City#
 !--- BR_RES is the DSN pointing to a SQL Server database that will hold
the new records ---
 cfquery name=add_city_code datasource=BR_RES
  INSERT INTO tblCityCodes(fldCityCode, fldCity)
  VALUES('#varCityCode#', '#varCity#')
 /cfquery
/cfloop

!--- retrieve contents of tblCityCodes after INSERT ---
cfquery name=show_all_cities datasource=BR_RES
SELECT *
FROM tblCityCodes
/cfquery

h2Here are the new contents of tblCityCodes/h2
p
!--- show new contents of tblCityCodes ---
cfoutput query=show_all_cities
#fldAutoNumber#. #fldCityCode# / #fldCity#br /
/cfoutput
/p
/body
/html



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

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



Re: list and looping problems

2001-06-05 Thread Marc Garrett

I wrote:

 cfloop query=list_cities
  cfoutput#CityCode# / #City#/cfoutputbr /
 /cfloop

I just noticed I left that loop in from an earlier version of the page that
worked a different way. Obviously you don't want to use cfloop when a
regular cfoutput will do. Sorry.

Marc



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

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



Re: KILL THE COOK!

2001-06-05 Thread Marc Garrett

Sorry I dropped into this thread in the middle. If you're having cookie
problems don't forget to check whether your users are behind a proxy server
that's set to filter cookies.

Regards,

Marc Garrett

- Original Message -
From: Andrew Scott [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 05, 2001 6:38 PM
Subject: RE: KILL THE COOK!


 This might be a stupid thing to assume, however have you looked at the
 browser to see if the cookie option is enabled!!




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

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



problems using text driver

2001-06-04 Thread Marc Garrett

I'm having troubles getting a text driver to work with CF. I can create the driver on 
my machine, and I can verify it within CF admin, but when I try to view the table in 
CF Studio database view, I get the following error:

The table fields could not be retrieved due to an error: Error -1 occurred: ODBC 
Error Code = S1C00 (Driver not capable). [Microsoft][ODBC Text Driver] Optional 
Feature not implemented.

Any assistance? I need to read the information from a text file and put it into SQL 
Server.

Thanks,

Marc Garrett



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

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



Re: problems using text driver

2001-06-04 Thread Marc Garrett

Quick follow up to my post: I can actually write a cfquery and view the
contents of the text file when I run the template, I just can't access
column names in the text file in the database view. Is this a limitation of
CFStudio?

Thanks,

Marc

- Original Message -
From: Marc Garrett [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, June 04, 2001 10:00 AM
Subject: problems using text driver


 I'm having troubles getting a text driver to work with CF.


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

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



Re: Series of errors using Harpoon

2001-06-03 Thread Marc Garrett

I think it's supposed to be uitoolkitCFpath instead of uitoolkitpath.

Regards,

Marc Garrett

- Original Message - 
From: Cameron Childress [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, June 03, 2001 8:29 PM
Subject: Series of errors using Harpoon




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

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



problems with cfschedule and cfftp

2001-06-03 Thread Marc Garrett

[Sorry in advance if this is a repeat. I don't think my first post went
through].

I'm having problems with cfschedule. I'd like to ftp a file from a remote
server to my local server once a day. When I run the template manually,
cfftp works fine. When I try to run the cfftp template via cfschedule,
nothing happens. I'm on a shared server so I don't have access to the
schedule log.

Here's my code:

cfschedule action=UPDATE
 task=get_Schools
 operation=HTTPRequest
 url=http://url here/staging/BR_RES/Admin/get_Schools.cfm
 startdate=06/03/01
 starttime=12:40 PM
 interval=Daily

Thanks for any assistance,

Marc Garrett


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

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



login problems: proxy server the cause?

2001-06-01 Thread Marc Garrett

Hello all:

A user has reported that when he logs in, he is immediately redirected to
a session failed page. I am using an authorization routine that sets a user access 
level (like admin or user).  The authorization/authentication routine has been tested 
on multiple browser/machine configurations at multiple locations and works for all but 
this user. I have also confirmed that the user has cookies enabled in IE 5.5.

The user is at a company but doesn't know about their net configuration or
access. My best guess is that he's behind a proxy server that screens for
cookies. Any better ideas before I pursue this?

Thanks,

Marc Garrett





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

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



problem with CFFTP on hosted server

2001-05-29 Thread Marc Garrett

Hi,

I am having problems getting CFFTP to work on a shared server hosted at
Intermedia. The following code works on localhost (I have already
established the connection):

CFFTP ACTION=GetFile
   STOPONERROR=Yes
   NAME=GetBR_Res
   DIRECTORY=Database/
   CONNECTION=my_query
localfile=[the local path here]\Cities.txt
remotefile=Cities.txt
timeout=60
transfermode=ASCII

When I run it on the shared host I get the error below. I have verified that
the physical path for LOCALFILE is correct:

Attribute set validation error in tag CFFTP
The tag has an invalid attribute combination: the value of the tag switch
attribute 'ACTION' which is now 'GETFILE' requires a different combination
of attributes. For the same switch attribute value the following unknown
attributes have been provided: (DIRECTORY,NAME).
The error occurred while processing an element with a general identifier of
(CFFTP), occupying document position (52:1) to (60:25).

Thanks for any assistance.

Marc Garrett



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

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



checking whether sites are available

2001-05-22 Thread Marc Garrett

I have a database of a few hundred sites. I'd like to use CF to automatically check to 
see whether the sites are up so I don't have to do it by hand. The solution I came up 
with is to use cfhttp.statuscode to check whether the site is up. I loop through the 
list and update the database accordingly. My code works, but it takes forever. Two 
questions:

1) Is there a way I can break the site list into chunks, and have the template check 
the statuscode of 20 sites at a time instead of all of them? I recall someone 
suggesting this solution for sending thousands of emails with CFMAIL, but I couldn't 
find that post in the archives.

2) Is there a better way of doing this instead of cfhttp.statuscode?

Thanks for any assistance.

Marc Garrett


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

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



Re: Stripping wrapper quotes from all fields

2001-05-22 Thread Marc Garrett

Thanks Raymond and Randy.

I'll try these out.

Marc

- Original Message - 
From: Raymond Camden [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, May 21, 2001 12:06 PM
Subject: RE: Stripping wrapper quotes from all fields


 CFSET STR = Ray's world has quotes in it.
 CFSET STR = REReplace(STR,^,)
 CFSET STR = REReplace(STR,$,)



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

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



Stripping wrapper quotes from all fields

2001-05-21 Thread Marc Garrett

I have a database in which all fields are wrapped by double quotes. I'd like to write 
a CF template that will strip all leading and ending quotes from all fields in the 
table; i.e.,

Hardwood Tile should become Hardwood Tile

Any guidance?

Thanks,

Marc Garrett



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

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



Re: RDS??

2001-05-05 Thread Marc Garrett

I think Intermedia.net supports RDS.

Regards,

Marc Garrett


 Anyone know of a hosting provider that provides this service??



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

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



Re: CF Studio and UltraDev Merging!

2001-05-03 Thread Marc Garrett

I'm almost certain that they're just bundling right now, not actually
combining the products. It's a little funny that they'll sell them in the
same box, because UD often rewrites CF code on complex pages unpredictably.

Regards,

Marc Garrett

- Original Message -
From: Nathan Stanford [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, May 03, 2001 11:28 AM
Subject: CF Studio and UltraDev Merging!



 Read This:
 http://www.allaire.com/products/ColdFusion/productinformation/tools.cfm



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

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



Re: Character code for a TAB

2001-04-24 Thread Marc Garrett

Michael Lugassy wrote:

 I JUST LOVE IT WHEN 1203483409875 PEOPLE answer the same answer
 to a pretty easy question.

I'm still hoping to get an answer to a question I posted yesterday that I
have to think other people have handled before. Here's a repost:

I have an update page on which I need to show user friendly terms in a
select box, even though the information in the table is actually a code
number (e.g., the info is saved as 010-000 but the user should see
services.) The value from the select is then passed to a CFUPDATE on the
following page. I can get the update to work properly if the user changes
the value in the select box, but if she leaves the value unchanged the field
gets updated to the friendly word instead of leaving the code value
unchanged.

Thanks for any assistance. I have included code below my sig.

Regards,

Marc Garrett

Here's the code that populates the select list:

select class=editBox name=fldCategory1
optioncfoutput query=category_1#fldCategory#/cfoutput/option
cfloop query=categories
option
value=cfoutput#fldCategoryID#/cfoutputcfoutput#fldCategory#/cfoutp
ut/option
/cfloop
/select

Here's query category_1:

cfquery datasource=datasource name=category_1
SELECT
 tblContacts.fldContactID,
 tblContacts.fldCategory1,
 tblCategories.fldCategory,
 tblCategories.fldCategoryID
FROM
 tblContacts, tblCategories
WHERE
 tblContacts.fldContactID LIKE '#id#'
 AND tblCategories.fldCategoryID = tblContacts.fldCategory1
/cfquery

The update on the next page is simply:
cfupdate datasource=datasource tablename=tblContacts




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

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



Re: problem with list box update

2001-04-24 Thread Marc Garrett

Thanks for your help Steven.

I have a lot of optional fields, so writing a different CFUPDATE for each
combination isn't really palatable. Would I be better off using CFQUERY and
dynamically assembling my SQL insert statement based on the changed forms
fields?

Regards,

Marc Garrett

- Original Message -
From: Semrau, Steven L Mr SRA [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, April 24, 2001 9:39 AM
Subject: RE: problem with list box update


 Ok you are running cfupdate which, if you don't specify, will be using
all
 form fields to update the db.



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

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



problem with list box update

2001-04-23 Thread Marc Garrett

I have an update page on which I need to show user friendly terms in a select box, 
even though the information in the table is actually a code number (e.g., the info is 
saved as 010-000 but the user should see services.) The value from the select is 
then passed to a CFUPDATE on the following page. I can get the update to work properly 
if the user changes the value in the select box, but if she leaves the value unchanged 
the field gets updated to the friendly word instead of leaving the code value 
unchanged. 

Thanks for any assistance. I have included code below my sig.

Regards,

Marc Garrett

Here's the code that populates the select list:

select class=editBox name=fldCategory1
optioncfoutput query=category_1#fldCategory#/cfoutput/option
cfloop query=categories
option 
value=cfoutput#fldCategoryID#/cfoutputcfoutput#fldCategory#/cfoutput/option
/cfloop  
/select

Here's query category_1:

cfquery datasource=datasource name=category_1
SELECT
 tblContacts.fldContactID,
 tblContacts.fldCategory1,
 tblCategories.fldCategory,
 tblCategories.fldCategoryID
FROM
 tblContacts, tblCategories
WHERE
 tblContacts.fldContactID LIKE '#id#'
 AND tblCategories.fldCategoryID = tblContacts.fldCategory1
/cfquery

The update on the next page is simply:
cfupdate datasource=datasource tablename=tblContacts


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

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



Re: problem with list box update

2001-04-23 Thread Marc Garrett

Thanks for your help Steven. Unless I misunderstand you, your code makes
more sense for an insert page than an update page. What I want to do is
populate the dropdown list on the update page with the value from the
database. If the user updates other fields of the record but doesn't want
the category to change my code doesn't work.

Any other suggestions?

Regards,

Marc Garrett

- Original Message -
From: Semrau, Steven L Mr SRA [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, April 23, 2001 4:42 PM
Subject: RE: problem with list box update


 Make your first selection blank option value= selected/option



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

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



Re: Harpoon

2001-04-19 Thread Marc Garrett

I downloaded Harpoon beta 4 last night. It's still on the beta site. Maybe
you're confused because the name as changed? It's now "Macromedia Flash
Component Kit for ColdFusion."

Regards,

Marc Garrett

- Original Message -
From: "Adam Reynolds" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, April 19, 2001 5:30 AM
Subject: RE: Harpoon


 The Harpoon Beta program has been removed and I can only find references
 to Harpoon within Allaire news articles (announcing the co-operation
 between Macromedia and Allaire).

 I don't know what this means, but either Harpoon was stomping on
 Macromedia's product growth path, or it is has been taken in house and
 will be delivered as part of upcoming product releases.

 I was very interested in this as a CF extension. I felt it had potential
 to completely remove the use of DHTML and 99% of Javascript. Anyway I hope
 it hasn't been buried and is still living somewhere

 -Original Message-
 From: Brian Thornton [SMTP:[EMAIL PROTECTED]]
 Sent: 19 April 2001 10:19
 To: CF-Talk
 Subject: Re: Harpoon

 Sam from DevCenter and Tag Area ata llaire answered this question at
 http://www.sci.tamucc.edu/mailarch/csclub/2001/msg00081.html


 other links..
 http://www.allaire.com/handlers/index.cfm?ID=19949
 http://chattyfig.figleaf.com/
 http://maccentral.macworld.com/news/0011/06.harpoon.shtml
 - Original Message -
 From: "Adam Reynolds" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Thursday, April 19, 2001 2:07 AM
 Subject: Harpoon


  Anybody know what has happened to this baby? I thought it had good
  potential but cannot locate any more information on progress.
 
  Best Regards,
 
  Adam Reynolds
  ColdFusion Web Developer
  ISMG Development, Unilever
  London
 
  ( +44 20 7822 5450 (ext 5450)
  m: +44 7973 386620
  *  [EMAIL PROTECTED]
 
 
 
 

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

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



Re: Harpoon

2001-04-19 Thread Marc Garrett

Maybe they dynamically build that beta page based on your login. For me, the
Harpoon info is on the lower lefthand side.

Regards,

Marc Garrett

 Still can't see it on the beta site.



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

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



moving CF from Windows to HP-UX?

2001-04-18 Thread Marc Garrett

I'd like to move a simple CF site with a mySQL database from my local Windows machine 
to a shared hosting HP-UX. I know that the same CF code is supposed to run on both 
servers. Are there any issues I should watch out for, either with CF or mySQL? Any 
pointers to resources on porting from Win to Unix?

Thanks,

Marc Garrett
 


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

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



Re: Is WDDX alive well ?

2001-04-12 Thread Marc Garrett

I asked precisely the same question to Charles Teague this afternoon at the
macromedia UCON. He said that it's an excellent choice for serializing and
deserializing, as long as you're not really into transformations. When I
asked him why the web site was so out of date, he said the wddx is a mature
(complete) technology.

Regards,

Marc Garrett

- Original Message -
From: "Tracy Bost" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, April 12, 2001 9:00 AM
Subject: Is WDDX alive  well ?


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

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



Re: How to get Julian Date

2001-04-11 Thread Marc Garrett

I suppose you could ask him, but he might not be that sort of fellow.

Regards,

Marc Garrett

- Original Message -
From: "Paul Sizemore" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, April 11, 2001 4:40 PM
Subject: How to get Julian Date


 How would I get the julian date for today, besides using the CF_Julian
tag?



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

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



Re: CF Cert: wait for 5.0?

2001-04-09 Thread Marc Garrett

Thanks guys.

Marc

"Terry Bader" [EMAIL PROTECTED] wrote in message
210EF7B72E71D311903D00105AA333DF51C6F2@EXCHANGESERVER">news:210EF7B72E71D311903D00105AA333DF51C6F2@EXCHANGESERVER...
 $150..

 www.vue.com/allaire




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

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



Re: CFGRID to CSV?

2001-03-15 Thread Marc Garrett

Scott,

I believe about 18 months ago CF Developers Journal ran a two-part article
on exporting CFGRID data to flat files. Sorry my recollection isn't more
specific, but you can probably track down the article on their web site.

Regards,

Marc Garrett



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

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



Re: XML

2001-03-15 Thread Marc Garrett

[EMAIL PROTECTED] wrote

 So, short summary - there are no existing CF parsers for XML (that I know
 of...if I'm wrong, someone please correct me).  Handling XML is pretty
 process intensive, and lets be honest, thats not really CF's strong point.

Brian,

The custom tag CF_SOXML is very easy to use and relies on the MSXML parser,
which almost any up-to-date Windows server will have. You only have to pass
it a few parameters -- the xml file, the xsl file, and the desired action.

Regards,

Marc Garrett




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

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



How to get Verity to recognize title in XML file?

2001-03-13 Thread Marc Garrett

How can I get Verity to recognize the title tag in an xml file? The search
works for html title tags, but not xml.

Thanks,

Marc Garrett




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

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



Re: Dreamweaver UltraDev 4

2001-03-09 Thread Marc Garrett

James,

I think most people who use UD also rely on CF Studio to hand code. The two
go well together but you wouldn't want to rely on UD exclusively. I really
like UD, but there are a few issues:

1) It's a script based tool. That means that unless you know cfscript it can
be very hard to debug the code it generates.

2) In some instances UD can rewrite your CF. For example, UD will move a
CFOUTPUT tag out of the Head.

3) UD doesn't always parse CF correctly. For instance, there's an extension
at macromedia that lets UD understand CFINCLUDE and show the content on the
page while you're working. But if you build a simple CFELSE statement to
include a file if it exists, otherwise include a default file, UD won't
understand it and will show both files included in design mode.

For visually designing relatively simple CF pages though, UD is great. The
live data mode lets you see the results of a query on your page while you
design it -- I think that makes it worth the price of purchase alone. Post
your question to the macromedia.ultradev group and you'll get some responses
from people who have spent a bit more time with the issues than I have.

Regards,

Marc Garrett

"James Taavon" [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I am reading the white paper on Dreamweaver UltraDev 4. So far, so good
 I like what I am reading. Are there any pitfalls that I shold be aware
 of if I decide to purchase this package?




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

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



Re: Using XML as datsource in CF

2001-03-02 Thread Marc Garrett

Richard,

I don't know the answer to your question, but Verity can index xml file
types so you could expose a collection to CFSEARCH.

Regards,

Marc Garrett



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

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



Verity: Question about code generated by Wizard

2001-02-27 Thread Marc Garrett

If you look at the code generated by the Verity wizard in CF Studio, it
stuffs most of the CFINDEX attributes using CFSET, but it simply inserts the
values of the ACTION and URLPATH attributes without first setting it in a
variable. For example:

CFSET IndexCollection = "CollectionName"
CFSET IndexDirectory = "c:\..."

CFINDEX
collection = "#IndexCollection#"
action = "REFRESH"
key = "#IndexDirectory#\"
urlPath = "http://some_path_here"


Is there a reason for generating the code that way? When I code the CFINDEX
tag by hand I can use CFSET for all the variables with no problem. I ask
because I'm working on an extension for macromedia UltraDev and I don't know
why the CF Studio wizard would create the code this way.

Regards,

Marc Garrett







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

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



Re: Verity: Question about code generated by Wizard

2001-02-27 Thread Marc Garrett

Sorry about that duplicate post -- I thought the first one bounced!

Marc



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

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



Re: (Admin) Vacations and being banned

2001-01-15 Thread Marc Garrett

Michael,

Maybe I'm in the minority, but I just don't see why people get so angry
about vacation messages. I think it's an honest mistake, and when you're
subscribed to a dozen lists and looking forward to leaving town I'm sure
it's easy to forget to change your settings.

I'm sure of one thing: in the amount of time it takes for people to complain
and call people stupid, the complainers could easily write a filter to
delete vacation messages from their inbox.

Regards,

Marc Garrett

- Original Message -
From: "Michael Dinowitz" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, January 15, 2001 8:43 AM
Subject: (Admin) Vacations and being banned


 I really hate being a bad guy.


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

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



Changing registry to launch UltraDev instead of Dreamweaver?

2001-01-12 Thread Marc Garrett

Is there a registry key that can be changed to launch UltraDev instead of Dreamweaver? 
The only relevant key I can find is: 

HKEY_CURRENT_USER\Software\Allaire\Studio45\DreamweaverIntegration

but that's just Yes/No.

Thanks for any assistance,

Marc Garrett



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

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



Re: Changing registry to launch UltraDev instead of Dreamweaver?

2001-01-12 Thread Marc Garrett

Thank you Adrian, but that's not what I'm looking for. Both JRun Studio and
CF Studio have one-button integration that opens the current document in
Dreamweaver. I'm curious to know if there's any way to point to UD instead.

Thanks,

Marc Garrett

- Original Message -
From: "Adrian J. Moreno" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, January 12, 2001 4:45 PM
Subject: Re: Changing registry to launch UltraDev instead of Dreamweaver?


 Do you just want UltraDev to be your default editor?



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

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



Re: Big companies using CF

2000-12-05 Thread Marc Garrett

AOL uses it for the developer site.

Regards,

Marc Garrett


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

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



Re: OT BUT CRITICALLY IMPORTANT...

2000-10-03 Thread Marc Garrett

Jaime Garza asked:

 P.S.  What is a scab?  Sorry, I am not a native English speaker.  Should I
 be offended?

A scab is a person willing to cross a picket line in a strike. This action
undercuts the collective bargaining powers of the strikers. Clearly Mr.
Gallagher doesn't know what he's talking about.

Neo-nazis, scabs, and fascists, oh my!

:-)

Marc Garrett

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Date Timestamp??

2000-09-26 Thread Marc Garrett

Wouldn't it be better to let the database handle it instead of CF? Which
database are you using Rich?

Regards,

Marc Garrett

- Original Message -
From: "Larry Juncker" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, September 26, 2000 11:32 AM
Subject: RE: Date Timestamp??


 If you are wanting to put the current date and time try this:

 #CreateODBCDateTime(Now())#

 That will insert the current date and time as a timestamp


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Date Timestamp??

2000-09-26 Thread Marc Garrett

In Access, you can set the datatype to date/time and the default value to
Date(). Typically it's better to let a database handle that type of function
instead of ColdFusion, but with low site traffic I don't know that it makes
any difference.

Regards,

Marc Garrett

- Original Message -
From: "HappyToad.com" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, September 26, 2000 4:07 PM
Subject: RE: Date Timestamp??


 Access.  I have it working ok with the #Now()# input. Is this a problem?

 Rich

 -Original Message-
 From: Marc Garrett [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 26, 2000 1:44 PM
 To: CF-Talk
 Subject: Re: Date Timestamp??


 Wouldn't it be better to let the database handle it instead of CF? Which
 database are you using Rich?

 Regards,

 Marc Garrett

 - Original Message -
 From: "Larry Juncker" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Tuesday, September 26, 2000 11:32 AM
 Subject: RE: Date Timestamp??


  If you are wanting to put the current date and time try this:
 
  #CreateODBCDateTime(Now())#
 
  That will insert the current date and time as a timestamp


 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: AOL and interactive sites [CF-Talk]

2000-09-20 Thread Marc Garrett

Mark Warrick wrote:

 I believe it's the little gremlins that they employ to make your life
miserable that are causing the problems. 

I caught one of those and kept it in a jar for awhile.

You can find some of the AOL quirks here: http://webmaster.info.aol.com/

In supremely cool irony, the site uses ColdFusion.

Regards,

Marc Garrett


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [CF-Talk] RE: Is there a replacement for Cold Fusion Studio?

2000-09-18 Thread Marc Garrett

Just to add to the UltraDev/CF thread... As mentioned previously, UD
supports CF, ASP and JSP, but it's very clear that the development team was
ASP-centric. The ASP code that UD generates is not hard to read and
maintain.

The CF code, on the other hand, can really be a bear for a CF newbie such as
myself to figure out. UD generates a lot of cfscript, which seems to defeat
the purpose of working in a tag based environment.

If you're still learning CF, I think it's much better to work in Studio. If
you already know CF well and can debug machine-generated cfscript, you might
find UD useful. I really like UD for ASP sites.

Regards,

Marc Garrett

- Original Message -
From: "Paul Ihrig" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, September 18, 2000 5:36 PM
Subject: [CF-Talk] RE: Is there a replacement for Cold Fusion Studio?


 As Jon stated Ultrdev is not a replacement.
 But It can handle doing some advanced programming.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Exporting CSV file from table

2000-09-13 Thread Marc Garrett

I'd like to allow users to export portions of a database to a csv file.
Ideally, they could export the portion matching a search query. Here's what
I have in mind if it were ASP:

http://www.asptoday.com/articles/19991103.htm

Could someone direct me to something similar in ColdFusion?

Thanks in advance for any assistance.

Marc Garrett

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Hotel Booking Engine up

2000-09-11 Thread Marc Garrett

When I try to book a room under "View single hotel front page" I get a
"sorry no hacking allowed" message.

Regards,

Marc Garrett

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Regular expressions . . . a good tutorial somewhere?

2000-09-08 Thread Marc Garrett

Danny Goodman's Javascript Bible has a chapter on regular expressions. Also,
the October issue of Web Techniques has a three page article.

I haven't played with regular expression and CF, so I can't answer your
second question.

Regards,

Marc Garrett

- Original Message -
From: "Dan Haley" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 08, 2000 6:37 PM
Subject: Regular expressions . . . a good tutorial somewhere?


 Anyone have a link to a decent tutorial for regex?  Can I look at Perl
 tutorials for this and not be too far off on what to expect from CF?


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Application in ASP [OT]

2000-09-07 Thread Marc Garrett

Global.asa

 Does anyone know if ASP has an application.cfm equivalent?
 
 Thanks,
 Geoff B


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



repost: query about consulting partners

2000-08-26 Thread Marc Garrett

Hi,

I know there are quite a few Allaire consulting partners on the list. I was
hoping that someone could take a moment and answer a question about the
skills needed to pass the Allaire approval. I have read the information at
Allaire's site. Does anyone know, roughly, the number of sites needed to
demonstrate the skill level? Or would Allaire look at one or two sites that
show the use of a lot of various CF technologies?

Thanks for any assistance.

Regards,

Marc Garrett

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



consulting partner requirements?

2000-08-24 Thread Marc Garrett

Could someone address the requirements for becoming a ColdFusion consulting
partner? I've read the requirements on the Allaire site, but I'd like to
hear from someone who's actually gone through it.

How few sites can you build prior to being eligible? Is one site enough if
it covers a variety of different CF technologies? Are there particular
technologies that Allaire is looking for in the evaluation.

Also, what's the best way to handle pages with security requirements when
describing them to Allaire?

It seems like a great deal for $495, even if the licenses are non-commercial
use.

Regards,

Marc Garrett



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



problem with title tags and Verity search with XML

2000-08-23 Thread Marc Garrett

I am using a DTD that uses the tag "title" in two separate locations -- one
is relevant to the title for a verity search, but the other is not and would
generate a confusing result. Can anyone tell me how to make Verity list one
tag but not the other?

Thanks,

Marc Garrett

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: problem with title tags and Verity search with XML

2000-08-23 Thread Marc Garrett

Is that all that it will take? Thanks!

Marc

- Original Message -
From: "David Cummins" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 23, 2000 10:12 PM
Subject: Re: problem with title tags and Verity search with XML


 Can you reorder the tags in the files so the appropriate title tag
appears
 first?

 David Cummins

 Marc Garrett wrote:
 
  I am using a DTD that uses the tag "title" in two separate locations --
one
  is relevant to the title for a verity search, but the other is not and
would
  generate a confusing result. Can anyone tell me how to make Verity list
one
  tag but not the other?
 
  Thanks,
 
  Marc Garrett
 

 --

  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Access 97 and 2000

2000-08-22 Thread Marc Garrett

Gene,

One of my clients recently needed work done in Access 97. I uninstalled
Office 2000, installed Access 97, then upgraded to Office 2000. During the
upgrade, I elected to keep Access 97 and install Office 2000 in a separate
folder. That's all there was to it -- no problems with the registry and
things work smoothly.

Regards,

Marc Garrett



- Original Message -
From: "Gene Kraybill" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 22, 2000 2:32 PM
Subject: RE: Access 97 and 2000


 I see Access 2000 has an option to save in Access 97 format. Can anyone
vouch for
 this as a reliable way of maintaining Access-97 dbs on a development
machine when
 upgrading to 2000 isn't an option on the live server?

 Gene Kraybill


 Andy Ewings [EMAIL PROTECTED]

  I think you need to have them installed on a seperate drive, or
  partition - but I'm not 100% sure
 
  -Original Message-
  From: Gene Kraybill [mailto:[EMAIL PROTECTED]]
  Sent: 22 August 2000 18:55
  To: [EMAIL PROTECTED]
  Subject: OT: Access 97 and 2000
 
 
  What does it take to run both Access 97 and Access 2000 on the same
machine?
 
  We have some small CF db's in Access 97. We have a development machine
with
  Office 2000 and tried to install only the Access portion of Office 97 on
the
  same
  machine.
 
  When we try to start either version of Access, we now get this message:
 
  "Microsoft Access can't start because there is no license for it on this
  machine."
 
  Gene Kraybill
 
 
  -
  Gene Kraybill
  LPW  Associates LLC
  www.lpw.net

 --
--
  --
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.

 --

  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or s
 end a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
 


 -
 Gene Kraybill
 LPW  Associates LLC
 www.lpw.net
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: response test, please?

2000-08-17 Thread Marc Garrett

17 seconds, 56K modem, Washington, DC.

- Original Message - 
From: "Robert Forsyth" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 17, 2000 9:53 PM
Subject: RE: response test, please?


 25 seconds on a dual ISDN from Washington DC
 
  -Original Message-
  From: Jared Clinton [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, August 17, 2000 9:50 PM
  To: [EMAIL PROTECTED]
  Subject: response test, please?
  Could some people please browse to
  http://www.transact-online.co.uk and tell me approximate load
  times for the initial page?


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.