Re: Any way to limit file upload size?

2006-12-07 Thread Robertson-Ravo, Neil (RX)
Indeed, both Flash and Java provide solutions. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

RE: Verity Category Search

2006-12-07 Thread James Smith
No, I even tried Internet and Internet_Basic just in case, still no joy :-( Hey Jay - if you switch from natural to simple, does it work? cfsearch name=SearchResults collection=ItemInfo type=natural criteria=Winehouse category=

RE: Verity Category Search

2006-12-07 Thread James Smith
The good news (maybe) is that you can explicitly query that field of the index, which is named cf_enum_category. So you could do something like: cf_enum_category contains `5` How would I do this in combination with the existing criteria though? I would need it to search for the relevent

Re: Retrieve RemoteName

2006-12-07 Thread Keith McGee
I have built an intranet portal which is accessible internally and externally. If I could get the internal DNS name that would be a start. As most of my errors are occurring with internal IP addresses. I have found that users here would rather find a workaround then call for help. If I can get

RE: Retrieve RemoteName

2006-12-07 Thread Dave Watts
I have built an intranet portal which is accessible internally and externally. If I could get the internal DNS name that would be a start. As most of my errors are occurring with internal IP addresses. I have found that users here would rather find a workaround then call for help. If I

RE: Retrieve RemoteName

2006-12-07 Thread Bobby Hartsfield
and you will probably want to do it within the application with cfexecute to get the name at the time of the exception. If the IT guys can't tie an IP to a machine by the time you call in, then chances are that the IPs are dynamic and change often (ewww) But... AFAIK, you will only be able

SQL getting the next available ID

2006-12-07 Thread Doug Brown
I am needing to get the next available ID from my (permanent)advertisements table and be able to hang onto it until a user checks out and I do a final insert. What happens is the user does the following things. 1. User clicks on (Create advertisement) link and that is when I need to get the

RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Bobby Hartsfield
option value=0 selected option value=0 selected=selected option value=0 selected=true option value=0 selected=blah Those all work. I normally just use the first one. ;-) Try control + shift + R to make sure FF just isn't remembering the last selection. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: SQL getting the next available ID

2006-12-07 Thread JediHomer
Why not set your ID to be a uniqueue identifier, then generate the ID with CF... This should keep the ID unique for that Add... On 07/12/06, Doug Brown [EMAIL PROTECTED] wrote: I am needing to get the next available ID from my (permanent)advertisements table and be able to hang onto it until

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
Entering it temporarily will ensure that it isn’t used again... ever Also, a simple flag like 'verified' as a bit field would make it easier than having 2 separate tables for verified and unverified ads. Enter all of the info and set the verified flag to 0. Once the user verifies it, you can set

RE: CFC Assistance

2006-12-07 Thread Richard Kroll
You might want to try something like this: cfcomponent cfset variables.ncid = 0 !--- called when CFC is created --- cffunction name=checkNCID access=public output=false cfargument name=NCID required=no default=#variables.ncid# cfset var id

RE: Flex UI developer needed

2006-12-07 Thread Andy Matthews
I know, I know...I already told her that. It sounds like this came from some HR mouthpiece. She mostly needs someone skilled in Flash who can learn what they don't already know. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL

Payment Gateways

2006-12-07 Thread Jenny Gavin-Wear
I am looking for some advice on payment gateways. What would be ideal is a gateway that is: 1. Internationally supported (especially UK/USA) 2. Integrates seamlessly with a shopping cart 3. Ideally, will not require SSL 4. Is reliable/robust with decent documentation, preferably code examples for

RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread DURETTE, STEVEN J \(ASI-AIT\)
I believe. (don't flame me if I'm wrong) but if it is xhtml it has to be selected=true. I've started coding it that way so I don't have to worry if I've got HTML or XHTML. I close all my single tags now also! Steve -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]

Re: SQL getting the next available ID

