HomeSite+ and Perl Files

2005-07-14 Thread Jim McAtee
When I attempt to open a Perl file (with .pl or .pm extension) in HomeSite+ I first get a dialog box stating that the file isn't a recognized text document. After I tell HomeSite to open it any way, the color coding is correct. In the File Settings, Extension Manager I have these extensions e

Removing pound signs from a string

2005-07-14 Thread Karl Simanonok
Well as a last resort I thought I could put the offending code in a CFTRY and just lose a few records once in a while, but trying to remove a # sign from a string will even bomb a CFTRY! Somehow I have to be able to get past this obstacle. Barney B. suggested this regular expression but it doe

Re: Delivery barcode

2005-07-14 Thread James Holmes
BarcodeZone is, of course, Windows only (why write in Java and expose yourself to far more customers when you can just rely on Windows?). Thanks for the bbq link - we are looking at a barcode project and this may become rather useful. On 7/15/05, Ali Awan <[EMAIL PROTECTED]> wrote: > >Does anyo

New JRun updater

2005-07-14 Thread James Holmes
The new macromedia security bulletin http://www.macromedia.com/go/mpsb05-05 states that the problem is with JRun 4.0, then lists install instructions for CF Enterprise. Does thia apply to standalone CF Enterprise installs or only deployments under JRun? ~~

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Great, that works fine. I had tried it earlier i think (maybe incorrectly) but that was when i had the third column which had an identity with increment. Maybe that's why i couldn't get it to work. :) Right, i'm off to bed (1.14am here). Only so much boring Live Big Brother i can stand to

RE: 2 Primary Keys

2005-07-14 Thread Ian Skinner
In table design, highlight all fields for the key and click the key button. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA "C code. C code run. Run code run. Please!" - Cynthia Dunning -Original Message- From: Saturday (Stuart Kidd) [ma

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Just one other thing however, how do i create the compound key via Enterprise Manager, can I do it through that? I'm on shared hosting with hostmysite.com. Thanks, Stuart On 15 Jul 2005, at 00:52, Dave Watts wrote: >> I want to add a row in a join table which i don't want to be >> duplica

Re: Query error

2005-07-14 Thread Will Tomlinson
I'll do my part here... "recieve" is spelled wrong too. :) Will www.codefusiongear.com ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?ban

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Yeah, i was wondering whether i needed that field as i couldn't see how i'd use it. I'll go ahead and delete it. Thanks, Stuart On 15 Jul 2005, at 00:52, Dave Watts wrote: >> I want to add a row in a join table which i don't want to be >> duplicated ever. >> >> So i have my tableID, table1I

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Thanks Ian, that did the trick. Got it working. Cheers! :) On 15 Jul 2005, at 00:31, Ian Skinner wrote: > Please feel free to fix the typos by removing the extra space after > the pound sign on the second insert value and the missing right > parenthesis ")" to close the Values Caluse. Be

RE: 2 Primary Keys

2005-07-14 Thread Dave Watts
> I want to add a row in a join table which i don't want to be > duplicated ever. > > So i have my tableID, table1ID, table2ID - if table1ID = 24 > and table2ID = 35 i don't want there to ever be a reoccurence of > them. I guess i have to set both of those fields (table1ID, table2ID) > to prim

RE: Query error

2005-07-14 Thread Dave Watts
> Any idea why I'm getting an "Error Executing Database Query." > With this? > I can take out the query and return "lesson" and "row" just fine. > Lesson and ID in the table are varchar and integer type fields > respectively. > > > > > > > UPDATE Lessons >

RE: 2 Primary Keys

2005-07-14 Thread Ian Skinner
Please feel free to fix the typos by removing the extra space after the pound sign on the second insert value and the missing right parenthesis ")" to close the Values Caluse. Be aware there may be others, my example was created in the e-mail and untested. -- Ian Skinner Web Progr

Re:

