RE: Amazon Tags

2000-07-12 Thread Dave Notik
What code do you use to then display these HTML snippets? I'd assume you loop through the files in your /books/ directory and CFINCLUDE them? Curious... -- looks like that can be turned into a convenient custom tag. -Dave -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]]

CF4.5.1 and Security Sandbox

2000-07-12 Thread Sean Renet
Did we lose the security sandbox in CF4.5.1? I am using 4.5.1 PRO. I suppose I just make a security context for RDS and granularly apply access rules? -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: Good Cold fusion osting in UK?

2000-07-12 Thread Rich Wild
Remi, I would suggest that you visit http://www.cfug.co.uk and go to the links section. Whilst you're there - sign up for the mailing list - as this question pops up quite often on there. -- Rich Wild Senior Web Designer --- e-mango.com ltd

Odd Question

2000-07-12 Thread Chris Farrugia
I have an application.cfm and a form on a page. Now, if they fill in the form, they then have a CustomerID variable defined... in my application.cfm I have the following line: CFSET APPLICATION.ADDTOKEN = "cfid=#client.cfid#cftoken=#client.cftoken#" Now, how could I put the customerID to the

Re: Cold Fusion Studio Vs Dreamweaver Ultradev

2000-07-12 Thread Francis NART
Many many CFSCRIPTS in the the CFML code... I think that the purpose of this is to be able to switch from asp or Jsp to CFML for example but the code looks really strange to me. At 19:06 11/07/00 -0400, vous avez écrit: Hello All: I'm Currently evaluating ultradev for asp and cold fusion

Re: Odd Question