2006-12-07 Thread Doug Brown
Bobby, So basically what I would do is add a column to my advertisements table (bit) and lose the temporary table. I suppose I would just run a scheduled task once a week and delete the ads where verified flag is 0 and the insertDate is older than a week. Does this sound about right. I still

Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
I had someone ask me a question today about an error message they were getting when trying to read a session. The name of the session was: mydemoweb_1558129_973910d81ad1363a-56F3C720-DA19-CB22-E5857B8E076CF998 The error was: 56F3C720, is not a valid identifer name. Yes, that is how

Re: determine whether the DB dataset exists

2006-12-07 Thread daniel kessler
Can you be more specific about what you mean by a dataset already existing? In your database? In a CF variable? I was trying to determine whether a query had already been done, providing me with a dataset (in a query variable, I guess). If so, I wouldn't do another and use the provided

Re: Payment Gateways

2006-12-07 Thread Dan Vega
I would say my favorite 2 are 1.) PayPal Payflow Pro 2.) Authorize.net I have some getting started and faqs about paypals service on my site at http://www.danvega.org/blog On 12/7/06, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: I am looking for some advice on payment gateways. What would be

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
I didn’t follow the previous thread 100% but it seems there were quite a few options listed for getting the next available ID for many different databases. Which DB are you using? And yes, you would just add a bit field to the primary table and lose the temporary table. I personally wouldn’t

RE: Flex UI developer needed

2006-12-07 Thread Kevin Aebig
There are a few developers that were into Flex before it hit the open market and though it wasn't 4 years, I understand what she's getting at. She should be asking for a seasoned Flex developer (2 years), with signification Flash application experience(5 years). Cheers, !k -Original

RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Bobby Hartsfield
You are probably right, and I've never even thought about that but I don’t recall it ever popping up during validation. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: DURETTE, STEVEN J (ASI-AIT) [mailto:[EMAIL PROTECTED] Sent: Thursday,

Determine database field type

2006-12-07 Thread Daniel Kessler
I have an export for excel button, using the code below. The problem is that dates aren't formatted as dates and I'd like to correct that. The first step would be to find out what type of field I am working with. I am don't know how to do that. Then I'll have to figure out how to make

Re: CF Change Control/Change Request Systems

2006-12-07 Thread Peter Tanswell
Hi someone replied direct to me in relation to an application but I mistakenly deleted the email. If you replied could you please reply again. Many thanks P Hi All Just wondering if anyone has seen or may know of any small CF based change control/change request applications that may be

Re: Verity Category Search

2006-12-07 Thread Raymond Camden
One more thing - if you lowercase your criteria, does stuff change? On 12/7/06, James Smith [EMAIL PROTECTED] wrote: No, I even tried Internet and Internet_Basic just in case, still no joy :-( Hey Jay - if you switch from natural to simple, does it work? cfsearch name=SearchResults

TeraTech to run Fusebox, CFUNITED video survey

2006-12-07 Thread Michael Smith
In this week's Newsletter: * TeraTech to run Fusebox * TeraTech classes and webinars * Video Survey What are your thoughts? * Partial Scholarship Fund for TeraTech Events * CFUnited-06 Alumni- Listen to CFUnited 2006 presentation sound recordings * Interview about recursion in CF with Andrew

RE: Determine database field type

2006-12-07 Thread Andy Matthews
I believe you can get that info back if you do DESCRIBE table_name !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Daniel Kessler

RE: Determine database field type

2006-12-07 Thread Richard Kroll
The first step would be to find out what type of field I am working with. I am don't know how to do that. You can use the information_schema if you are using MSSQL to determine the data type of the column. Then I'll have to figure out how to make it a date field for excel. You can create a

RE: Determine database field type

2006-12-07 Thread Bobby Hartsfield
No one ever says what database they are using :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 10:09 AM To: CF-Talk Subject: Determine database field type I have

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
I am on CF6 and he is on CF7. Maybe it’s a new option? I don’t see any difference between the 2. Still just the same old Use UUID for cftoken ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent:

Re: Determine database field type

2006-12-07 Thread daniel kessler
Oracle - I almost always say so, but forgot this time. oops. No one ever says what database they are using :-) .:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Create robust enterprise, web RIAs. Upgrade

