You need to turn the read-only off on the files that source safe had
locked - that is how the program works


Craig Newitt
Managing Director
Newitt Pty Ltd

-----Original Message-----
From: Chris Straight [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 30 November 2000 3:48 AM
To: CF-Talk
Subject: RE: HELP HELP HELP!!!


well I fixed the comma problem for future reference. But the same problem is
persisting with the updatable query error. What I failed to mention was that
I was using Visual Source Safe and I couldn't get it to release all of the
files on the server. Now being dumb and late at night I decided to uninstall
Visual Source Safe thinking it would alleviate the problem well it didn't
and now I am stuck with all my files still checked in and now way of
releasing them... I know I could reinstall Visual Source Safe but I wouldn't
know how to release the files... has anyone had this problem before, or can
anyone point me in the right direction?

Chris Straight

-----Original Message-----
From: Rob Keniger [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 29, 2000 12:48 AM
To: CF-Talk
Subject: Re: HELP HELP HELP!!!


on 11/29/00 6:28 PM, Bud at [EMAIL PROTECTED] wrote:

>> '#required1#'<cfif isdefined('author2')>, <cfelse> </cfif>
>>
>> <cfif isdefined('author2')>
>> '#author2#',
>> </cfif>
>>
>> <cfif isdefined('title_price2')>
>> '#title_price2#',
>> </cfif>
>
> Take a peek at this. If author2 is not defined, and anything after it
> is, required1 and the next field will not have a comma separating
> them.

Try something like:

'#required1#'
<cfif isdefined('author2')>
,'#author2#'
</cfif>

<cfif isdefined('title_price2')>
,'#title_price2#'
</cfif>

By putting the commas in front of the optional column names you can avoid
problems like this.

--

Rob Keniger

big bang solutions

<mailto:[EMAIL PROTECTED]>
<http://www.bigbang.net.au>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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

Reply via email to