Re: NumberFormat , Help

2005-07-26 Thread Barney Boisvert
I don't think you can do it in one step. However, this should work: #replace(numberFormat(myNumber, 000.00), ., )# cheers, barneyb On 7/26/05, Aldon Moore [EMAIL PROTECTED] wrote: I have a dollar value of ($73.60)thats stored in the database as 73.6. I would like to format this

Re: Eclipse Unicode BOM

2005-07-26 Thread Paul Hastings
Tarantor wrote: But do you know how can I create Unicode (utf-8) temples with BOM support on Eclipse? a BOM isn't strictly required for utf-8, so many s/w won't add one or worse, honor them. while eclipse won't add one for you, it does honor one that already exists. it also correctly behaves

Re: NumberFormat , Help

2005-07-26 Thread Aaron DC
Cheap and nasty: right( YourValue * 1000, 12) HTH Aaron Aldon Moore wrote: I have a dollar value of ($73.60)thats stored in the database as 73.6. I would like to format this number and display it as a twelve digits (0007360). Similarly if the value is 12 the format shoshould

Re: cfschedule ghost threads

2005-07-26 Thread Paul Stewart
I also got this problem with BlueDragon Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Micha Schopman [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, July 25, 2005 3:49 PM Subject: cfschedule ghost threads I hoped

RE: cfschedule ghost threads

2005-07-26 Thread Micha Schopman
Paul, Thanks for the valuable info, I was about to check it out with BlueDragon. Seems a different platform should handle this job. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: CFMX, Video resizing/repurposing

2005-07-26 Thread Rich Wild
Hmm - I've managed to instatiate the object and get it to resize video, but adding resize filters and the suchlike seems to corrupt the output file. If anyone has any pointers they can give me that would be great! Rich initial rough (want to get it working before make it purty) code: cfobject

RE: cfif and cfdocument oddity....

2005-07-26 Thread Dave.Phillips
Tony, Here's what you can do: cfif (isDefined(url.format) and url.format is pdf) cfdocument format=PDF CFINCLUDE TEMPLATE=Some code, and eventually the report to show.cfm /cfdocument CFELSE CFINCLUDE TEMPLATE=Some code, and eventually the report to show.cfm /cfif

Re: cfschedule ghost threads

2005-07-26 Thread Dave Phipps
Have you tried updating the schedule so that the start and end dates are in the past? I have a similar system for mass mailing that I am just putting together and I seem to have the same scheduler problem. I have tried using cfschedule to update the task but I am not sure that even this is

Re: cfschedule ghost threads

2005-07-26 Thread Dave Phipps
Have you tried updating the schedule so that the start and end dates are in the past? I have a similar system for mass mailing that I am just putting together and I seem to have the same scheduler problem. I have tried using cfschedule to update the task but I am not sure that even this is

Re: farcry?

2005-07-26 Thread Geoff Bowers
On 7/20/05, DRE [EMAIL PROTECTED] wrote: I'm considering the farcry cms for a project but it appears that there are only 3 plugins for the software and the site seems decidedly barren. Specifically, I need a polling/survey tool to go along with it. Theres a helluva lot comes out of the box

RE: cfschedule ghost threads

2005-07-26 Thread Micha Schopman
Dave, Not tried that, but that would also result in scheduled tags being available forever. Even though the date is set in history, the thread would be still registered within the system. We have settled with the ghost threads for the time being because we already made the decision for a

Macromedia Web site and cfschedule problems

2005-07-26 Thread Dave Phipps
Hi All, It seems that Macromedia's web site is struggling at the moment. I was trying to look for info in the CF knowledgebase about the cfschedule problem and I get a lot of Page Does Not Exist errors. Is anyone else having any luck search for answers? Why have Macromedia left the cfschedule

RE: Tool for monitoring directory/sending notification...

2005-07-26 Thread Dan G. Switzer, II
Michael, And this is on MX? This sounds like a CF 5 issue where the mail spool gets overloaded. CFMX 6.1 the error message in the mail.log that seemed to cause the root problem was: Error,jrpp-174,07/25/05,01:39:34,,An exception occurred when setting up mail server parameters. This exception

RE: Macromedia Web site and cfschedule problems

2005-07-26 Thread Dave.Phillips
Dave, The setting the date in history could work for you, but I would have the same concerns Micha had. What you could do, though, is write a weekly routine that deleted tasks in the past, and schedule a CF service restart in the middle of the night. That would clear them out weekly and keep

RE: Tool for monitoring directory/sending notification...

2005-07-26 Thread Dave.Phillips
Dan, Do you have any scheduled tasks that run around 1:29 or 1:38am ? Have you looked into those? They could be your culprit. Just a thought. Dave -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 7:56 AM To: CF-Talk Subject: RE: Tool

Re: (admin) thread sorting

2005-07-26 Thread Thomas Chiverton
On Tuesday 26 July 2005 03:15, Michael Dinowitz wrote: I just added in a thread sorting ability per thread. This will allow for a tree view (standard), oldest first and newest first. Would people prefer a I think it would be best to have a per-user default (tree,old,new) and then to be able to

challenged by cfoutput group=

2005-07-26 Thread Tim Laureska
I have a query that pulls member information, including typical info such a name, address, etc - each member can belong to one or more clubs and can also be in one or more volunteer capacities There are 5 tables: Members - basic member info Clubs - list of clubs Volunteer categories - list of

Other support lists for CF Developers

2005-07-26 Thread Dave.Phillips
Hey folks, Anyone know of good support mailing lists for: SQL Javascript CSS ? I know we have these on houseoffusion, but honestly, they aren't near as well-visited as CF-Talk is. I'm looking for lists with the same frequency of posts as CF-Talk. Any thoughts anyone? Dave

Re: cfif and cfdocument oddity....

2005-07-26 Thread Tony Weeg
ok thanks. On 7/26/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Tony, Here's what you can do: cfif (isDefined(url.format) and url.format is pdf) cfdocument format=PDF CFINCLUDE TEMPLATE=Some code, and eventually the report to show.cfm /cfdocument CFELSE

Re: cfif and cfdocument oddity....

2005-07-26 Thread Tony Weeg
this is dumb isnt it? i mean, if cfif (isDefined(url.format) and url.format is pdf) cfdocument format=PDF /cfif fuck me here. This below bombs cfif (isDefined(url.format) and url.format is pdf) /cfdocument /cfif this doesnt show EITHER cfdocument tag, then why would it

Re: cfif and cfdocument oddity....

2005-07-26 Thread Kevin Bridges
It's simple ... because you are supposed to follow nesting orders dictated by CF or CF will generate an error. That is how CF works. Not to mention the headache you cause other developers that one day may need to work with your code. Breaking it up as you have it below creates cluter. Tony

Re: cfif and cfdocument oddity....

2005-07-26 Thread Kevin Bridges
It's simple ... because you are supposed to follow nesting orders dictated by CF or CF will generate an error. That is how CF works. Your asking a question equivalent to why can't a human being walk through a brick wall. Not to mention the headache you cause other developers that one day may

RE: cfif and cfdocument oddity....

2005-07-26 Thread Dave.Phillips
I think your response is too harsh and will keep people from posting questions because they are afraid of responses like this. Especially the obscene word inserted into the quote. Next time, please think before you respond, and take your anger over working with bad code out on someone offlist

Re: cfif and cfdocument oddity....

2005-07-26 Thread Kevin Bridges
I agree and my apologies ... The cusiing in the previous post set me on edge and I apologize. Thank you for the correction Regards, Kevin Bridges [EMAIL PROTECTED] wrote: I think your response is too harsh and will keep people from posting questions because they are afraid of responses like

Re: cfif and cfdocument oddity....

2005-07-26 Thread Tony Weeg
thank you dave. kevin keep the childish posts for your ddr league. thanks. tony On 7/26/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I think your response is too harsh and will keep people from posting questions because they are afraid of responses like this. Especially the obscene word

RE: Macromedia Web site and cfschedule problems

2005-07-26 Thread Micha Schopman
Dave, Engineers here created the same solution in only 1 hour in ASP.NET, just to give you an idea of the time involved. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: Macromedia Web site and cfschedule problems

2005-07-26 Thread Dave.Phillips
Micha, LOL. It would have taken me 2 weeks probably in ASP. Never worked with it and don't have a clue of the syntax, functions, etc. I'm glad to hear you've got it licked! I think I've modified ONE ASP module in my past 7+ years as a CF developer. That's about it for my exposure to ASP. :)

Re: NumberFormat , Help

2005-07-26 Thread S . Isaac Dealey
I have a dollar value of ($73.60)thats stored in the database as 73.6. I would like to format this number and display it as a twelve digits (0007360). Similarly if the value is 12 the format shoshould be (0001200) Any help would be appreciated.

Re: Macromedia Web site and cfschedule problems

2005-07-26 Thread Dave Phipps
Micha, Glad to hear you were able to solve the problem. As nice as asp might be, our servers are all linux running CFMX so apart from not knowing any asp my server admin won't install asp onto a linux box. I'll just have to think around the cfschedule problem. Restarting cfmx is not really an

Re: Other support lists for CF Developers

2005-07-26 Thread Rey Bango
Dave, check out www.sitepoint.com. Their forums are great for those types of topics. Rey... [EMAIL PROTECTED] wrote: Hey folks, Anyone know of good support mailing lists for: SQL Javascript CSS ? I know we have these on houseoffusion, but honestly, they aren't near as

RE: Macromedia Web site and cfschedule problems

2005-07-26 Thread Micha Schopman
I don't know if the issues affect the Linux version also, but regarding ASP.NET you might take a look at Mono, it is an open source project trying to duplicate as much as possible from the .NET framework. We played with it in a staging environment, and it looked very good. www.mono-project.com

RE: NumberFormat , Help

2005-07-26 Thread Mark A Kruger
Isaac, Wouldn't this work as well? #numberformat(var * 100, )# -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 9:40 AM To: CF-Talk Subject: Re: NumberFormat , Help I have a dollar value of ($73.60)thats stored in the

RE: Other support lists for CF Developers

2005-07-26 Thread Dave.Phillips
Thanks Rey. They have a lot of forums, which is a great resource, but I don't see any 'mailing lists'. Am I missing them? Dave -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 10:57 AM To: CF-Talk Subject: Re: Other support lists for CF

Re: Other support lists for CF Developers

2005-07-26 Thread Rey Bango
Sorry Dave. I was offerring that as an alternative source. I should've made that clearer. Rey... [EMAIL PROTECTED] wrote: Thanks Rey. They have a lot of forums, which is a great resource, but I don't see any 'mailing lists'. Am I missing them? Dave -Original Message- From:

Re: (admin) thread sorting

2005-07-26 Thread Michael Dinowitz
Further investigation has shown that the tree view caching is so far superior to the other sorting methods that I'm going to leave tree as default until I can optimize the others. On Tuesday 26 July 2005 03:15, Michael Dinowitz wrote: I just added in a thread sorting ability per thread. This

Re: Other support lists for CF Developers

2005-07-26 Thread Kevin Bridges
Take a look at some of the lists at evolt.org -- http://lists.evolt.org/ -- thelist is a good one for just about any development question. Rey Bango wrote: Sorry Dave. I was offerring that as an alternative source. I should've made that clearer. Rey... [EMAIL PROTECTED] wrote: Thanks

Re: Other support lists for CF Developers

2005-07-26 Thread Kevin Aebig
Not to sound like a putz, but I tried alot of different CF resources when I first started and the houseOffusion lists are easily the best. Of course, Chattyfig over at Figleaf doesn't have a CF list, but if they did, I'm sure it would be the same caliber as Flashcoders... hinthint =] Kevin