RE: Where do you buy ColdFusion?

2006-12-07 Thread Munson, Jacob
buying from Insight (who BTW use CF, so you get to support a vendor who actually uses the product on their public site) If that's your criteria, then people should buy CF from someone other than Adobe, who uses PHP instead of CF for their CF 8 preview site:

Jump to an Anchor

2006-12-07 Thread Ian Skinner
after a page has been requested. Is there a way to focus a page to an anchor dynamically after a page is requested, when the URL does NOT have an anchor link in it? I have a calendar application and the users would like it to default to the current week at the top of the page when the

RE: Determine database field type

2006-12-07 Thread Bobby Hartsfield
I'm not big on oracle so I don’t know if you have something similar to the schema info tables in MSSQL but I believe that DESCRIBE will work in Oracle... according to google anyway :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: daniel

Re: SQL getting the next available ID

2006-12-07 Thread Doug Brown
I am using SQL2K. I am not quite sure I am following the createUUID() Are you saying to use this value as the adid versus using auto increment? Regards, Doug ~| Create robust enterprise, web RIAs. Upgrade

Re: Where do you buy ColdFusion?

2006-12-07 Thread Phill B
No that is just wrong. *shakes head* On 12/7/06, Munson, Jacob [EMAIL PROTECTED] wrote: If that's your criteria, then people should buy CF from someone other than Adobe, who uses PHP instead of CF for their CF 8 preview site: http://labs.adobe.com/wiki/index.php/Scorpio ;)

RE: Determine database field type

2006-12-07 Thread Ben Nadel
Once the data is pulled out of the database, you can get the meta data form the query: GetMetaData( retrieved_data ) Take a look at that. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/

Re: Jump to an Anchor

2006-12-07 Thread Ryan Stille
Ian Skinner wrote: after a page has been requested. Is there a way to focus a page to an anchor dynamically after a page is requested, when the URL does NOT have an anchor link in it? I have a calendar application and the users would like it to default to the current week at the top

Re: Jump to an Anchor

2006-12-07 Thread Robertson-Ravo, Neil (RX)
I would presume you just use JS to loop through the anchors etc. I am sure I did this before but I can't get to my machine today to dig out any code! This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed

cf 7 and request throttle

2006-12-07 Thread Douglas Knudsen
- Request throttle threshold (MB) - Requests smaller than the specified limit are neither queued nor counted as part of the total memory. Requests larger than the specified limit are counted as part of total memory and are queued if the request throttle memory size has been

Re: Jump to an Anchor

2006-12-07 Thread Rick Root
Ian Skinner wrote: after a page has been requested. Is there a way to focus a page to an anchor dynamically after a page is requested, when the URL does NOT have an anchor link in it? I have a calendar application and the users would like it to default to the current week at the

RE: Jump to an Anchor