2000-07-12 Thread Max Paperno
Chris, how about: CFSET APPLICATION.ADDTOKEN = "cfid=#client.cfid#cftoken=#client.cftoken#" CFIF IsDefined("customerID") CFSET APPLICATION.ADDTOKEN = APPLICATION.ADDTOKEN "customerID=" customerID /CFIF Modify to include whatever scope customerID would be in (client, form, cookie,

Re: Odd Question

2000-07-12 Thread Bud
On 7/12/00, Chris Farrugia penned: I have an application.cfm and a form on a page. Now, if they fill in the form, they then have a CustomerID variable defined... in my application.cfm I have the following line: CFSET APPLICATION.ADDTOKEN = "cfid=#client.cfid#cftoken=#client.cftoken#" Now, how

RE: roots

2000-07-12 Thread Stanislav Maximov
Thanks, Dave 1. Just wondering if there is some variable defined which stores local root of the running application: C:\Inetpub\wwwroot\ for example. None of which I'm aware, although it's pretty easy to figure out where this is, and you can just set this in your Application.cfm file. This

mySQL, win98 Coldfusion Admin

2000-07-12 Thread Rich Wild
Due to a strange quirk in the office setup, a colleague and I are testing stuff over a multi-OS setup. He is on Linux, I am on win98, using PWS (eech.) and CF PRO single user. It'll all get migrated to the serious kit later on in the dev cycle, but for now, I just want to be able to connect to

RE: mySQL, win98 Coldfusion Admin

2000-07-12 Thread Rich Wild
doh. eejit. don't worry - done it. :) the DSN had to be created in win ODBC control panel first - then the username and password setup in CF administrator. All verified after that. -- Rich Wild Senior Web Designer --- e-mango.com ltd

RE: What are you using instead of IDENTITY?

2000-07-12 Thread Philip Arnold - ASP
Yes, this is true... ...But, here again use of Identity solves a problem: What if you used FN LN and Street address as primary key? Then, You have two different AlGores living at the same address! You would somehow have uniquify these two different records' primary keys.. Enter

Re: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Nick Slay
Is it just me, or does Joe seem to avoid the actual questions that Tom has asked?? Or have the questions been truncated in some way? Why is the city example a bad one? It's something that every address that is stored has, and can potentially contain many duplications. What is the relevance of

Re: cfif problem

2000-07-12 Thread Chris Ivey
Janey, This is a response to the CF-Talk question you posted There is a couple of things I notice about your code. First, is that I do not see any /CFIF statements in that code. That may be part of the problem. Second, it seems like you are doing a lot of extra coding in that

RE: Cookies

2000-07-12 Thread Jenny Anderson
Thanks Dave... That's definitely more of an answer I was expecting. I appreciate your help at least. I was looking for some more specific discussions on the uses of cfapplication and session management type things (I've done about 10 or so projects so far to make dynamic web pages and have

RE: Queries to Oracle Slow from CFAS (tds)

2000-07-12 Thread mherbene
have you set the datasource to maintain connections? oracle is slow at starting up a new connection, and you will see that overhead with every query if you don't use "maintain connections". -Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 11, 2000

RE: SQL - One or two queries?

2000-07-12 Thread mherbene
try OUTER: cfquery name="info" datasource="myDSN" SELECT skiareas.*, skiareanews.news FROM skiareas LEFT OUTER JOIN skiareanews ON skiareas.areacode = skiareanews.areacode WHERE skiareas.areacode = 'co01' AND skiareanews.season = 2000 /cfquery -Original Message- From: Jim

Re: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Tom Nunamaker
At 7/12/00 10:23 PM, you wrote: Is it just me, or does Joe seem to avoid the actual questions that Tom has asked?? Or have the questions been truncated in some way? Nothing was truncated. I just copied and pasted the email Joe Celko sent to me. To be honest, Joe had me doubting my database

Re: Seeking Text Rollover

2000-07-12 Thread Chris Ivey
Date: Tue, 11 Jul 2000 10:52:09 -0700 From: "Richard Colman" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Subject: Seeking Text Rollover Message-ID: [EMAIL PROTECTED] (A little off topic, but, this may be a common need and worth repeating.) Seeking JavaScript, DHTML, CF, etc.

Problems with CFMAIL and CF4.5.1 and HTML Formatting!

2000-07-12 Thread Kevin Plexico
We have been using CFMAIL to send HTML formatted e-mails to our customers on a weekly basis. We were using CF4.0.1 without difficulty. We just recently upgraded to CF4.5.1 and now some users are complaining that the e-mails are displaying just the raw HTML not the formatted HTML message. It

Netscape Problem with CFGRID

2000-07-12 Thread Claremont, Timothy S
I am having a problem with a CFGRID displaying in Netscape. The same CFGRID shows up just fine in Internet Explorer. The problem seems to have something to do with the number of records that are being displayed. The table in question returns 25,000 records. I think I read somewhere that you

uniqueidentifier in SQL and ColdFusion

2000-07-12 Thread Rif Kiamil
What problems do people get when using uniqueidentifier as there primey key in MS SQL and Cold Fusion ? Rif Kiamil Head of Network Admin / Project Coordinator of Intranet Web Based Applications JJ Fast Food Distribution LTD Tele 020 8885 9218 / Fax 020 8885 9213

Re: (OT) Feel like a dumbass

2000-07-12 Thread Brandon Whitaker
I'm not gonna post an air cargo or Alyssa Milano question here. Well...at least THOSE are questions we could answer: 1.) 5000 pounds, give or take. 2.) Yes, but never on-camera. Brandon Whitaker [EMAIL PROTECTED] --- "It'll get used by the same people using Opera. People dressed in black

RE: CF4.5.1 and Security Sandbox

2000-07-12 Thread Dave Watts
Did we lose the security sandbox in CF4.5.1? I am using 4.5.1 PRO. I suppose I just make a security context for RDS and granularly apply access rules? You'll need CF 4.5.1 Enterprise to get Advanced Security. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202)

RE: CFEXECUTE Problems

2000-07-12 Thread Dave Watts
mm... nope, still not working for me. In addition to your example, I've also tried running it from a cmd.exe shell - i.e.: cfexecute name="c:\winnt\system32\cmd.exe" arguments="net user testme testme /add" /cfexecute ... still no dice. I couldn't get it to work that way,

RE: Amazon Tags

2000-07-12 Thread Eric Dawson
whoops. yeah. cfinclude template="relativepath/isbn.html" From: "Dave Notik" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Amazon Tags Date: Tue, 11 Jul 2000 23:12:46 -0700 What code do you use to then display these HTML snippets? I'd assume you loop through

RE: CFEXECUTE Problems

2000-07-12 Thread Raymond K. Camden
Correct me if I'm wrong, but isn't TIMEOUT=X required? I believe the docs forget to mention it, but that could be your problem. mm... nope, still not working for me. In addition to your example, I've also tried running it from a cmd.exe shell - i.e.: cfexecute

Re: cfif problem

2000-07-12 Thread janey smith
thanks a lot for your help, got that probelm sorted now From: "Chris Ivey" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: cfif problem Date: Wed, 12 Jul 2000 8:39:03 -0400 Janey, This is a response to the CF-Talk question you

Re: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Dick Applebaum
At 10:23 PM +1000 7/12/2000, Nick Slay wrote: Is it just me, or does Joe seem to avoid the actual questions that Tom has asked?? Or have the questions been truncated in some way? Hard to tell... he may just be trying to support a "general" opinion/statement/position with a "specific" example.

RE: CFEXECUTE Problems

2000-07-12 Thread Dave Watts
Correct me if I'm wrong, but isn't TIMEOUT=X required? I believe the docs forget to mention it, but that could be your problem. It worked fine without it for me. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

QuestionII:RE:_Welcome_to_Microsoft®_Windows_NT®_4.0_Option_Pack_

2000-07-12 Thread aslam bajaria
I don't know how to set the settings of the requested server (to which I have access). How do I prevent it from displaying the default page and going to the desired page? I tried to go into internet options and changing the first page being displayed but it did not help. Appreciate greatly. A.B.

RE: SQLOLEDB Provider and 4.51

2000-07-12 Thread Dave Watts
Is anyone running the SQLOLEDB provider from 4.51? Is it_fully_supported now? I want to move from ODBC, but when I did that in 4.01 I found a few unsupported statements and had to move back to ODBC. What unsupported statements did you find? Dave Watts, CTO, Fig Leaf Software

Encrypt Url

2000-07-12 Thread Rif Kiamil
How do I encrypt urls, where do i get info on encrypt urls, just want info on encrypt url Rif Kiamil Head of Network Admin / Project Coordinator of Intranet Web Based Applications JJ Fast Food Distribution LTD Tele 020 8885 9218 / Fax 020 8885 9213

RE: You know what would be really cool?

2000-07-12 Thread Steve Bernard
It is truly a sad state of affairs isn't it? This sort of thing has been happening on a regular basis since Allaire first started hosting a website. All three of their main components, Corporate, Forums, and Beta sites, have gone down or produced errors that really make them look bad. The two

RE: QuestionII:RE:_Welcome_to_Microsoft®_Windows_NT®_4.0_Option_Pack_

2000-07-12 Thread Dave Watts
I don't know how to set the settings of the requested server (to which I have access). How do I prevent it from displaying the default page and going to the desired page? You can do this from the Internet Service Manager. Right-click on the virtual server in question, select Properties, go

why is this happening?

2000-07-12 Thread Douglas Jordon
Why would this query: cfquery datasource="datasourcename" insert into emails(SUBJECT, FROMX, TO, DATEX, BODY, ATTACHMENTS, CC, MESSAGENUMBER, ATTACHMENTFILES, REPLYTO, HEADER, TIMEx) values ( '#query.SUBJECT#', '#FROMX#', '#query.TO#', #DATEy#, '#query.BODY#', '#ATTACHMENTSX#',

CF And Outlook Address Book

2000-07-12 Thread Claremont, Timothy S
Does anyone on the list know of a tag that will allow me to use the Microsoft Outlook address book in my applications? I want end users to be able to search the address book for names and phone numbers, more than for the email addresses. Can I pull what amounts to a phone directory out of the

Re: QuestionII:RE:_Welcome_to_Microsoft®_Windows_NT®_4.0_Option_Pack_

2000-07-12 Thread Kevin Schmidt
You have to use the Internet Services Manger and select the site you are working on and add your page to the default page selections and remove the others. - Original Message - From: "aslam bajaria" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 12, 2000 9:57 AM Subject:

Re: Thumbnail tags

2000-07-12 Thread ColdFusionKid
I'd use Jukka Manner's updated CFX_Image tag instead of the old CFX_GifGD tag. It has support for progressive jpegs as far as I can tell, it also has much more features. - Original Message - From: "Seth Petry-Johnson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 11, 2000

RE: You know what would be really cool?

2000-07-12 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFEC13.BA40F1D0 Content-Type: text/plain Or they have deliberately misinformed you in the error message :-) Not that the error is

RE: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Leyne, Sean
All, What Joe is saying is very simple. - Primary Keys must be made from data elements within the row. Using a number generator to assign an integer value as a key is acceptable. - Since IDENTITY is not a real data element (it's an internal row pointer), it is NOT an appropriate key

RE: QuestionII:RE:_Welcome_to_Microsoft®_Windows_NT®_4.0_Option_Pack_

2000-07-12 Thread Steve Bernard
No problem ... *** Open up the IIS Manager (MMC) Right click on the applicable host/virtual host, select 'Properties' Select the Documents tab Make sure that the 'Default document' checkbox is checked Do ONE of the following ... 1) Delete all document names and insert the one you

RE: You know what would be really cool?

2000-07-12 Thread Jeremy Allen
Heh their site search was failing to create sessions yesterday.. But I can understand. Allaire is moving their entire company to a new building so lets cut thema lil slack ehh, I know the two are not really related.. but moving servers and stuff and keeping any kind of web presence is cool. :)