2005-07-14 Thread Matt Robertson
Wow that was an old thread. As far as I know you still have to do what it says in order to use something like FakeURL. I wrote an article in CFDJ years ago about a way to write what I call 'pseudo-static' pages to get around the shared server / IIS access problem and maintain the dynamic nature o

RE: 2 Primary Keys

2005-07-14 Thread Ian Skinner
The fastest fix, from the example you provided, is to put pounds around the evaluate function otherwise you are trying to put a large string into you join column. But better yet may be something like this: INSERT INTO

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Sorry if this has come through twice but i got a bounce back saying the email body was too long (so have deleted some now). My problem is that i have a form on a dating site where when users sign up i create a row for them in my profile table. When collating their profile I also ask them what t

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
My problem is that i have a form on a dating site where when users sign up i create a row for them in my profile table. When collating their profile I also ask them what type of dates they'd like to meet, some of which are love, casual, friendship, travel mate. Each of these attributes ar

RE: Java class called from CF errors

2005-07-14 Thread Taco
Certainly did, a few times actually. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, 14 July 2005 4:49 PM To: CF-Talk Subject: Re: Java class called from CF errors Did you restart the CF server after adding the cert to the keystore? On 7/14/05, Taco <[EMA

Re: 2 Primary Keys

2005-07-14 Thread Aaron DC
It sounds like you are enforcing a 1 to 1 restriction but storing the link in a 1 to many or many to many db design. If table1 can only ever be linked to 1 table2 record and vice versa, wouldnt it be easier to store the table1ID in the table2 as a field (or vice versa)? All your queries would h

Query error

2005-07-14 Thread Merrill, Jason
Any idea why I'm getting an "Error Executing Database Query." With this? I can take out the query and return "lesson" and "row" just fine. Lesson and ID in the table are varchar and integer type fields respectively. UPDATE Lessons SET Lesson =

Re: 2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Hi Jordan, Yes, more than one field needs to be a primary key. I'm using MS-SQL (on shared hosting). Stuart On 14 Jul 2005, at 23:07, Jordan Michaels wrote: > Saturday (Stuart Kidd) wrote: > > >> Hi guys, >> >> I want to add a row in a join table which i don't want to be >> duplicated ever.

RE: 2 Primary Keys

2005-07-14 Thread Ian Skinner
I would set this in SQL Server; you are creating a combo or multi part key. Not two separate keys, but a single key with two or more fields in it. And then, yes an error would be thrown if any operation ever tried to insert or update a record creating one that has the same values for all the fi

Re: 2 Primary Keys

2005-07-14 Thread Jordan Michaels
Saturday (Stuart Kidd) wrote: >Hi guys, > >I want to add a row in a join table which i don't want to be >duplicated ever. > >So i have my tableID, table1ID, table2ID - if table1ID = 24 and >table2ID = 35 i don't want there to ever be a reoccurence of them. I >guess i have to set both of tho

2 Primary Keys

2005-07-14 Thread Saturday (Stuart Kidd)
Hi guys, I want to add a row in a join table which i don't want to be duplicated ever. So i have my tableID, table1ID, table2ID - if table1ID = 24 and table2ID = 35 i don't want there to ever be a reoccurence of them. I guess i have to set both of those fields (table1ID, table2ID) to pri

Delivery barcode

2005-07-14 Thread Ali Awan
>Does anyone know how to develop delivery barcodes using coldfusion. > >Thanks. As someone already mentioned, if you are just trying to develop standard vertical line barcodes, then fusionzone is the way to go. However if you are trying to develop barcodes such as the ones used by UPS, let me k

Component Footprint

2005-07-14 Thread Ryan Emerle
Is it possible to ascertain the memory usage of a component, or anything for that matter by, let say, getting the JVM stack usage before and after a call? Anyone done so succesfully? Is there a better approach with a bit more control/accuracy? This is just a matter of curiousity more than anythi

cf-talk@houseoffusion.com

2005-07-14 Thread Greg Morphis
I was wondering if there's been any 'fix' for the cf_fakeurl custom tag? I tried to use it at home and on my site and got 404 errors. I dumped the variables and everything seems to parse correctly however I still get the error. I did some searching and found an old thread here which I believe appli

RE: CFUNITED CD

2005-07-14 Thread Lincoln Milner
According to their homepage, a little under the link to "Check out the latest news... Blogs and more..." is the following: "Items that will be posted soon: Photos Updated presentations Blogs Next year's event and more" Hang tight, I'm sure Michael, et al. will hook us up soon! -Original Mes

Re: web services advice

2005-07-14 Thread Michael Traher
Hi Simon, Have a search on the macromedia site. try http://www.macromedia.com/devnet/topics/web_services.html Also did you know that all the documentation for coldfusion is at http://livedocs.macromedia.com/coldfusion/7/index.html ? Once you can create a CFC (Coldfusion Component) you can easil

Re: multilanguage blog

2005-07-14 Thread S . Isaac Dealey
> S. Isaac Dealey wrote: >> Paul has also been a significant influence in the i18n >> features > "significant influence" as in thumb to the eye ;-) heh. That sounds painful. :) s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap o