2006-12-07 Thread Andy Matthews
You could use javascript to scroll (or jump) down to a page. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ian Skinner [mailto:[EMAIL

Re: Determine database field type

2006-12-07 Thread Craig Drabik
The Oracle data dictionary contains pretty much everything. The table you're looking for is ALL_TAB_COLUMNS in this case, assuming you're working with tables. I'm not big on oracle so I don?t know if you have something similar to the schema info tables in MSSQL but I believe that DESCRIBE will

Re: SQL getting the next available ID

2006-12-07 Thread Matt Robertson
yes thats what he's saying. Since you create the UUID yourself with createuuid() you can reference it early and often anytime, without any added cfqueries or whatever. I like to use a replace function to remove the underscores from the uuid, but thats as much personal preference as it is

Re: Determine database field type

2006-12-07 Thread Robertson-Ravo, Neil (RX)
Well you can just query the sys tables in SQL Server to get the datatypes for fields. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information

RE: Jump to an Anchor

2006-12-07 Thread Dave Francis
Make the 'live' link to a dummy page that does a cflocation with today's date appended to the URL -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 10:48 AM To: CF-Talk Subject: Jump to an Anchor . after a page has been requested. Is

Re: Jump to an Anchor

2006-12-07 Thread Robertson-Ravo, Neil (RX)
? You can do this with JS, but yes this would work I suppose. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential

RE: Jump to an Anchor

2006-12-07 Thread Ian Skinner
As the others have said.. javascript window.location.href='#anchor'; You may need to include the current page as well... ie... window.location.href='index.cfm#anchor'; I knew JavaScript would be involved, but was sure how much. If I use this window.location function, will it just jump to the

Using Iif and De together...

2006-12-07 Thread Andy Matthews
I KNOW that I've used this method successfully before, but for some reason it's not working correctly now. I've got a radio button in a form. I want to make sure that button is there, and if so use it's value. It it's not there then I want the string N: IIf(NOT

Re: Jump to an Anchor

2006-12-07 Thread Robertson-Ravo, Neil (RX)
It will jump I believe. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for

RE: Jump to an Anchor

2006-12-07 Thread Ian Skinner
P.S. Is it the Name property or the ID property of the a... tag that one links to? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C code run. Run code run. Please! - Cynthia

Re: Using Iif and De together...

2006-12-07 Thread JediHomer
IIf(StructKeyExists(FORM, listing_openhouse), 'Trim(FORM.listing_openhouse)', 'N') *should* do it :) On 07/12/06, Andy Matthews [EMAIL PROTECTED] wrote: I KNOW that I've used this method successfully before, but for some reason it's not working correctly now. I've got a radio button in a

Re: Using Iif and De together...

2006-12-07 Thread Michael Dinowitz
Two points. The first is that any variable or function used in the last 2 arguments will be evaluated both before and after the tag runs and DE is used only to quote a variable/function rather than forcing the programmer to do it themselves. That being said, the problem is probably in your

RE: Verity Category Search

2006-12-07 Thread Dan G. Switzer, II
Jay, The Category stuff in Verity v7 blows. Do you by chance have that item assigned to multiple catgories? I seem to remember when I attempted to use Categories that if you don't match *all* the categories an item is assigned to, it won't be found. Which means you can't really assign an item

RE: Using Iif and De together...

2006-12-07 Thread Andy Matthews
I think that's what I was missing guys. The extra set of quotes on the final argument. Thanks Michael and jedihomer !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

Re: Verity Category Search

2006-12-07 Thread Sixten Otto
cf_enum_category contains `5` How would I do this in combination with the existing criteria though? I would need it to search for the relevent category AND the users search string... As much as I hate to ever tell someone to Read The Fine Manual, it will probably explain the Verity query

Re: Verity Category Search

2006-12-07 Thread Robertson-Ravo, Neil (RX)
Lol, Verity blows full stop! But I suppose you get it out of the box with ColdFusion! This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information

Help Looping Through Object with Return Type of Query

2006-12-07 Thread Aaron Roberson
I'm still working on my one-to-many object composition and I think I've found the solution but I don't know how to loop through the object in this instance. I have a product service with a getProduct() method. That method passes the product id to a item gateway which returns a query of product

Anyone familiar witht the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Che Vilnonis
I ask because I would like to populate a text box named Genus with the value that is selected from the custom tag value named SelectedCatLevel2. Does anyone know how I might do this? Traditional JS calls don't seem to work. Thanks, Che. CF_TwoSelectsRelated QUERY=TwoSelects

Re: Jump to an Anchor

2006-12-07 Thread Robertson-Ravo, Neil (RX)
I would assume in this case you could use either as both should be unique. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

Re: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Jolly Green Giant
Would this work? cfloop index=idx from=1 to=#query.recordcount# #product.getItems().itemid[idx]# /cfloop On 12/7/06, Aaron Roberson [EMAIL PROTECTED] wrote: I'm still working on my one-to-many object composition and I think I've found the solution but I don't know how to loop through the

Re: Verity Category Search

2006-12-07 Thread Raymond Camden
No - that does work (checked with my resource). If an item is assigned to category A, B, and C, and you do a cfsearch with category=A, you will get the item. On 12/7/06, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Jay, The Category stuff in Verity v7 blows. Do you by chance have that item

RE: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Ian Skinner
cfoutput query=product.getItems() There is some difficulty with using complex query names and the cfquery... tag. When this arises for me, I usually just copy the query from the function to a local, simple variable and use that in the loop. cfset localQuery = product.getItems() cfoutput

Re: CFDOCUMENT / PDF / IIS Compression

2006-12-07 Thread Scott Brady
Did you get a response to this? We're using GZip compression and we turned it off for the file which generates the PDF, but that didn't seem to do the trick. On 7/12/06, Brian Peddle [EMAIL PROTECTED] wrote: I would like to use IIS Compression and have it working fine for everything accept

Re: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Aaron Roberson
cfset localQuery = product.getItems() cfoutput query = localQuery This may actually work better since the original solution would conceivable call the function every iteration through the loop. This way only calls it once. That worked, but I am hard-headed and still new to OO so I

RE: Jump to an Anchor

2006-12-07 Thread Mosh Teitelbaum
Ian: You can use JavaScript to jump to a named anchor via the location.hash property. Just write code along the lines of: location.hash = 'nameOfAnchor'; Make sure to NOT include the hash mark in the above line of code. Just the name of the anchor. -- Mosh Teitelbaum evoch, LLC Tel:

Re: Anyone familiar witht the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Doug Brown
Maybe...and I cannot remember everything about it. In your twoSelects custom tag you should have the select that you want to get the information from. In that select try.. select language=javascript name=select1 onChange=text.value = select1.value option value=test1Test1/option option

RE: Jump to an Anchor

2006-12-07 Thread Mosh Teitelbaum
Ian: If you use the href property of the location object, the page will likely reload. If you use the hash property, the page should not jump. So you're JS code would be something like: window.location.hash = 'nameOfAnchor'; And the anchor tag would look like: A

Re: Extremely long session names with dashes

2006-12-07 Thread David
The difference seems to be the hyphen '-'; CF parses the part of the name after any hyphen as a separate variable. He probably needs to use the bracket notation for the structure key [mydemoweb_1558129_973910d81ad1363a-56F3C720-DA19-CB22-E5857B8E076CF998], which always treats that whole key as one

RE: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Ian Skinner
I don't think this breaks any OOP|OOD|OOA principals, but I am by no means an expert. My understanding of OO land is pretty basic as well. But this should just be creating a local reference to your OO data that you then use in the query tag. -- Ian Skinner Web Programmer

Re: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Aaron Roberson
Would this work? cfloop index=idx from=1 to=#query.recordcount# #product.getItems().itemid[idx]# /cfloop JGG, ColdFusion doesn't seem to like the array access notation or something because I am getting the following error: Element ITEMID is undefined in a Java object of type class

Re: Extremely long session names with dashes

2006-12-07 Thread Will Tomlinson
I am on CF6 and he is on CF7. Maybe it?s a new option? I don?t see any difference between the 2. Still just the same old Use UUID for cftoken Is this like, a question? Are you talking to yourself again? lol Will ~| Create

Interpolation

2006-12-07 Thread Rick Root
Can anyone tell me if any of these three thumbnails are of better quality than the others? http://www.opensourcecf.com/imagecfc/thumbnail_test/ I'm playing around with some of the java image rendering settings trying to get better thumbnail quality out of image.cfc, but I have 20/50 vision

Re: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Aaron Roberson
I don't think this breaks any OOP|OOD|OOA principals, but I am by no means an expert. My understanding of OO land is pretty basic as well. But this should just be creating a local reference to your OO data that you then use in the query tag. Well, it definitely works! Do you know of any

Re: Interpolation

2006-12-07 Thread M
No images there? On 12/7/06, Rick Root [EMAIL PROTECTED] wrote: Can anyone tell me if any of these three thumbnails are of better quality than the others? http://www.opensourcecf.com/imagecfc/thumbnail_test/ I'm playing around with some of the java image rendering settings trying to get

RE: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Ian Skinner
Well, it definitely works! Do you know of any advantages to creating a has a relationship between a product and several product items in the product service as opposed to just calling the items gateway and passing an argument to filter by productid? In other words, should I even create a

Re: Interpolation

2006-12-07 Thread Rick Root
M wrote: No images there? try again, I see images. http://www.opensourcecf.com/imagecfc/thumbnail_test/index.html Rick On 12/7/06, Rick Root [EMAIL PROTECTED] wrote: Can anyone tell me if any of these three thumbnails are of better quality than the others?

Re: Verity Category Search

2006-12-07 Thread Raymond Camden
Heh, I must be in the minority. :) I really like it. It isn't perfect, but neither is the rest of CF. ;) On 12/7/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Lol, Verity blows full stop! But I suppose you get it out of the box with ColdFusion! --