RE: Form.Fieldnames Missing

2000-07-12 Thread KChapman
That's what we're running as well. --K Katrina Chapman Consultant Ameriquest Mortgage "Dave Watts" [EMAIL PROTECTED] 07/11/00 08:37 PM Please respond to cf-talk To: [EMAIL PROTECTED] cc: [EMAIL PROTECTED] Subject:RE:

Quite simple, co

2000-07-12 Thread Gregory Harris
Quite simple, count the amount of Fields, and the amount of values, and they aren't consistent you have 11 fields and 12 values, re-tool and try again! Gregory Harris Los Angeles ITA Dept. [EMAIL PROTECTED] [EMAIL PROTECTED] 07/12 8:05 AM Why would this query: cfquery

Please help! CFFTP and empty file.

2000-07-12 Thread Jeff Gray
This is a multi-part message in MIME format. --=_NextPart_000_0026_01BFEBF4.5DFA5E20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I am using CFFTP to send files from one CF server to another CF server. = The files get sent okay,

Re: why is this happening?

2000-07-12 Thread Gordon Burns
At 11:05 12/07/00 -0400 Douglas Jordon said Could be the ; at the end of '#TIMEx#') Gordon Why would this query: cfquery datasource="datasourcename" insert into emails(SUBJECT, FROMX, TO, DATEX, BODY, ATTACHMENTS, CC, MESSAGENUMBER, ATTACHMENTFILES, REPLYTO, HEADER, TIMEx) values (

RE: why is this happening?

2000-07-12 Thread Dempsey, Timothy F.
Doug, Could one of you values have a comma in it? That might make the database think it has more values than you intend. -- Tim Dempsey -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 12, 2000 11:06 AM To: Cold Fusion List Subject: why is this

RE: Form.Fieldnames Missing

2000-07-12 Thread Dan Haley
I can recreate the error if the only form elements that are named are checkboxes and radio buttons, and none of them have been checked or selected. At that point form.fieldnames is not defined in the action page. Any chance your form only has checkboxes and radio buttons? Dan -Original

Re: Thumbnail tags

2000-07-12 Thread KungFusion
you can use the CF_GifGD and when you encounter a progressive JPEG use CGX_Image and CFX_ImageInfo to handle the resize.. I haven't used CF_GifGD but I plan on using it with this combination.. Brian Silvers [EMAIL PROTECTED] X-Net Web Systems Senior Developer ColdFusion, SQL, PHP,

RE: You know what would be really cool?

2000-07-12 Thread Greg Creedon
I see! What a great idea. All of the tech staff and admins would have their Allaire Secret Decoder Rings(tm), available in Personal or Enterprise versions. Error says ODBC error? A quick flick of the dial and it's actually a syntax error! Zounds! a misplaced sign. The future is so bright, I

Errors when using CFHTTP / WDDX on 4.5

2000-07-12 Thread Geoffrey V. Brown
Hi, Since I've upgraded to 4.5, using cfhttp with any xml or text templates is not working. We now get an error that states that the ascii file that we are attempting to display is invalid. To work with the data read from cfhttp, we need to dump the content to a file, then read it back in. Is

RE: Queries to Oracle Slow from CFAS (tds)

2000-07-12 Thread Dan Haley
We also removed a large delay by making sure the local tnsnames.ora file has all the information needed to reach the database. Our DBAs originally set up the tnsnames.ora to point at the "source" on another server. With a little pushing and shoving we were able to get them to publish the

pass variables

2000-07-12 Thread janey smith
i have a problem passing variables to an edit page, it passes the field pol_question fine but for the answer fields my loop is incorrect, it just reproduces the answers 5 times each. each answer is the ans_answer table is related to the pol_question through the pol_id, any help would be

Re: Quite simple, co

2000-07-12 Thread Brandon Whitaker
Quite simple, count the amount of Fields, and the amount of values, and they aren't consistent you have 11 fields and 12 values, re-tool and try again! What was throwing me is that the data he had *right* was still being saved. I've been fortunate(?) to work with native drivers instead of ODBC,

Studio: Any way to have File Open folder follow current file?

2000-07-12 Thread Paul Sinclair
I use UltraEdit as my standard text editor and it has an option that allows you to "Use Active File Directory on File Open". This is very convenient. Is this possible in CF Studio? I can't find such an option. For example, I start CFStudio and do "File Open" and get a file from D:\Test. Then I

problem with primary key

2000-07-12 Thread gregg Kachel
Hi, haveing a crisis here. Everything was working fine earlier, now all of a sudden when I try to do an update on my membership page I get the following error. SQL operation updated no rows. The SQL operation affected no rows.Either the Key value has changed or the row has been deleted. The

Final Checkout coming back from Secure Server

2000-07-12 Thread Cybanical
Okay so the user uses a shoppingcart and checks out through a secure server. Now that the transaction has gone through I want to display our usual header and a little notificaiton if the transaction worked out okay or what the complications are. You can't use a cfinclude with a physical path

How to Count? or Record Count?

2000-07-12 Thread Paul Ihrig
Ok this is going to sound a bit odd since i am not sure how to word it. i have my little query: [in my admin page for viewing who has signed up for the class] [[from dataview01.cfm]] cfquery name="rsSignedUP" datasource="practice" SELECT tbl_Employee.EmployeeID, tbl_Employee.LastName,

RE: CF And Outlook Address Book

2000-07-12 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFEC1C.4F698F10 Content-Type: text/plain; charset="iso-8859-1" I have written a COM object that talks to exchange using CDO.

Re: Quite simple, co

2000-07-12 Thread Justin v0.9 MacCarthy
Gregory Harris: Quite simple, count the amount of Fields, and the amount of values, and they aren't consistent you have 11 fields and 12 values, re-tool and try again! Nope 12 and 12. You should try looking at the full sql that gets passed, check it for quotes etc What DB are you using???

RE: Please help! CFFTP and empty file.

2000-07-12 Thread Anthony Geoghegan
|Hello, |I am using CFFTP to send files from one CF server to another |CF server. = |The files get sent okay, but they contain no data. They are all zero = |bytes. Hi Jeff, What kind of name contention scheme are you using? Regards, Anthony Geoghegan. Lead Developer, IFTN www.wow.ie

RE: Cold Fusion Studio Vs Dreamweaver Ultradev

2000-07-12 Thread Paul Ihrig
alot of cgi stuff too. i have been using it for a few days now. i like that you can through up a decently designed page that pulls data in, in a few minute preview it right there. What i dont like is its reformating of my code, from cf. ud, seems not to understand some very basic list

Re: why is this happening?

2000-07-12 Thread Douglas Jordon
That's interesting, because I had narrowed the fields down to one: the body field which of course contains commas(the data is email). How do I get around this? It's an Access database memo field. DJ "Dempsey, Timothy F." wrote: Doug, Could one of you values have a comma in it? That might

Re: Odd Question

2000-07-12 Thread kraybill
Should your addtoken var be in the Application scope? That will assign the same CFID and CFTOKEN to all users... CF automatically creates Client.URLToken and Session.URLToken, similar to your assignment below, so you don't need to do that manually. You could try something like this: CFSET

RE: You know what would be really cool?

2000-07-12 Thread Philip Arnold - ASP
It may seem innocent enough but from this error message you know: 1) Using IIS 2) .. therefore, using NT This can be found out through other means though - they're actually running IIS4... therefore NT4 From this info you could run attack attempts to check vunerabilities, but that'd be