Re: CFSELECT (I hate CFFORM)

2005-07-14 Thread S . Isaac Dealey
I believe if you use format="xml" you can fix the default behavior for required select boxes by editing the XSL sheet. Although admittedly if you're talking about an older form which already has an html table (or other html markup) built around the input elements, then you have to rewrite the whole

RE: Need someone who can read a stack trace

2005-07-14 Thread Mark A Kruger
It's erroring out on a file access call (cfmodule call notwithstanding). Does the CF server have permissions to access the file in question? -Mark -Original Message- From: Joe Bernard [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 2:20 PM To: CF-Talk Subject: Need someone who ca

CFUNITED CD

2005-07-14 Thread Al Everett
So I got lucky and got the PHBs to pony up for me to go to CFUNITED this year. Awesome. Very glad I went. The bound book of all the presentations is great, but what I'd really like is a CD-ROM. I pulled my little CFUNITED backpack apart and there is no such CD in there. I don't see a place on ht

Re: MX 6.11 and CFFILE difficulties, RENAME and DELETE

2005-07-14 Thread Jeff Congdon
Ah, I get it now. I'm trying to move application.log and server.log, and if you try to rename those in file explorer (even as administrator) you get the "Cannot rename application: It is being used by another person or program". Is there a way to manually truncate these logs WITHOUT restarting

Re: multilanguage blog

2005-07-14 Thread Raymond Camden
Wierd Paul - I was thinking of the same solution. It would work w/o doing DB modifications to blogcfc. You could also go with a nice rsolution where a drop down picks the language and stores values in hidden fields. But thats going too far. :> On 7/14/05, Paul Hastings <[EMAIL PROTECTED]> wrote: >

Re: Playing with Flash Data Access

2005-07-14 Thread Clint Tredway
depending on what version of CF, the gateway is auto-installed... I encourage you to look into remoting over using web services On 7/14/05, SStewart <[EMAIL PROTECTED]> wrote: > Because I'm just starting to dig into this. and I didn't set the servers > up so I'm not sure if remoting is even

CFSELECT (I hate CFFORM)

2005-07-14 Thread Phillip Molaro
I just found this posted by a user in the LiveDocs and it works great! What you need to do is to edit the javascript that the CF server writes so that it also checks for a null value (your value="" part of your first option item). This is a simple code change in a javascript template file. Edit

Validation of a select Menu using

2005-07-14 Thread Phillip Molaro
I just found this posted by a user in the LiveDocs and it works great! What you need to do is to edit the javascript that the CF server writes so that it also checks for a null value (your value="" part of your first option item). This is a simple code change in a javascript template file. Edit

RE: Playing with Flash Data Access

