Re: Unable to load library cfx_imagecr3

2012-03-20 Thread Joel Black
Did you ever find a solution? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Unable to load library cfx_imagecr3

2012-03-20 Thread Joel Black
Did you ever find a solution? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Wordpress password encryption decrypt with ColdFusion

2011-08-25 Thread Joel Black
I have a website I am building that will be a 2 piece solution. It will have a blog built with Wordpress, but the main website and store will be built with ColdFusion. We want the user to be able to log into the blog, and log into their shopping cart with the same username and password. So

Re: Wordpress password encryption decrypt with ColdFusion

2011-08-25 Thread Joel Black
Billy, thank you for that. Instead of trying to make 1 use the others system, try and make them both use a 3rd system. Im going to look into that. ~| Order the Adobe Coldfusion Anthology now!

Re: wireframe for developers

2011-01-18 Thread Joel Watson
Yeah, clients are always going to want to know what it's going to look like. However, I've found it extremely helpful to segregate the wireframing from the design. In my experience, most clients put the cart before the horse, concentrating way too much (or too early, or both) on the

Re: Excel File Parser for ColdFusion

2010-11-29 Thread Joel Rivera
I have a function that will do just that, its only like 22 lines of code. You have to be careful because if you don't close the resource and the connection you have to restart your coldfusion services... so you may want to throw in a try/catch that does that. With this code you

Re: Excel File Parser for ColdFusion

2010-11-29 Thread Joel Rivera
I have a function that will do just that, its only like 22 lines of code. You have to be careful because if you don't close the resource and the connection you have to restart your coldfusion services... so you may want to throw in a try/catch that does that. With this code you

Re: Excel File Parser for ColdFusion

2010-11-29 Thread Joel Rivera
Hi Dan, We are just converting our cf4.5 code to cf8 and are having issues with closing an excel file. Since cfusion_disable_dbconnections is function is obsolete from cf 8, do you have a code that closes the excel connection? Joel jriv...@volt.com

Re: Excel File Parser for ColdFusion

2010-11-29 Thread Joel Rivera
:):):) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339581

Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Joel Black
cfsavecontent variable=pageTitletitleYour title cfoutput - #Yourvaraible#/cfoutput/title/cfsavecontent cfhtmlhead text=#pageTitle# This will put #pageTitle# in the head of the document. On Thu, Nov 18, 2010 at 4:05 PM, Joel Black j...@blackbeardesign.comwrote

Re: Variable before query, rereplace or javascript to change title

2010-11-19 Thread Joel Black
Gerald, cfhtmlhead text= was the key. I didnt even have to savecontent or anything else. I simply added this to my custom tag and it does just what its supposed to! Never even knew this tag existed, thanks a million! ~|

Variable before query, rereplace or javascript to change title

2010-11-18 Thread Joel Black
I created a custom tag I can reuse, which runs a news manager. I would like to optimize it for search engines, but here is my issue: 1. The query and output are in the custom tag, which goes in the main content of the page 2. I want the news title to be in the page title, but I cant put an

Re: Variable before query, rereplace or javascript to change title

2010-11-18 Thread Joel Black
Wrap the custom tag in a cfsavecontent tag at the top of the page: I gave this a try, but when I wrap it in the savecontent, its not reading the query when I put it in the title ~| Order the Adobe Coldfusion Anthology now!

Re: Variable before query, rereplace or javascript to change title

2010-11-18 Thread Joel Black
Wrap the custom tag in a cfsavecontent tag at the top of the page: I tried to do this, but the query.title doesnt read the query within the save content. I also tried to set a variable within the custom tag and pull that out...but no success there either. What if i set an application

Re: Merge cells using cfspreadsheet

2010-10-23 Thread Joel Watson
Did you look at SpreadsheetMergeCells()? http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6734.html In my own experience, there appear to be some formatting limitations to merged cells, but this method will definitely do the trick of merging cells across

Re: CFSpreadSheet and Custom Colors