RE: Thumbnail tags

2000-07-12 Thread Robert Forsyth
Dumb question, what are progressive jpegs? Bob Jpegs born after May 15, 1987... sorry. could not resist -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Benjamin S. Rogers
The true test of a key, is to think of a situation where you are asked to extract a subset of data (ie. set of master with all related details) into a new database with an identical structure. The test is met if you are able to perform the transition and maintain all relationships. On this

Re: why is this happening

2000-07-12 Thread Gregory Harris
Ok first order of the day: Get Novell Groupwise off my computer, the email program on it IMHO sucks, attempting to type the body of my message in the subject, not very intuitive...and people wonder why MS Outlook dominates the market *sigh* Anyways, a partial insert is impossible the query

CFLOCK and server variables

2000-07-12 Thread mherbene
Ok, I've seen that (in 4.01) I should use #application.applicationname# for the CFLOCK "name" when locking application variables; what do I use for locking server variables? --- Martin Herbener [EMAIL PROTECTED] Kentucky Department of Education

Re: why is this happening?

2000-07-12 Thread Gregory Harris
Why partial data would be saved to the table is beyond me though. Maybe you weren't running things in a transaction and there was no rollback? Another query doing an insert? Gregory Harris Los Angeles ITA Dept. [EMAIL PROTECTED] [EMAIL PROTECTED] 07/12 8:05 AM Why would this query:

RE: Thumbnail tags

2000-07-12 Thread Shane Witbeck
A progressive JPEG will display in the web browser in several passes, with more detail reveal with each pass. Programs like Photoshop allow you to specify the number of scans for the JPEG image you are creating. Sincerely, Shane Witbeck Webmaster -Original Message- From: Robert Everland

searches failing...help.

2000-07-12 Thread miles
Hi, Ive got myself a tiny problem...which should be a snap for you folks that are more skilled than myself right now... CFQUERY Name="knowledge" DataSource="ccmast" select id, entered_date, synopsis, knowledge from nxsknow where knowledge = '#search_string#' order by entered_date desc /CFQUERY

RE: Form.Fieldnames Missing

2000-07-12 Thread KChapman
While the form isn't only checkboxes or radio buttons this helps. Thanks, --Kat Katrina Chapman Consultant Ameriquest Mortgage Dan Haley [EMAIL PROTECTED] 07/12/00 08:51 AM Please respond to cf-talk To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] cc:

RE: You know what would be really cool?

2000-07-12 Thread KChapman
Actually it's The future's so bright, I gotta wear shades! Just an FYI. --K Katrina Chapman Consultant Ameriquest Mortgage Greg Creedon [EMAIL PROTECTED] 07/12/00 08:54 AM Please respond to cf-talk To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED]