2005-07-14 Thread Merrill, Jason
ColdFusion 7 comes with Remoting already up. I think ColdFusion 6 too... Jason Merrill | E-Learning Solutions | icfconsulting.com >>-Original Message- >>From: SStewart [mailto:[EMAIL PROTECTED] >>Sent: Thursday, July 14, 2005 4:08 PM >>To: CF-Talk >>Subject: RE: Playing

RE: Playing with Flash Data Access

2005-07-14 Thread SStewart
Because I'm just starting to dig into this. and I didn't set the servers up so I'm not sure if remoting is even installed... sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 300 Chantilly, VA 20151 Phone: (703) 995-

Re: multilanguage blog

2005-07-14 Thread Paul Hastings
Raymond Camden wrote: > So I'm still a bit confused though. Are you saying you want your > content to be multi-lingual, and by that I mean, you write ONE blog > entry, and it has 2 versions? Or do you plan on writing 2 blog > entries, where 1 entry is in English and one in German? If so, BlogCFC >

Re: Playing with Flash Data Access

2005-07-14 Thread Clint Tredway
I have to ask... why not use Flash Remoting, much faster than using web services... On 7/14/05, SStewart <[EMAIL PROTECTED]> wrote: > I'm just in the beginning stages of playing with Flash as a UI builder. I've > set up a web services datasource and a data grid, when I run the data grid I > get

Re: multilanguage blog

2005-07-14 Thread Paul Hastings
S. Isaac Dealey wrote: > Paul has also been a significant influence in the i18n features "significant influence" as in thumb to the eye ;-) ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Playing with Flash Data Access

2005-07-14 Thread SStewart
I'm just in the beginning stages of playing with Flash as a UI builder. I've set up a web services datasource and a data grid, when I run the data grid I get the following errors. There doesn't seem to be anyplace to correct them ideas/ **Error** Scene=Scene 1, layer=MM_Screen_Layer, frame

Database reported: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented

2005-07-14 Thread Stan Winchester
With BlueDragon 6.2 JX on Windows I get the following error if cfsqltype="CF_SQL_INTEGER", but if I change to cfsqltype="CF_SQL_NUMERIC" it works. "Database reported: [Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented" This application is suppose to support BD,

RE: Array access/query problem

2005-07-14 Thread Merrill, Jason
Thanks Dave! Now I'm on to this: Any info on using Remoting to send complex data types to a CFC? i.e. From Flash: myObj:Object = {data:[{count:23, title:"Bananas"}, {count:10, title:"Apples"}]}; Jason Merrill | E-Learning Solutions | icfconsulting.com NOTICE: This message is for t

RE: Array access/query problem

2005-07-14 Thread Merrill, Jason
Thanks Dave, I got it working. Now I'm trying to send a complex data type (flash object) from Flash to a CFC. >From Flash using Remoting: myObj:Object = {data:[{count:23, title:"Bananas"}, {count:10, title:"Apples"}]}; I thought maybe using "struct" or "structure" as the argument type in my CFC

Re: CFSELECT (I hate CFFORM)

2005-07-14 Thread Will Tomlinson
I've run into the same thing before. Incredibly aggravating! I just mark one as selected, then you know they can't get past it. Will www.codefusiongear.com ~| Logware (www.logware.us): a new and convenient web-based time trac

Need someone who can read a stack trace

2005-07-14 Thread Joe Bernard
We're having a problem where CF takes up to 10 minutes to start up. We've done a thread dump during the hang, and it looks like it is waiting on the OS for some reason. The line of code it hangs on is a cfmodule tag. I know cfmodule is bad, but we're stuck with it for the time being. This code w

RE: Array access/query problem

2005-07-14 Thread Dave Watts
> I am using Flash remoting to send an array to a CFC - works > fine, until I try a query. I have been able to connect to the > datasource and retrieve values in another CFC with no problem. > Why am I getting a "Error Executing Database Query" error in Flash? > > The part that I don't under