RE: Other support lists for CF Developers

2005-07-26 Thread Jim Davis
[EMAIL PROTECTED] wrote: Hey folks, Anyone know of good support mailing lists for: SQL Javascript CSS Usenet groups (there are several covering each of these) are very active. If your ISP doesn't provide UseNet access (most do tho') the Microsoft usenet server

Simple query question

2005-07-26 Thread Merrill, Jason
How do I implement a simple query to search all the field values of a table for a value - basically, I need to check to see if the user name the person entered already exists in the database. Something like a SELECT WHERE and then a cfif value exists from the query return? Thanks. Jason

RE: NumberFormat , Help

2005-07-26 Thread S . Isaac Dealey
Isaac, Wouldn't this work as well? #numberformat(var * 100, )# It would... I used repeatString(0,12) for legibility -- and because if the length of the string changes, it's easier to change 12 to another number than to count the number of zeroes. 6 of one 1/2 doz. of the other

Re: challenged by cfoutput group=

2005-07-26 Thread Barney Boisvert
Can you provide a simple example recordset that your query might generate? Something like this? id,name,clubId,club,category 1,barney,1,a_club,road work 1,barney,1,a_club,gardening 1,barney,2,b_club,road work 1,barney,2,b_club,gardening cheers, barneyb On 7/26/05, Tim Laureska [EMAIL

Re: Other support lists for CF Developers

2005-07-26 Thread Aaron Rouse
Used to be a Yahoo group(mailing list) called JS-Jive that was pretty good. No idea if it is still around these days or not. On 7/26/05, Jim Davis [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hey folks, Anyone know of good support mailing lists for: SQL Javascript

RE: Simple query question

2005-07-26 Thread Dave.Phillips
Do you mean this: CFSET FieldList = field1,field2,field3,field4 !--- you could get this dynamically if you want --- CFSET ValueToSearch = hello cfquery name=Lookup datsource=yourdatasource SELECT #fieldlist# FROM yourtable WHERE CFLOOP LIST=#fieldlist#

Re: CFCHART - No Chart :-(

2005-07-26 Thread Mauricio Giraldo
9. Sacrifice a young chicken (a cooked one is OK) and drip the leavings into the casing interior. Spit some tequila in to follow it while giving thanks to Jo Bu I almost had to got through step 9. This particular installation is a PITA because it is an IIS-based installation,

SOT: Blackberry 101 for developers

2005-07-26 Thread Ray Champagne
Hey all: So, here's a question for some of you more savvy developers out there: how to I program a corporate web site to be viewable by a Blackberry? We have a client who's salesforce just got issued Blackberrys. They already have a web site with a form that they'd like to access via the

RE: Blackberry 101 for developers

2005-07-26 Thread Paul Vernon
XHTML + CSS is the way to go... I've done this on sites that I can now access on my mobile phone and that has a tiny screen... A Blackberry device should be no problems... Paul ~| Logware (www.logware.us): a new and convenient

Document Problem in Netscape

2005-07-26 Thread Jesse Wilkinson
I am trying to open files in a remote directory in a ColdFusion application. The command is a href=#File_Loc# target=_new#File_Title#/a, where the File_Loc variable is a complete path (eg, \\Ric2s-m3\DashboardDocs\Dash Overview.ppt). This works fine in Explorer, but Netscape adds the web

Re: (admin) thread sorting

2005-07-26 Thread Dana
is this something we can set per thread or that is set per user? Just wondering. I appreciate the change. While you are working on HoF I tried to sign up for the Server list and finally gave up... Dana On 7/26/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Further investigation has shown

Re: Document Problem in Netscape

2005-07-26 Thread JediHomer
try file://#File_Loc# On 26/07/05, Jesse Wilkinson [EMAIL PROTECTED] wrote: I am trying to open files in a remote directory in a ColdFusion application. The command is a href=#File_Loc# target=_new#File_Title#/a, where the File_Loc variable is a complete path (eg,

Re: Blackberry 101 for developers

2005-07-26 Thread Ray Champagne
any online resouces that you use that you'd recommend to get me started? Paul Vernon wrote: XHTML + CSS is the way to go... I've done this on sites that I can now access on my mobile phone and that has a tiny screen... A Blackberry device should be no problems... Paul

Re: CFCHART - No Chart :-(

2005-07-26 Thread James Holmes
You should try getting CFCHART and other Java imaging solutions like Alagad to work together on the same headless UNIX CF machine some time. On 7/27/05, Mauricio Giraldo [EMAIL PROTECTED] wrote: 9. Sacrifice a young chicken (a cooked one is OK) and drip the leavings into the casing

RE: Blackberry 101 for developers

2005-07-26 Thread CollicuttL
There is a good article I just read that mentions how to do this (at a high level only) with some new features in CF7. http://www.fusionauthority.com/Article.cfm/ArticleID:4430 Lorne -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: July 26, 2005 09:57 To: CF-Talk

Re: Blackberry 101 for developers

2005-07-26 Thread Kevin Bridges
Start with the document structure below (strict xhtml compliance) and use the validator at http://validator.w3.org/ as you develop. If you make a change and validate immediately after you will be able to see useful messages from the w3c explaining how you need to alter your design. !DOCTYPE

CFMX7 presentation

2005-07-26 Thread Asim Manzur
A quick question. does anyone knows any nice presentation (ppt etc) on the web, regarding the CFMX7 for non-technical people. Regards, ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: Blackberry 101 for developers

2005-07-26 Thread Kevin Bridges
Also look at http://www.tinkertech.net/tutor/xhtml/ Ray Champagne wrote: any online resouces that you use that you'd recommend to get me started? Paul Vernon wrote: XHTML + CSS is the way to go... I've done this on sites that I can now access on my mobile phone and that has a tiny screen...

Re: Blackberry 101 for developers

2005-07-26 Thread Ray Champagne
Okay, cool, this is great stuff. Now, is there a preferred emulator (I just downloaded one from blackberry.com) that I can test this with, since I personally don't have one? Kevin Bridges wrote: Start with the document structure below (strict xhtml compliance) and use the validator at

Re: Blackberry 101 for developers

2005-07-26 Thread Kevin Bridges
There is an area at http://www.blackberry.net/developers/index.shtml I'd recommend looking at http://www.blackberry.net/developers/started/index.shtml and http://www.blackberry.net/developers/downloads/simulators/index.shtml Ray Champagne wrote: Okay, cool, this is great stuff. Now, is

Re: (admin) thread sorting

2005-07-26 Thread Jochem van Dieten
Michael Dinowitz wrote: Further investigation has shown that the tree view caching is so far superior to the other sorting methods that I'm going to leave tree as default until I can optimize the others. Implement it in Javascript and have the browser do the other sort orders. I have

Re: CFMX7 presentation

2005-07-26 Thread Dave Carabetta
On 7/26/05, Asim Manzur [EMAIL PROTECTED] wrote: A quick question. does anyone knows any nice presentation (ppt etc) on the web, regarding the CFMX7 for non-technical people. http://macromedia.com/software/coldfusion/ There are some very nice Breeze overviews of the product. Regards, Dave.

Re: (admin) thread sorting

2005-07-26 Thread Michael Dinowitz
Do you have a good script for this that is cross browser? Michael Dinowitz wrote: Further investigation has shown that the tree view caching is so far superior to the other sorting methods that I'm going to leave tree as default until I can optimize the others. Implement it in

Re: Other support lists for CF Developers

2005-07-26 Thread Jerry Johnson
I religiously read http://www.css-discuss.org/mailman/listinfo/css-d On 7/26/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey folks, Anyone know of good support mailing lists for: SQL Javascript CSS ~| Logware

Binds and CFGRIDS in Flash Forms

2005-07-26 Thread Chad McCue
A few questions: 1) Is there a way to use binds and CFIF together? Example, I have a CFGRID being populated by a query, when I select a customer from the grid it populates the edit fields below the grid with the selected customers information. I have some radio buttons assocated to a fiew

RE: Other support lists for CF Developers

2005-07-26 Thread Dave.Phillips
Thanks everyone! -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 1:41 PM To: CF-Talk Subject: Re: Other support lists for CF Developers I religiously read http://www.css-discuss.org/mailman/listinfo/css-d On 7/26/05, [EMAIL PROTECTED]

Need help with XML to JavaScript

2005-07-26 Thread Mark Warrick
Hello, Been a while since I've asked for help so hopefully this plea works! Basically, I want to provide data from my database to other websites in the form of simple cut and paste JavaScript code which other webmasters can include in their plain HTML websites. It's a simple data structure -

Re: (admin) thread sorting

2005-07-26 Thread Jochem van Dieten
Michael Dinowitz wrote: Do you have a good script for this that is cross browser? I am fairly certain that my scripts are not cross browser :) Jochem ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

Flash Remoting / IIS / JRUN / CF7

2005-07-26 Thread jonese
Ok here's the setup. We have CF7 running as a JRUN instance and have integrated Flex. I spent a better part of the morning getting the flash remoting services to answer requests and I'm down to a final (hopefully) error log entry to get it running 100% My error log shows: [Flash Remoting

Datasources

2005-07-26 Thread Nicole Lane
Hi: I have a client who has a web server with one provider and a SQL Server at another provider. The web provider is so far refusing to create a datasource pointing to the external server saying that it would create a security risk on their shared server. Is this a legitimate concern?

Frameworks for simple web sites

2005-07-26 Thread Connie DeCinko
Now that I've had the opportunity to take a closer look at Plum, I can see that it is a very powerful and good code generator/framework for ColdFusion apps. However, for fairly simple sites, it seems to be overkill. I could be wrong. What would you recommend for a simple site that's just a

Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Claremont, Timothy
Can someone tell me how to make this: WHERE PositionName LIKE '%#TextToSearch#%' Case insensitive, so it matches both upper and lower case instances? CF7, Win2K3 TIA, Tim ** This email and any files transmitted with it are

Re: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Kevin Bridges
where upper(PositionName) like '%#ucase(TextToSearch)#%' or you could use lower and lcase Claremont, Timothy wrote: Can someone tell me how to make this: WHERE PositionName LIKE '%#TextToSearch#%' Case insensitive, so it matches both upper and lower case instances? CF7, Win2K3 TIA, Tim

RE: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Ian Skinner
WHERE UPPER(PositionName) LIKE '%#UCASE(TextToSearch)#%' Or if you preffer: WHERE LOWER(PositionName) LIKE '%#LCASE(TextToSearch)#%' UPPER() and LOWER() are the Oracle case functions, not exactly sure what the SQL Server equivilents are, but I'm sure they would be easy to find.

RE: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Matt Osbun
How about something like this: WHERE upper(PositionName) LIKE cfqueryparam value=%#Ucase(TextToSearch)#% Matt Osbun Web Developer Health Systems, International -Original Message- From: Claremont, Timothy [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 2:05 PM To: CF-Talk

Re: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Bryan Stevenson
Can someone tell me how to make this: WHERE PositionName LIKE '%#TextToSearch#%' Case insensitive, so it matches both upper and lower case instances? CF7, Win2K3 TIA, Tim WHERE UCase(PositionName) LIKE '%#UCase(TextToSearch)#%' Points to note: -not all DBs are case sensitive in the

RE: Datasources

2005-07-26 Thread Dave.Phillips
Nicole, I'm not a security expert but I don't think it's a security risk outside of any other datasource creation. It's not a security risk for them anyway, not as far as I can see. Sounds to me like they just want you to host your SQL server database with them and they're trying to force

RE: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Dave.Phillips
Couldn't you create a new index with the upper function? Wouldn't that solve the index 'blow out' issue? Dave -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 3:13 PM To: CF-Talk Subject: Re: Making CFQUERY Where Clause case insensitive

RE: NumberFormat , Help

2005-07-26 Thread Aldon
Thanks Guy's Al -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 12:09 PM To: CF-Talk Subject: RE: NumberFormat , Help Isaac, Wouldn't this work as well? #numberformat(var * 100, )# It would... I used repeatString(0,12) for

Re: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: Couldn't you create a new index with the upper function? Wouldn't that solve the index 'blow out' issue? You can, but don't bother. Unanchored LIKE patterns (starting with a wildcard) aren't good index candidates anyway. Jochem

RE: Making CFQUERY Where Clause case insensitive

2005-07-26 Thread Dave.Phillips
Yeah, good point. :) Dave -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 3:24 PM To: CF-Talk Subject: Re: Making CFQUERY Where Clause case insensitive [EMAIL PROTECTED] wrote: Couldn't you create a new index with the upper function?

Help with determining page count in a document

2005-07-26 Thread Ciliotta, Mario
Hi, Does anyone know of a way that I can get the page count of an uploaded document. I need to have my users upload either a Word, PPT or Excel document and I need to compute the number pages. I remembered that there used to be a site call CFCOMET but the site seems to be gone. Mario

Re: Frameworks for simple web sites

2005-07-26 Thread Barney Boisvert
Check out Fusebox. It looks somewhat daunting, but it's pretty straightforward, and especially well suited to simple apps that are primarily concerned with rendering HTML user interfaces. http://www.fusebox.org/ cheers, barneyb On 7/26/05, Connie DeCinko [EMAIL PROTECTED] wrote: Now that I've

Re: Frameworks for simple web sites

2005-07-26 Thread S . Isaac Dealey
Now that I've had the opportunity to take a closer look at Plum, I can see that it is a very powerful and good code generator/framework for ColdFusion apps. However, for fairly simple sites, it seems to be overkill. I could be wrong. What would you recommend for a simple site that's

RE: Frameworks for simple web sites

2005-07-26 Thread Damien McKenna
What would you recommend for a simple site that's just a step beyond simple HTML? I use Fusebox for all our sites, big or small, the overhead is definitely worth it even for small sites. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ -

Re: Flash Remoting / IIS / JRUN / CF7

2005-07-26 Thread Adrocknaphobia
Ensure that the flash gateway ear is not deployed to jrun in addition to cfmx 7. They will conflict. In the JRun Admin click on the instance name. If you see an entry for Flash Remoting, delete it. You don't want to add a mapping, you want to add a Custom Tag path to your CFCs. -Adam On

Re: Frameworks for simple web sites

2005-07-26 Thread Adrocknaphobia
I use fusebox everyday, but I dont think it's well suited for web sites. It's an application framework. -Adam On 7/26/05, Damien McKenna [EMAIL PROTECTED] wrote: What would you recommend for a simple site that's just a step beyond simple HTML? I use Fusebox for all our sites, big or

Re: Need help with XML to JavaScript

2005-07-26 Thread John Dowdell
Mark Warrick wrote: I want to provide data from my database to other websites in the form of simple cut and paste JavaScript code which other webmasters can include in their plain HTML websites. Well, the way commonly used in browsers now to request remote XML data without a page-refresh is

Re: Datasources

2005-07-26 Thread S . Isaac Dealey
Hi: I have a client who has a web server with one provider and a SQL Server at another provider. The web provider is so far refusing to create a datasource pointing to the external server saying that it would create a security risk on their shared server. Is this a legitimate concern?

RE: Need help with XML to JavaScript

2005-07-26 Thread Warrick, Mark
That complex of a job, huh? Ideally I'd just like to learn how to do it on my own so any links to resources, how-tos, etc would be great. My other option is to just host a subdomain for every other website that wants to use our data. I already know how to do that. But what I really would like

Re: CFMX, Video resizing/repurposing

2005-07-26 Thread Qasim Rasheed
Although I might be way off-topic, have you thought about using Java instead of a COM object. My first google search for Java Media returned me this article which might help you. http://www.javaworld.com/javaworld/jw-06-1998/jw-06-media.html HTH Qasim On 7/26/05, Rich Wild [EMAIL PROTECTED]

Re: Frameworks for simple web sites

2005-07-26 Thread Barney Boisvert
I don't want to get into a huge debate about it, but FB is really a pretty bad application framework. It's very well suited to markup-based UIs (XHTML, in particular), but for actually implementing application logic, it's got some serious shortcomings. Model-Glue or Mach-II is much better suited

Re: SOT: Blackberry 101 for developers

2005-07-26 Thread Rick Mason
Ray, I have a friend who has done some Blackberry apps using WML. I've seen some of his apps that use forms to submit info to a CF backend. If I am not mistaken Ben Forta even has a book out on WML. The other alternative on the newer Blackberries is Java. Rick Mason KnowledgeWatch Got news?

Re: SOT: Blackberry 101 for developers

2005-07-26 Thread Ray Champagne
Cool! My big question is, if I'm just submitting a simple form whose fields are just going to be emailed from the web server, is there any reason that I'd have to worry about other than display? I mean, it seems like once the info is pushed off the Blackberry, it should just be taken care of

Re: Frameworks for simple web sites

2005-07-26 Thread Adrocknaphobia
Well Barney its pretty much a given that if you ever say _anything_ negative about _any_ framework well it's gonna be a huge debate. Although I'm not trying to start one seriously... I'm not. However, I will tell you why I _use_ fusebox everyday. I used to despise fuseBox, then I had to

Re: Frameworks for simple web sites

2005-07-26 Thread Robert Munn
I like FB with a CFC layer for application logic for small sites. It provides enough structure without being overkill. OO frameworks are fine for even small sites once you become familiar with them, but there is a bit of a learning curve to OO programming. I don't want to get into a huge

Re: Datasources

2005-07-26 Thread Adrocknaphobia
Isaac is right. It's the DB provider who would be at risk. Normally databases are secured behind firewalls and not accessible online. The web server should be the only system accessible online, and that web server communicates with the private database. Sounds like your web provider is just being

RE: Frameworks for simple web sites

2005-07-26 Thread Andrew Tyrone
It sounds like you just need a simple CMS, like Contribute. I am not sure why you'd want to delve into a framework you've never used before for a simple site that sounds as if it won't require a lot of time or effort. I'd suggest sticking with however you currently organize your code (unless

Re: SOT: Blackberry 101 for developers

2005-07-26 Thread Adrocknaphobia
Ray, Most BlackBerry's have HTML browsers. Albeit usually in monochrome, but HTML browsers none-the-less. So the simple answer could be to just watch your page widths and d/l times. -Adam On 7/26/05, Ray Champagne [EMAIL PROTECTED] wrote: Cool! My big question is, if I'm just submitting a

Simple filename parsing

2005-07-26 Thread Tarantor
Hi, I have a page with links to some PDF files and I need to parse these PDF file names, explanation and date for required files. Here are some sample links for files. table tr tda href=http://myserver.net:8080/export/program-4c8f1322-c380-a045-1eba-f650a6

Re: Datasources

2005-07-26 Thread Jochem van Dieten
Nicole Lane wrote: I have a client who has a web server with one provider and a SQL Server at another provider. The web provider is so far refusing to create a datasource pointing to the external server saying that it would create a security risk on their shared server. Is this a

ot: 360 degree photos

2005-07-26 Thread dave
anyone know of a good example of a product page were you can view the product all the way around? I dont care what they use to do it, I just need an example ~Dave the disruptor~ A criminal is a person with predatory instincts who has not sufficient capital to form a corporation.

Re: Frameworks for simple web sites

2005-07-26 Thread Jeff Fleitz
Hi Connie, Plum is overkill for this, only by the fact that it will generate more functionality than you need initially, probably. But you can just easily ignore the functionality you don't need by simply removing the links in the navbar (leave the content on your development machine so you can

  1   2   >