RE: problem with primary key

2000-07-12 Thread Mark Warrick
Try running the SQL statement directly in the database to see what happens. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email:

CFContent Problem.........

2000-07-12 Thread Russel Madere
When I try to use CFContent to serve up an install program from an FTP directory through a web browser. If I just give an anchor to the URL, it works fine. However, the project manager wants the option of starting the file download via HTTP when the user goes to a particular page. The file

Re: How to Count? or Record Count?

2000-07-12 Thread KChapman
I could be totally wrong here but I'm assuming that tbl_SignUp.CreateDate is the time that they signed up. Am I right? If I am you could just do this cfquery name="rsSignedUP" datasource="practice" SELECT tbl_Employee.EmployeeID, tbl_Employee.LastName, tbl_Employee.FirstName,

Re: pass variables

2000-07-12 Thread kraybill
"janey smith" [EMAIL PROTECTED] i have a problem passing variables to an edit page, it passes the field pol_question fine but for the answer fields my loop is incorrect, it just reproduces the answers 5 times each. each answer is the ans_answer table is related to the pol_question through

RE: Thumbnail tags

2000-07-12 Thread Philip Arnold - ASP
Dumb question, what are progressive jpegs? In their own way, they're like interlaced GIFs The idea being that you get the "impression" of the image before the quality is loaded, so that you can see "roughly" what the image is before it loads fully Useful for absolutely HAUGE images, but