RE: CFSELECT (I hate CFFORM)

2005-07-14 Thread Dan G. Switzer, II
Phillip, If you don't like CFFORM, take a look at qForms: http://www.pengoworks.com/qforms/ Here's an example of what you're trying to do done in qForms: http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm The validation portion is actually all done w/the following code: //

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
I thought I'd share what I came up with for everyone: http://blog.pengoworks.com/blogger/index.cfm?action=blog:444 Essentially the tag will only execute the code between the starting and ending if the remote IP address of the machine is in the debug list. - Dan ~~~

CFSELECT (I hate CFFORM)

2005-07-14 Thread Phillip Molaro
You can do server side validation and it will catch the errors, BUT it does NOT pop up a javascript box like the inline required="yes" feature does. What it does is loads a blank page with a plain gray box and it has your message. What you have to do is to put in your select field, then add t

MX 6.11 and CFFILE difficulties, RENAME and DELETE

2005-07-14 Thread Jeff Congdon
I'm at a loss with some file handling difficulties on my setup (MX 6.11, IIS, win2k3 server) and am now looking for some advice. I'm converting a 'cf log parser' app that we've had running in cf5. It reads the log, parses, looks for certain events which it aggregates and inserts to a db, then

Re: Delivery barcode

2005-07-14 Thread Qasim Rasheed
You can also use the following Java library called "barbeque" to generate barcodes http://barbecue.sourceforge.net/ HTH On 7/14/05, Rajani Chandra <[EMAIL PROTECTED]> wrote: > Thanks Bryan, what I'm doing is collecting client address from database > based on the address I have to develop barcod

Re: Web Services - tracking the IP of the server invoking it

2005-07-14 Thread Dave Shuck
See? I knew it was something ridiculous. For some reason I had it in my head that the CGI scope was unavailable to the CFC when invoked as a web service. No clue where that came from. Thanks. ~Dave On 7/14/05, Aaron Rouse <[EMAIL PROTECTED]> wrote: > I have checked the remote servers IP addre

Re: Web Services - tracking the IP of the server invoking it

2005-07-14 Thread Aaron Rouse
I have checked the remote servers IP addresses before via just referencing CGI.REMOTE_ADDR On 7/14/05, Dave Shuck <[EMAIL PROTECTED]> wrote: > > I am offering a subscription based web service, but in addition to > giving the user a unique key to pass as a parameter, I would like to > track the

Web Services - tracking the IP of the server invoking it

2005-07-14 Thread Dave Shuck
I am offering a subscription based web service, but in addition to giving the user a unique key to pass as a parameter, I would like to track the IP address or host/domain name of the server that is invoking the web service, just to ensure that it isn't getting used on more than one sever. I am hav

Re: multilanguage blog

2005-07-14 Thread Sebastian Mork
that sounds ok (custom hack) yes, I want to post a blog-entry for every language, so when I create one blog entry I will enter two versions (ger+en) I'll try it and look at the code. thank you :) -- Sebastian Mork [EMAIL PROTECTED] -- On Thu, 14 Jul 2005 12:13:18 -0500 Raymond Camden <[EMAIL PRO

Re: multilanguage blog

2005-07-14 Thread Raymond Camden
So I'm still a bit confused though. Are you saying you want your content to be multi-lingual, and by that I mean, you write ONE blog entry, and it has 2 versions? Or do you plan on writing 2 blog entries, where 1 entry is in English and one in German? If so, BlogCFC will work for that. To support N

Re: Javascript from Flash Form

2005-07-14 Thread S . Isaac Dealey
> I would like to be able to add a window.close() javascript > method to an onclick event for a button in a flash form. > Is this possible? > Is there a workaround? Iirc... getURL("javascript:window.close()"); Don't quote me... s. isaac dealey 954.522.6080 new epoch : isn't it time for a cha

Array access/query problem