2010-10-23 Thread Joel Watson
So my question is, how do I achieve a custom color with RGB values above 127? If memory serves, I _believe_ you can just deduct -256 whenever the value is greater than 127. The result can then be cast as a byte. Of course if my memory is faulty, you could also use: javacast(int,

CFSpreadSheet and Custom Colors

2010-10-21 Thread Joel Watson
I'm trying to create some custom colors to use in my formatting objects for a spreadsheet I'm developing with cfspreadsheet. According to to POI docs, you can do something like this to achieve a custom color: cfscript excel = spreadsheetnew(My Worksheet,false); palette =

Re: totaling items in a recordset

2010-10-20 Thread Joel Black
You can query the database to extract the records you want, then query the query for a total. This example actually gets the total if there are multiple quantity for each item !--- get the totals --- cfquery dbtype=query name=total SELECT SUM(PriceSold*Quantity) AS TheTotal FROM cart /cfquery

Re: Need suggestion to achieve this functionality

2010-10-01 Thread Joel Watson
What is the purpose for putting the tree in the grid? Personally, I would suggest Sencha's (ExtJS) tree. There is a pretty robust OOTB tree with checkbox support. I've used it numerous times in the past, and it's super simple to integrate with CF. Here's the link:

Java Object Web Service Issue

2010-09-22 Thread Joel Spriggs
was starting on the path of a mixed version of Axis, since I've been burned on that path before, but it's not panning out like I had expected. Thanks Joel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

Re: Java Object Web Service Issue

2010-09-22 Thread Joel Spriggs
up and started working fine. Not the first time I've had Axis issues with cf and web services. Probably won't be the last. Thanks, Joel ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion

Call cfabort with java methods

2010-06-02 Thread Joel Watson
This is more a question of curiosity than of anything else...but is there a way in CF8 to call something equivalent to cfabort using the exposed java methods? Or maybe another way, what is it that cfabort is actually doing?

Re: jquery $.ajax - need help with json syntax

2010-04-29 Thread Joel Watson
If dat is already an object literal (as below), why do you need to serialize it? Doesn't the the ajax() data take care of that for you if passing an object? If I use serialize I get nothing passed as a post argument. I am requiring all args and I get the error as normal, ...required but

Re: Why .Net is on its last legs

2010-01-21 Thread Joel Watson
There is plenty of sloppy code in the .Net-i-verse...like you said, it's ultimately about the developer, not the platform. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Coldfusion Encrypt and Insert quotation mark issue

2009-10-15 Thread Joel Black
I am using the encrypt function to encrypt passwords going into and out of my database. I ran into an issue on a password that was one of the characters was encrypted to a , which messed up my insert. #encrypt(form.password,0)# ended up as 19$h#1.y The extra ended my string too

cffile action=write file as XML. Put spacing in lines, but resave file on mac spaces disappear

2009-04-16 Thread Joel Black
I have a very strange issue and need someone to tell me im not crazy. I an querying a database, saving the content , and writing it to an xml file. The formatting is all perfect to the format we had testing the xml file. By the way, flash is reading the XML. The strange part, the

Re: cffile action=write file as XML. Put spacing in lines, but resave file on mac spaces disappear

2009-04-16 Thread Joel Black
Both very good solutions, but neither is working. I tried doing a replace() while processing, but there is nother there to replace. I tried \r\n, \r. Didnt get an error, but got the same outcome. I also tried supressing white space, with processing directive, same outcome. The generated

Re: cffile action=write file as XML. Put spacing in lines, but resave file on mac spaces disappear

2009-04-16 Thread Joel Black
Thanks for the suggestion. I tried it, but got the same outcome. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f

Re: cffile action=write file as XML. Put spacing in lines, but resave file on mac spaces disappear

2009-04-16 Thread Joel Black
Great idea, but could not get a replace() to work. There is nother there to replace? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: 525339 C-A-N-A-D-l-A-N P-H-A-R-M-A-C-Y

2009-03-24 Thread Joel Polsky
Now this is getting too much.. the LIST is being spammed, not just me! And gee.. Why are the links jakerziz and not msn.com or microsoft.com On Mon, Mar 23, 2009 at 9:18 PM, cftalk cft...@efflare.com wrote: About this mailing: You are receiving this e-mail because you subscribed to MSN

Re: php help (i know, offlist if you can... thanks!)

2009-03-10 Thread Joel Polsky
And people think CF is so out dated, and PHP is all that and a bag of chips.. Ha! Not that I have the answer, BUT I'm sure the answer to the problem would have been much easier if it was a CF application... On Tue, Mar 10, 2009 at 6:56 PM, Rastafari rastaf...@gmail.com wrote: NEVERMIND

ColdFusion.Window.create problems..

2009-03-06 Thread Joel Polsky
. Thanks, Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk

Re: ColdFusion.Window.create problems..

2009-03-06 Thread Joel Polsky
. Perhaps somebody else can shed more light on this, but I tried using the same code you have and could not get it to work correctly in IE. After some research I found out about IE's lack of support for event.pageX and event.pageY Steve From: Joel

IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky
to a domain, and the application pool identity is NetworkService or LocalSystem, verify that domain\computer_name$ has Read access to the physical path. Then test these settings again.* * Any ideas of what's wrong?* Thanks! Joel

Re: IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky
: Joel, You can set the scripts directory in the CF Admin (look on the settings tab). The setting goes from the root of your web site... So, for example, You could use a virtual map called cfscripts that points to the /cfide/scripts/ directory - and then add /cfscripts/ to your default script src

Re: IIS6 / CFIDE configuration problems

2009-03-03 Thread Joel Polsky
Thank for the help mark -- I was following a tutorial and it sort of didn't clearly state that there is a application.cfm involved plus a few other files that were critical the page / tutorial functioning. (Thus causing the CFIDE scripts to be loaded.) Appreciate the assistance. Joel On Tue

Re: ColdFusion Hosts

2009-02-18 Thread Joel Polsky
I use Dailyrazor.com for personal stuff and hosting.com for business.. On Wed, Feb 11, 2009 at 10:47 PM, Robert Bailey cft...@tropicalbean.comwrote: I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working with now (remotely) does not have a dev

Re: FireFox getElementById issue

2009-02-18 Thread Joel Polsky
I'm not a javascript expert..but try script = Javascript instead of script = Javascript1.2 On Mon, Feb 16, 2009 at 11:44 AM, Austin Band cfusio...@yahoo.com wrote: Hello, I need a little help. I have javascript that works with IE but not FireFox. The code: script = Javascript1.2

Re: CF Vertical Expanding Menu

2009-02-11 Thread Joel Polsky
?? Hope that was clear... On Tue, Feb 10, 2009 at 3:08 PM, Bryan Hogan bho...@edonor.com wrote: Joel, It can not be done in in CF alone. See http://jquery.bassistance.de/treeview/demo/ -Original Message- From: Joel Polsky [mailto:polskystud...@gmail.com] Sent: Tuesday, February 10

Re: CF Vertical Expanding Menu

2009-02-11 Thread Joel Polsky
. -Original Message- From: Joel Polsky [mailto:polskystud...@gmail.com] Sent: Wednesday, February 11, 2009 12:20 PM To: cf-talk Subject: Re: CF Vertical Expanding Menu Bryan (or anyone) Have an implimentation question regarding the Jquery plug mentions. If I use a cfinclue (or other

CF Vertical Expanding Menu

2009-02-10 Thread Joel Polsky
Hi.. Need a easy solution to create a vertical menu system that expands when clicked. (much like the book mark menu in Firefox) I'm sure this has been asked before, but the reference I've found on the list are dead links. Can it be done in CF? Menu would be like this, MENU 1 +Sub 1a +Sub

Re: CF Vertical Expanding Menu

2009-02-10 Thread Joel Polsky
Hi All.. Thanks for the help.. I think Bryan's link is what I need. The CFMENU seems only to be a fly-out or drop down style. Joel On Tue, Feb 10, 2009 at 3:04 PM, Cutter (CFRelated) cold.fus...@cutterscrossing.com wrote: If you're using ColdFusion 8 then you could just use the cfmenu tag

CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky
the reference mentions to change is not in the file. There must be an easier way! Thanks Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

Re: Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-04 Thread Joel Polsky
Thanks, I am in the group. On Wed, Feb 4, 2009 at 4:51 AM, John Whish john.wh...@crisp-ebusiness.comwrote: Hey Joel, You definitely want to sign up to the Yahoo group. I did do a few posts about the no XML flavour of Fusebox which might be of interest http://www.aliaspooryorik.com/blog

Re: An appealing list of colors?

2009-02-04 Thread Joel Watson
Check out http://kuler.adobe.com/ This should get the inspiration flowing :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky
Developer Co-Author of Learning Ext JS http://www.packtpub.com/learning-ext-js/book _ http://blog.cutterscrossing.com Joel Polsky wrote: On my local machine, I've installed CF8 with the Multi-Server features. I'm trying to set up a 2nd server that will serve up

Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky
Hi Dave. thanks for responding.. No development would be on a local server. a preview site would be on a live server - which is the same server as our current site. My understanding the one of the benefits of multi instance is that I can have a totally fresh CF8 instance with out any of the

Re: CF8 Multi Server Config Help

2009-02-04 Thread Joel Polsky
Dave, what would you recommend? Clean up old mappings Establish a naming convention for the new stuff to avoid conflicts when complete, clean house and remove old mappings Thanks! On Wed, Feb 4, 2009 at 2:21 PM, Dave Watts dwa...@figleaf.com wrote: My understanding the one of the

Site Navigation Restructure Advise...

2009-02-03 Thread Joel Polsky
Help.. Our site is a big plate of spaghetti and navigation. We are working towards redesign -- but in that process have decided that wee need to clean up and organize the site structure and navigation before moving to a new site development. (No, not planning a re-skin but a whole new site

Help with FB Installation...

2009-02-03 Thread Joel Polsky
Hi.. I'm new to FB and am trying to get it configured. I have my IIS pointing to the FBTestRoot Folder so it becomes the web root and have it bound to port 82. http://localhost:82/ FBTestRoot/ FBTestRoot/_Controller FBTestRoot/_Model FBTestRoot/_View FBTestRoot/FB5CORE

Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-03 Thread Joel Polsky
!! Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk

Re: Learning Fusebox 5.5 -- Seeking guidance / mentor

2009-02-03 Thread Joel Polsky
IF they were local to me sure! I'd need online or in person (preferred) Thanks Joel, Try one of Teratech's Fusebox classes. I've taken a couple of them. Greg Luce Luce Consulting Services, Inc. www.luceconsulting.net (863) 273-0289

Re: Using CFloop to pull data from CFC

2009-01-25 Thread Joel Watson
You need to return and loop over result (what is being returned from your component), not the method name. I am having trouble pulling data from a cfc for a pull down menu. Here is the code from the cfm file: div id=sprynavHor style=z-index:100 ul id=MenuBar1

Re: Using CFloop to pull data from CFC

2009-01-25 Thread Joel Watson
That is, returnvariable=result, and then loop over result. You need to return and loop over result (what is being returned from your component), not the method name. ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: Removing spaces from a string?

2009-01-25 Thread Joel Polsky
Trim will only remove leading and trailing spaces. If you want to remove all spaces, Replace(StringVar, , , all) Rob At 08:59 PM 6/28/2003 +0200, cf-t...@sdsolutions.de wrote: This is correct: (and a little old to reply, but wanted to have it correct for future people who read this..

Dreamweaver CRASHES!!!

2009-01-23 Thread Joel Polsky
Help. I have this recently recurring problem and don't know what to do. I use Dreamweaver CS3 for my IDE. When I'm viewing a page in the Design Mode (I usually only do this to locate an element in a large page, so please don't go code-only-postal on me!) When I click on the element, say a

Cfimage captcha wierd error message

2008-11-11 Thread Joel Richards
I'm using cfimage to generate a captcha. My script works great locally, but chokes on my shared hosting account at Hostmysite. I keep getting java.lang.IllegalStateException: Timer already cancelled. errors. Here is a stripped down version of my code: cfCaptchaProxy.cfc: cffunction

Re: ColdFusion not seeing standard Java classes when using CFINVOKE

2008-08-29 Thread Joel Parramore
on a ColdFusion account. :-( Regards, Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com

ColdFusion not seeing standard Java classes when using CFINVOKE

2008-08-28 Thread Joel Parramore
() cfdump var=#prop# If someone has encountered a similar issue and resolved it, I'd appreciate hearing it. Thanks in advance... Regards, Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

ColdFusion not seeing standard Java classes when using CFINVOKE

2008-08-28 Thread Joel Parramore
() cfdump var=#prop# If someone has encountered a similar issue and resolved it, I'd appreciate hearing it. Thanks in advance... Regards, Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release

Passing a List Items' value into a CFDIV

2008-07-14 Thread Joel Polsky
Hi, I have this problem not sure if it's even possible. I have this being generated: li id=TheWidget value=#WidgetID# onclick=javascript:ColdFusion.navigate('widgetDescription.cfm','OfferArea');#WidgetName# - #WidgetID#/li This was also used: li id=TheWidget value=#WidgetID#

Re: after cfimage resize, pulling height and width

2008-06-22 Thread Joel Watson
Unless I'm mistaken, you should be able to call the imageInfo() function on the resized image -- see the docs for full description. After I use cfimage to resize an image, are the attributes for the new height and width available to me to put in the img src to show the newly sized image?

Re: Large Number of CF DSNs and SQL Performance Question

2008-06-10 Thread Joel Stobart
doing dynamic datasources using jdbc connections and a little bit of Java. http://www.petefreitag.com/item/152.cfm has some ideas. I havent tried it but setting up 900 datasources has to be too much of a kind regards, Joel

Re: Large Number of CF DSNs and SQL Performance Question

2008-06-10 Thread Joel Stobart
doing dynamic datasources using jdbc connections and a little bit of Java. http://www.petefreitag.com/item/152.cfm has some ideas. I havent tried it but setting up 900 datasources has to be too much of a kind regards, Joel

Re: Large Number of CF DSNs and SQL Performance Question

2008-06-10 Thread Joel Stobart
I seem to remeber someone doing dynamic datasources using jdbc connections and a little bit of Java. http://www.petefreitag.com/item/152.cfm has some ideas. I havent tried it but setting up 900 datasources has to be too much of a kind regards, Joel

Re: Large Number of CF DSNs and SQL Performance Question

2008-06-10 Thread Joel Stobart
I seem to remeber someone doing dynamic datasources using jdbc connections and a little bit of Java. http://www.petefreitag.com/item/152.cfm has some ideas. I havent tried it but setting up 900 datasources has to be too much of a kind regards, Joel

Re: Best CF editor?

2008-05-30 Thread Joel Watson
At a certain point, this conversation becomes very unproductive. All IDE's have their advantages and disadvantages--so which is better? Well, the answer doesn't really have an answer because all offer different ways of doing things, and each person has their own development needs. So really,

Re: Best CF editor?

2008-05-29 Thread Joel Watson
I use Dreamweaver. I realize that it is not ideal for CF; however, as I pull double-duty as a designer and developer, it makes sense to use Dreamweaver since it is so good at the design side, as well as supporting CF syntax (and a host of others, as already mentioned). So for a developer,

Re: Best CF editor?

2008-05-29 Thread Joel Watson
Yeah, WYSIWYG is more or less unusable for professional web design because doing such on a professional level requires intimate involvement in the code and has to transcend drag-n-drop of simplified components. That being said, I think the WYSIWYG is good enough in Dreamweaver CS3 to more or

Re: CSS Question: Browser Sidebars

2008-04-30 Thread Joel Watson
wandering. Joel Hey all, Check this out HYPERLINK http://dev.avericom.com/http://dev.avericom.com The three bottom sections, portfolio, news and blogs. Position perfectly with a side bar turned on in your browser. With the sidebar turned off, the text shifts to the left. I know

Re: CSS Question: Browser Sidebars

2008-04-30 Thread Joel Watson
Glad to help! Joel Thanks Joel, Your idea worked :) sas -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) Scott-- The problem is that you are absolutely positioning those three divs (they aren't rendering

OutofMemoryError

2008-04-15 Thread Joel Watson
help that you can provide. Joel Watson http://singularityconcepts.com ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k

Re: OutofMemoryError

2008-04-15 Thread Joel Watson
Brian-- Thanks for your quick response. Currently, I am building the XML variable with cfxml, looping over the query for the appropriate nodes. I will definitely check out the links you suggested. Thanks again! Joel Watson http://singularityconcepts.com How are you creating the XML

Re: OutofMemoryError

2008-04-15 Thread Joel Watson
(string, arguments.strIn)) / 119 : cfset variables.joBufferedWriter.newLine() / 120 : /cffunction Now into Java, I am completely out of my knowledge set, so your continuing help would be greatly appreciated! Thanks! Joel Watson How are you creating the XML variable? Becuase if you are building

Re: need an opinion

2008-04-15 Thread Joel Watson
Don-- Honestly, I don't think it's bad at all. If I came across it, I would be confused about the meaning of B T V, but would probably assume that the icon represented something to do with community or something similar to that. My $.02~ My apology for OT. Need an opinion, when you see the

Re: CF8 on a 64-bit Windows 2003 Server

2008-03-19 Thread Joel Stobart
Just to add to that CF8 update 1 is in beta. You can apply to join the beat programme at http://prerelease.adobe.com. Joel Stobart CF8 Updater 1, due out soon, is going to introduce support for CF8 on 64 bit Windows Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Colman, Richard wrote

Re: Visual Ajax IDE?

2008-03-19 Thread Joel Watson
Hi: Dreamweaver is the best html/cfm editor I have ever used. I wonder if there is a good one for AJAX? Do you know one? If it has some visual tools like the ones in DW. Thanks Ali For my money (well, actually, it's absolutely free), you can't beat Aptana. Joel

cfinput=datefield display problems in IE7

2008-03-12 Thread Joel Watson
I have a form with auto-generated datefields that are vertically aligned on top of one another. In IE7, the div holding the javascript generated calendar gets displayed underneath the form field items directly below it. Does anyone have any ideas about how to fix this? I am currently using a

Re: poll - How many MS should it take to load a site's home page?

2008-01-22 Thread Joel Stobart
. It talks about fast, efficient, and seamless code. I think its well worth a read. Cheers, Joel ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

Duplicate attribute error

2007-11-29 Thread Joel Slack
=#URL.forumID# addtoken=no /cfif The error line number marks the last cfinvokeargument tag as the location of the error. The method attribute is only listed once, so I'm not sure why it would say that I've used it multiple times. Any ideas as to what I'm doing wrong? Thanks in advance. Joel

Query help for Spry Dataset

2007-11-18 Thread Joel Watson
that do not are not. I am seriously pulling my hair out on trying to get this query to return all the songs that exist while also showing their status in relation to the selected set list. Any help would be greatly appreciated! Thanks! Joel

Re: Uploading Images

2007-11-06 Thread Joel Watson
Hi guys im trying to create a system where the user has a list of products and they also have the facility of adding a picture of the product to its details. i have got everything working apart from the image upload section. my old upload code requires the user to open a new window and

Yet Another Database Question

2007-10-02 Thread Joel Watson
I am sorry to keep asking these questions, but I have found a lot of helpful suggestions from this community, so this is where I turn! I have a rather involved user survey that collects a variety of information, including age gender, education levels, and so on. On some of the survey

Can I assign a variable [pointer?] to a row of a query

2007-09-18 Thread Joel Stobart
as there is lots of it. Alternatively, anyone know how efficient the query array syntax is queryname.rowname[23984]? does it scan through the data, or is the query stored in a b-tree? is it index on rownumber? kind regards, Joel

Quick Question About Dbase Architecture

2007-09-18 Thread Joel Watson
I have a profile form that has about 7 drop-down menus (marital status, education level, etc.), all required fields. How do most handle this? Do you create a separate table for each collection and then have foreign keys on the profile table, or do you simply pass in literal values to the

Re: Quick Question About Dbase Architecture

2007-09-18 Thread Joel Watson
Joel, if you want to have your database relational to 3rd normal form then yes you should have separate tables for all of your lookups. Databases are designed to work well with joins of that nature and if you build your indexes correctly you should be ok. A lot of people forget to add indexes

One more database question - sorry!

2007-09-18 Thread Joel Watson
to go about this? Thanks to everyone for input! Joel ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs

Re: One more database question - sorry!

2007-09-18 Thread Joel Watson
On 9/18/07, Joel Watson [EMAIL PROTECTED] wrote: My initial thought was to create a table with a row for every hobby/interest item. Then, on the profile table, I was thinking of having a column that would collect a list of comma delimited values from the form, from 1 to the number

Re: One more database question - sorry!

2007-09-18 Thread Joel Watson
basically match up, sequentially, to the key values of the hobby/interest table. - -Is there a better way to go about this? - -Thanks to everyone for input! - -Joel - - So let's say that my form has 20 hobbies/interests. I would be creating 20 entries in this middle table, correct? Is this going

Re: One more database question - sorry!

2007-09-18 Thread Joel Watson
/interest table. -- --Is there a better way to go about this? -- --Thanks to everyone for input! -- --Joel -- -- - -So let's say that my form has 20 hobbies/interests. I would be creating 20 entries in this middle table, correct? Is this going to create a problem if I have hundreds of users? - - Ah

Re: One more database question - sorry!

2007-09-18 Thread Joel Watson
On 9/18/07, Joel Watson [EMAIL PROTECTED] wrote: So let's say that my form has 20 hobbies/interests. I would be creating 20 entries in this middle table, correct? Is this going to create a problem if I have hundreds of users? Since you're only storing profile IDs and hobby IDs

Re: cf8 book by Ben Forta - release date?

2007-09-12 Thread Joel Watson
Book by Ben Forta... and others. ;) Who else helped write it? (haha) ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Re: cfform stuck on loading 40%

2007-08-24 Thread Joel Watson
I believe the question related to the CPU usage at the time - if you watch the CPU stats, what happens when a flash form is requested? -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ I don't know that this will be a lot of help, but I received that error

Re: Update Flash Form Grid with Javascript

2007-08-24 Thread Joel Watson
refresh the datagrid data without page reload? BTW, I am using remote cfcs for both the db updating and query. Thanks for everyone's help. Joel Anybody have any ideas on this? ~| Get the answers you are looking

Update Flash Form Grid with Javascript

2007-08-23 Thread Joel Watson
the datagrid data without page reload? BTW, I am using remote cfcs for both the db updating and query. Thanks for everyone's help. Joel ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features

Re: slideshow application

2007-08-16 Thread Joel Watson
I have the need for a slideshow application. My needs are pretty basic. It needs to: Have the ability to have n number of images. Have the ability to have captions that will go with said images. Have the ability for the end-user to administrate, create new slideshows, upload

Re: Data Validation Resources

2007-08-14 Thread Joel Watson
usability and security (that is, you don't want bogus registrations)? And again, I'm looking more for methodological ideas, not necessarily regex's for email and website addresses. Thanks Joel Well, the RegEx list archives might be a decent place to start. If you could tell us more about what

Data Validation Resources

2007-08-13 Thread Joel Watson
Does anybody have or know of a good resource for validation routines on data, specifically form data? What I'm looking for is an outline of the various checks that one would perform on data to ensure it is valid, in the right format, etc. I realize this request is extremely broad, so my

Re: cfoutput and groups

2007-08-06 Thread Joel Watson
Hi there I have a query where I am getting information from 2 tables. Basically a category table i.e. categories are face, body breasts Users have entered details of cosmetic enhancementprocedures according to whether the procedure is for face, body or breasts, e.g. face has face

CF 8 Lic and VPS

2007-08-02 Thread Joel
Hi Guys, Can anyone tell me what is required with regards to CF Lic when it comes to VPS. If I run 4 VPS on a physical server do I need 1 CF Lic or do I need 4 CF Lic ? Thanks in advance Joel ~| Create robust

  1   2   3   4   >