RE: Interpolation

2006-12-07 Thread Munson, Jacob
I can't see a difference between all 6 choices...maybe I'm as blind as you! :) -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 11:38 AM Can anyone tell me if any of these three thumbnails are of better quality than the others?

Re: Interpolation

2006-12-07 Thread Charlie Griefer
look the same to me. On 12/7/06, Rick Root [EMAIL PROTECTED] wrote: M wrote: No images there? try again, I see images. http://www.opensourcecf.com/imagecfc/thumbnail_test/index.html Rick On 12/7/06, Rick Root [EMAIL PROTECTED] wrote: Can anyone tell me if any of these three

Re: Interpolation

2006-12-07 Thread Will Tomlinson
Can anyone tell me if any of these three thumbnails are of better quality than the others? Look same to me too. Me ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

CFLogin losing login data

2006-12-07 Thread Brent Nicholas
Howdy all - So I thought I had this login thing worked out, but after an hour of pulling out my hair I'm stumped. In short, I can fill out the login form and submit it. It checks the DB just fine and CF logs you in just fine. It's when you reach the bottom of the act_login.cfm template it

RE: Anyone familiar witht the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Snake
These days your better off using AJAX to achieve the result of multiple related select lists. Its going to be a lot faster if your dealing with large amounts of data not to mention reducing loading time. Russ -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: 07