2005-07-14 Thread Merrill, Jason
I am using Flash remoting to send an array to a CFC - works fine, until I try a query. I have been able to connect to the datasource and retrieve values in another CFC with no problem. Why am I getting a "Error Executing Database Query" error in Flash? The part that I don't understand is how t

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
Kevin, >O common now... you can't blame him for plugging his own code... > >http://www.keslabs.com/crd > >;) I actually downloaded that a few days ago and haven't had a chance to look at it. Ironically, it reminds me of the early days of CF when you actually had an EXE administration program that

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
Raymond, >Tsk tsk. Now doesn't MACR officially say folks should NOT use the >ServiceFactory. ;) The box I need the code for is on CFMX 6.1... So I have to use "unauthorized" code. - Dan ~| Find out how CFTicket can increase y

Re: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Sebastian Mork
nice tool :) -- Sebastian Mork [EMAIL PROTECTED] -- On Thu, 14 Jul 2005 12:18:00 -0400 "Ben Forta" <[EMAIL PROTECTED]> wrote: > This is what you want: > http://www.forta.com/blog/index.cfm?mode=e&entry=1004 > > --- Ben > > > -Original Message- > From: Dan G. Switzer, II [mailto:[EMAIL

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
>Just a thought but if you want to just add info to your debuging why >not just edit the debuging CFM pages? What I'm working in more like a trace tag. I want to output some extra debugging information, but for very specific instances. It's for inline debugging... -Dan

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
Ben, >This is what you want: >http://www.forta.com/blog/index.cfm?mode=e&entry=1004 Excellent! That's just what I was looking for. -Dan ~| Logware (www.logware.us): a new and convenient web-based time tracking application

Re: multilanguage blog

2005-07-14 Thread Sebastian Mork
hi, hmm, first I didn't understand what i18n is standig for, well.. In my app (running english and german) (www.friendcom.de :) the only thing that differs in both languages is date- and time-formatting where I use lsdate.. and lstimeformat for (and a function that removes the seconds from the tim

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Kevin Aebig
O common now... you can't blame him for plugging his own code... http://www.keslabs.com/crd ;) Kevin -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: July 14, 2005 10:44 AM To: CF-Talk Subject: Re: Retrieving Debugging IP Address List From CFAdmin... Tsk tsk. No

Re: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Adam Haskell
Just a thought but if you want to just add info to your debuging why not just edit the debuging CFM pages? Adam H On 7/14/05, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > Does anyone have any code handy (before I go digging around for where it is > in the ServiceFactory) of how to query out a

Re: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Raymond Camden
Tsk tsk. Now doesn't MACR officially say folks should NOT use the ServiceFactory. ;) I just checked - and in CFMX7, the Admin API, which is supported by MACR, does have a method to get the list of IP addresses for debugging. You can also add or remove IP addresses from the list. On 7/14/05, Ben F

Re: Delivery barcode

2005-07-14 Thread Rajani Chandra
Thanks Bryan, what I'm doing is collecting client address from database based on the address I have to develop barcode. - Original Message - From: "Bryan Stevenson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, July 14, 2005 11:28 AM Subject: Re: Delivery barcode > Not reallyit

Javascript from Flash Form

2005-07-14 Thread Jim Voris
I would like to be able to add a window.close() javascript method to an onclick event for a button in a flash form. Is this possible? Is there a workaround? ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ti

Re: Delivery barcode

2005-07-14 Thread Bryan Stevenson
Not reallyit all depends on which courier you want to use...from theer I'd Google something like "FedEx ColdFusion tag" and then start reading ;-) Essentially you use the tags to: -pass shipping details to the courier's system -a record is created in their system -their system passes back inf

RE: Delivery barcode