Writing Fixed Width TXT Files

2000-07-12 Thread Adrian Cesana
A few months back there was a thread on writing out a fixed width txt file, I cannot seem to locate the emails. There were a few slick methods of doing this I believe. Does anyone have that email or can comment on ways of doing this. thanks,Adrian

Re: Quite simple, co

2000-07-12 Thread Gregory Harris
Second thing for this morning: Switch back to caffeinated coffee (been trying to stay away from it) Run the query with debug enabled, and try and see the Query as it executes, this will give you information about the query and you can check for better syntax. Show me the results with debug

RE: Form.Fieldnames Missing

2000-07-12 Thread Dave Watts
Is there a reason why the form.fieldnames field would not be passed in a form? ... I vaguely seem to recall that in some versions of CF prior to 4.5.x, if the ENCTYPE attribute of the form is set to "multipart/form-data", which is what you'd use for file uploads, FORM.FIELDNAMES

RE: You know what would be really cool?

2000-07-12 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFEC29.DA889A70 Content-Type: text/plain; charset="iso-8859-1" Well, I wasn't suggesting thatthough it might be cool ;-) I

Re: why is this happening?

2000-07-12 Thread KChapman
It shouldn't matter what kind of field it is in the database. You need to escape your comma's. Try this. cfset message_body = Replace(query.BODY, ",", "Chr(44)", "ALL") cfquery datasource="datasourcename" insert into emails(SUBJECT, FROMX, TO, DATEX, BODY, ATTACHMENTS, CC,

Re: pass variables

2000-07-12 Thread Brandon Whitaker
i have a problem passing variables to an edit page, it passes the field pol_question fine but for the answer fields my loop is incorrect, it just reproduces the answers 5 times each. each answer is the ans_answer table is related to the pol_question through the pol_id, any help would be

RE: What are you using instead of IDENTITY...Part II

2000-07-12 Thread Dave Watts
- Primary Keys must be made from data elements within the row. Using a number generator to assign an integer value as a key is acceptable. - Since IDENTITY is not a real data element (it's an internal row pointer), it is NOT an appropriate key candidate. I must be missing something here.

RE: You know what would be really cool?

2000-07-12 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFEC2B.CCE3AED0 Content-Type: text/plain; charset="iso-8859-1" You could just as easily telnet to port 80 and type 'get' and

RE: Studio: Any way to have File Open folder follow current file?

2000-07-12 Thread Philip Arnold - ASP
I use UltraEdit as my standard text editor and it has an option that allows you to "Use Active File Directory on File Open". This is very convenient. Is this possible in CF Studio? I can't find such an option. Why don't you just use the "Files" tab on the Resource window? The File/Open

RE: pass variables

2000-07-12 Thread Philip Arnold - ASP
i have a problem passing variables to an edit page, it passes the field pol_question fine but for the answer fields my loop is incorrect, it just reproduces the answers 5 times each. each answer is the ans_answer table is related to the pol_question through the pol_id, any help would be

CF Express and SQL 7

2000-07-12 Thread Byron Stuart
I know CF Express does not support SQL Server, and if you set up a SQL 7 data source in CF Administrator, it fails to connect. So, I'm wondering if anyone has figured out a way to use a SQL 7 DB w/ CF Express. Can you just put all the necessary attributes in the CFQUERY tag to override the data

Any free verity search engines????

2000-07-12 Thread Robert Everland
Anyone have a search engine they did to index a website. Open source must be a must so I can plug my look in feel into it. Got to get a search out ASAP and was hoping to not have to code it because of time constraints. Robert Everland III Web Developer Dixon Ticonderoga

RE: CFEXECUTE Problems

2000-07-12 Thread Ryan Hill
Dave and all, I've gotten several helpful replies now but I'm still a little worried here. Its starting to sound like this isn't a very good approach to my goal. I've added some comments and thoughts inline below: Is your CF service running as localsystem? Yes, it is. I tested this on my

saving queries

2000-07-12 Thread Eli Shechter
Hi i know there is a way to do this, i just dont know the syntax. i would like to save a query result into a variable cfset var = query.resultset can anyone help me with the proper way to do this?? Thanx -Eli- --

RE: pass variables

2000-07-12 Thread Bert Dawson
when you loop through the query, you only need to do it once - thats why its a called a loop...so instead of all those CFLOOPs and the cfoutput query="getanswers", try: !--- set a counter to use in the names of the variables --- CFSET variables.count = 0 CFOUTPUT QUERY="GetAnswers" !---

RE: How to Count? or Record Count?

2000-07-12 Thread Paul Ihrig
Ok. I am able to get one class id inserted besed on the record count. My problem now is at the bottom of this page. it needs to be conditional on wether the insert is for date/time 01 or date/time 02. But how is my form suposed to know what date has been selected befor the actual submit button

Re: Quite simple, co

2000-07-12 Thread Douglas Jordon
My count shows 12 and 12. Here it is again, illustrated: cfquery datasource="datasourcename" insert into emails( 1 SUBJECT, 2 FROMX, 3 TO, 4 DATEX, 5 BODY, 6 ATTACHMENTS, 7 CC, 8 MESSAGENUMBER, 9 ATTACHMENTFILES, 10 REPLYTO, 11 HEADER, 12 TIMEx) values ( 1 '#query.SUBJECT#', 2 '#FROMX#', 3

RE: You know what would be really cool?

2000-07-12 Thread Steve Bernard
As I said, this information is given to you without having to do any work. It is rather trivial to profile the outside interfaces of a server but, when a company makes itself stick out by having things like this happen on a regular and long term basis it can make that company more susceptible to

Find a date from a given date

2000-07-12 Thread Jacob
How can I find the date 180 days from a give date? For example, if I am given the date 05/16/00, I want to return the date of 11/16/00. I have tried using DateDiff for a while, but I do not think it will work. checkdate = 05/16/00 #evaluate(180 + DateDiff("d",now(),checkdate.odr_date))#

RE: You know what would be really cool?

2000-07-12 Thread Steve Bernard
Deliberate obfuscation of environment information is a legitimate security technique but, I have never seen this used on debug information. If nothing else, you severely hamper your developers ability to fix problem quickly and effectively. The type of information in this error message combined

Re: Quite simple, co

2000-07-12 Thread Douglas Jordon
Thanks. Memo field in an Access database. DJ "Justin v0.9 MacCarthy" wrote: Gregory Harris: Quite simple, count the amount of Fields, and the amount of values, and they aren't consistent you have 11 fields and 12 values, re-tool and try again! Nope 12 and 12. You should try

  1   2   >