RE: Interpolation

2006-12-07 Thread Brad Wood
Yeah, I can't see a difference. I pulled them all into paint shop pro and blew them way up and they are all almost identical. ~Brad -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 12:38 PM To: CF-Talk Subject: Interpolation Can anyone

RE: Interpolation

2006-12-07 Thread Andy Matthews
Rick... You're probably off on your testing. Your source image is fairly low quality to begin with. A good quality photo of that size should be around 100k or more, this one is only 30k. Look at the area just to the left of her chin and on her hand...you can see some pixelation. Start with the

Re: Retrieve RemoteName

2006-12-07 Thread Keith McGee
I want to thank You guys for your input, but from what I gather from you two the processing time and server strain is not worth it. I think ping –a (ip address) in the command prompt seems to be my best option. Unless I am reading your comments wrong. Keith

Re: Determine database field type

2006-12-07 Thread daniel kessler
I was able to get this solution to work. Thank you everyone for the suggestions. I wish I could've understood a few more of them. Once the data is pulled out of the database, you can get the meta data form the query: GetMetaData( retrieved_data )

ScottishCFUG : Connect Meeting with Rob Gonda on AJAX

2006-12-07 Thread Stephen Moretti
In 45 minutes (8pm GMT) Rob Gonda will be talking to the Scottish ColdFusion User Group about AJAX for ColdFusion Developers. If you're interested in attending please find more details here : http://nil.checksite.co.uk/index.cfm/2006/12/6/Scottish-CFUG--AJAX-Presentation-with-Rob-Gonda