2005-07-14 Thread Ciliotta, Mario
I have also been looking for a custom tag to produce that style barcode but I have not been able to find one. Mario -Original Message- From: Rajani Chandra [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 12:20 PM To: CF-Talk Subject: Re: Delivery barcode Thanks Bryan, can you e

Re: ParseURLdata UDF problem

2005-07-14 Thread Jake .
Wonderful - whatever you did to the UDF worked perfectly. Thanks! > Wow, that UDF was old. It should work better now, and the second > argument is documented. > > On 7/13/05, Jake McKee <[EMAIL PROTECTED]> wrote: > > Hi there! > > > > I've just had a look at the cool ParseURLdata function on the

Re: Delivery barcode

2005-07-14 Thread Rajani Chandra
Thanks Bryan, can you explain some details about those custom tags. - Original Message - From: "Bryan Stevenson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, July 14, 2005 11:10 AM Subject: Re: Delivery barcode > If you mean the bar codes found on courier shipping labels like for

Re: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Raymond Camden
I'm pretty sure it's in the new Admin API. On 7/14/05, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > Does anyone have any code handy (before I go digging around for where it is > in the ServiceFactory) of how to query out a list of Debugging IP Addresses? > > I want to use this list to control

RE: Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Ben Forta
This is what you want: http://www.forta.com/blog/index.cfm?mode=e&entry=1004 --- Ben -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 12:11 PM To: CF-Talk Subject: Retrieving Debugging IP Address List From CFAdmin... Does anyone have

Retrieving Debugging IP Address List From CFAdmin...

2005-07-14 Thread Dan G. Switzer, II
Does anyone have any code handy (before I go digging around for where it is in the ServiceFactory) of how to query out a list of Debugging IP Addresses? I want to use this list to control some output... Thanks, Dan ~| Logware

Re: Delivery barcode

2005-07-14 Thread Bryan Stevenson
If you mean the bar codes found on courier shipping labels like for FedEx or UPS etc..there are custom tags out there that will produce these labels and enter the shipping details into the courier shipping system. I'd strongly advise using a custom tag if possible as dealing with FedEx and

RE: Delivery barcode

2005-07-14 Thread Ian Skinner
This is all I know about it. Never used it, but keep it in the back of my head since we use a lot of barcodes around here. So, someday we may want to do something like this. http://www.fusionzone.com/applications/barcode/index.cfm -- Ian Skinner Web Programmer BloodSource www.Blo

Delivery barcode

2005-07-14 Thread Rajani Chandra
Does anyone know how to develop delivery barcodes using coldfusion. Thanks. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with

Re: multilanguage blog

2005-07-14 Thread S . Isaac Dealey
Paul has also been a significant influence in the i18n features provided in the onTap framework -- and of course any applications I build (soon) using the framework. > And I should point out - Paul is the main reason for this. > Huge thanks need to go out to him if you are a BlogCFC user > and us

Re: multilanguage blog

2005-07-14 Thread Raymond Camden
And I should point out - Paul is the main reason for this. Huge thanks need to go out to him if you are a BlogCFC user and using a non English language. On 7/14/05, Paul Hastings <[EMAIL PROTECTED]> wrote: > Sebastian Mork wrote: > > I wanna use a blog at my site, its running in multi (at the mome

Re: multilanguage blog

2005-07-14 Thread Paul Hastings
Sebastian Mork wrote: > I wanna use a blog at my site, its running in multi (at the moment two..) > languages. so I searched for a blogger, found blogcfc, but it works onlx > in one language.. look again, ray's blog is i18n. ~|

Re: multilanguage blog

2005-07-14 Thread Raymond Camden
Are you saying you want the UI in 2 languages, or the content in 2 languages? If you mean the UI, BlogCFC is localized. It assume one locale per blog though, but you could modify it to switch the locale based on a url, or session variable. If you mean in content, I'm _mostly_ use BlogCFC shouldn'

cfgrid (flash) and multiple row selection

2005-07-14 Thread Dave Phipps
Hi, Does anyone know if it is possible to select multiple rows in a cfgrid (flash) control. I have a cfgrid with editable "cells" but I would also like to be able to bulk update certain columns on multiple rows for updating start dates etc based on a date field and button click. Any ideas? Many

multilanguage blog

2005-07-14 Thread Sebastian Mork
Hi, I wanna use a blog at my site, its running in multi (at the moment two..) languages. so I searched for a blogger, found blogcfc, but it works onlx in one language.. does anybody know a good(cfmx)blogger that supports two languages (in what way ever the comments work there..) ? thx -- Sebast

RE: To base64 and back again!

2005-07-14 Thread gabriel l smallman
Im a dumas: Test string:#v# Test string in base64: #b# Test string from base64 to string: #tostring(tobinary(b))# Sorry not enough caffiniation before endeavoring gabe -Original Message- From: gabriel l smallman [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 10:45 AM To:

To base64 and back again!

2005-07-14 Thread gabriel l smallman
Hey all, trying to 1. take a string and base64("test") it 2. then need a way to bring it back to "test" I thought tostring would do the trick but no such luck. I know im missing something obvious. g ~| Discover CFTicket - The

web services advice

2005-07-14 Thread Simon Smith
Hi, Can anyone recommend a good overview of setting up web services and using SOAP on MX 7.1 ? (I have had MX7 installed by an admin, but no docs or help) Thanks in advance to all ~| Logware (www.logware.us): a new and conveni

ColdFusion 7 Enterprise on Linux

2005-07-14 Thread mac jordan
does anyone know of a matrix that lists which features are missing (if any) from the Linux version of CF Enterprise? and has anyone done any work with the SMS Gateway? -- mac jordan home: www.kestrel.org work: www.webhorus.net them: www.jordan-

Re: Consuming Web Services from CF5

2005-07-14 Thread Stephen Moretti
You might want to also dig out cf_soXML from somewhere too or a.n.other XML parsing tag. You can consume WS with CF5 using cfhttp or cfx_http using post/get actions, but it isn't the worlds easiest task. David Manriquez Farias wrote: >Oohhh Boy... > >CF5 and WS are like Water and Oil... like

RE: Consuming Web Services from CF5

2005-07-14 Thread David Manriquez Farias
Oohhh Boy... CF5 and WS are like Water and Oil... like heaven and hell , like linux and micro$oft Look for CFX_SOAP and see if that covers you requirement. I'm on the same thing now -Mensaje original- De: Mark Drew [mailto:[EMAIL PROTECTED] Enviado el: Thursday, July 14, 2005 8:53 AM

RE: Not to start a flame war.....

2005-07-14 Thread Matthew Small
I admit my ignorance in the latest trends and what people are doing. Matthew Small Web Developer American City Business Journals 704-973-1045 [EMAIL PROTECTED] -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 8:51 AM To: CF-Talk Subject:

Consuming Web Services from CF5

2005-07-14 Thread Mark Drew
Hi all We have an application that we want to allow the consumption of webservices from CFMX. Is there a good/easy way to do this in CF5? Regards Mark Drew ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble T

Re: Not to start a flame war.....

2005-07-14 Thread Joe Rinehart
> "You wind up with all this controller code spread through hundreds of pages > / components" > > What does that mean? Controller code? Er..controller code is what's in your code-behind. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpatterns/html/DesPageController.asp .

RE: Not to start a flame war.....

2005-07-14 Thread Matthew Small
"but on my blog you said something about me not knowing enough (ASP).NET to have an opinion." That's not what I said. "Six months experience in ASP.NET vs years(?) in CF isn't nearly long enough to present balanced commentary." I just hate it when somebody trashes something that they don't know m

Re: Making a flash movie a link.

2005-07-14 Thread Ken Ferguson
I used to have a bunch of flash banners that were given to me without the "click anywhere" buttons. Rather than needing to open each of them in Flash and create the button with a link, I just put them in a div with an onclick. I can say with 100% certainty that it worked on IE 5 and up and on F

  1   2   >