Re: ScottishCFUG : Connect Meeting with Rob Gonda on AJAX

2006-12-07 Thread Sam Roach
Has anyone setup a Coldfusion EDI VAN system? I'm Looking for some information on translations for 850 POs, or any other docs. It would be nice not to have to start from scratch. Any code samples can be zipped and emailed to me directly. Also does anyone have an infomation about becoming a VAN.

Re: Help Looping Through Object with Return Type of Query

2006-12-07 Thread Aaron Roberson
Ian, I am going to go ahead and create a separate thread on ORM to (hopefully) get some input form others. In the meantime, I am going to move forward with the solution you offered and keep coding. Thanks again, Aaron ~|

Re: Where do you buy ColdFusion?

2006-12-07 Thread Dave Lyons
How did Vince ruin it, Dave? His attitude and misrepresentations of his products, just reminds me of a used car salesman. IMO, they need a nicer friendlier face to run that company, his attitude and outbursts don't sit well with a lot of people. Now having outbursts and attitude is fine just

Re: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Raymond Camden
I've seen this multiple times. I think it is Firefox overriding your selected to show the item that was selected _last_ time. To 'slap' FF I simply reload the page and normally change the URL a bit as well. Seems like a harmless bug. On 12/7/06, Philippe Varichon [EMAIL PROTECTED] wrote: I have

Question about Object Relationship Mapping

2006-12-07 Thread Aaron Roberson
I have an OO newbie question about ORM and composition. Is it better to create a has-a relationship between one-to-many objects than to just invoke the objects separately? For instance, I have a product object (bean, DAO, gateway and service) and a product items object (bean, DAO, gateway,

RE: Interpolation

2006-12-07 Thread Bobby Hartsfield
Technically, this would be the highest quality thumbnail Bicubic, Compression 95. (the bottom right one) http://www.opensourcecf.com/imagecfc/thumbnail_test/emily_tn_6.jpg Same image, same format, more bytes. You can also use windows magnifier to zoom way in and compare the pixilation. Oddly

Re: Free Coldfusion Hosting that lets me connect to MS Access Database

2006-12-07 Thread John Miller
Hi: Thanks for the reply. Did u try http://www.hostingatoz.com ?!!! Cause it looks very very cheap. I wonder if it is possible. It offers CCF7 and for 1 year only 8$! How is the service. You know I don't expect a perfect but I need it not to be down all the time or doesn't work fine.

Re: Free Coldfusion Hosting that lets me connect to MS Access Database

2006-12-07 Thread Dan Vega
It always comes back to you get what you pay for. I am not saying to go out and spend 50 bucks a month for hosting but you can defiantly get a reliable host for right around $20 a month. Dan On 12/7/06, John Miller [EMAIL PROTECTED] wrote: Hi: Thanks for the reply. Did u try

RE: Free Coldfusion Hosting that lets me connect to MS Access Database

2006-12-07 Thread Steve LaBadie
I am paying $14.95 from a company out of Philadelphia called www.a-tech.com. They offer all the bells and whistles. I use them for my private clients. Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED]

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Bobby Hartsfield
These days your better off using AJAX to achieve the result of multiple related select lists. Its going to be a lot faster if your dealing with large amounts of data not to mention reducing loading time. E... I don’t think I'd totally agree with that. One load versus a load every time

Re: Hostingatoz anyone?

2006-12-07 Thread John Miller
Hi guys, I'm currently developing a site in CF for a local band. I usually have my standard hosts (in Switzerland, the USA or Australia) but the pricing is really just applicable for my commercial clients. So, I had a look around. GoDaddy is cheap, but gets very mixed (or should we say bad)

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
Yes, I think that’s what I said though. I'm just curious as to where the names come from like that and why. :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: David [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 1:28 PM To:

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
Was that yet another useless bunch of thrown together words from Will Tomlinson? Yes, yes I believe it was. And to think, I actually thought there might be some sort of intelligent response inside when I saw your name... SIKE!! **flips will off** ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby

  1   2   >