RE: Ever have trouble with Client Variables changing?

2003-11-24 Thread Brrrian
Well, this is my cfapp tag:so using cookies by default I think for URLtoken. cfapplication name=appName clientmanagement=Yes clientstorage=clientregName and I am checking the values for cfid and cftoken... they are not changing as I am clicking... but the darn Client.Variable is however

New Lists and other items

2003-11-24 Thread Michael Dinowitz
The following lists have been added to House of Fusion: HoF-Features - for discussion about errors and new features with the HoF system XML - the old WDDX list reborn for focus on XML issues. RIA - For discussion about Rich Internet Applications, their creation, use, etc. Flex - For non-NDA

RE: SQL Help

2003-11-24 Thread Michael Traher
Yes you would have to have an OR for each area code in your list in addition to the in clause (which is expanded by the DBMS to a list of OR's anyway which is why it is likely to run slowly). This will extract the records you need - after that you will have to be able to parse the memo field to

RE: On the fly DSN creation, why?

2003-11-24 Thread Mike Townend
6.1 has some components listed in the component manager that can probably allow you to do this.MX didnt, I havnt tried using them so i dont know how effective they are. HTH -Original Message- From: Seibert Don R [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 03:42 To:

RE: Determing wehre you've loaded from

2003-11-24 Thread Adrian Lynch
Take a look at the available CGI variables. cfdump var=#CGI# / This might have something of interest to you. Ade -Original Message- From: Craig Earls [mailto:[EMAIL PROTECTED] Sent: 23 November 2003 00:17 To: CF-Talk Subject: Determing wehre you've loaded from I am developing

RE: On the fly DSN creation, why?

2003-11-24 Thread Samuel R. Neff
You can do dynamic ODBC connections in MX by creating a datasource to an empty Access database and use that as a proxy, specifying the real connection string in the FROM clause of your query. cfquery name=excelData datasource=proxy SELECT Salesperson, SalesAmount FROM Excel 8.0;

RE: 3 select Calendar pop-up

2003-11-24 Thread Dwayne Cole
Are you talking about interface or the results? If just the results couldn't you just separate them out later (perhaps using the DatePart() function)? Jim Davis I'm talking about the interface.I actually put them back together later.But if you know of a really good js Calandar pop than it

RE: 3 select Calendar pop-up

2003-11-24 Thread Bert Dawson
Have you checked out Matt Kruse's Calendar Popup: http://www.mattkruse.com/_javascript_/calendarpopup/ I think it'll do what you're after - see the example at the bottom of the page. HTH Bert -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: 23 November 2003 17:51

RE: 3 select Calendar pop-up

2003-11-24 Thread Dwayne Cole
Thanks Bert. Dwayne Cole, MS in MIS, MBA Certified Advanced ColdFusion Developer 850-591-0212 It can truly be said that nothing happens until there is vision. But it is equally true that a vision with no underlying sense of purpose, no calling, is just a good idea - all sound and fury,

Server busy error.

2003-11-24 Thread Ketan Patel
Hi All, I am facing a strange issue with CF timeout or CF Server. I have a script which can run anywhere from 2 seconds to 5 minutes. Sometimes I get following error message. Error Diagnostic Information Request canceled or ignored by server Server busy or unable to fulfill request. The server is

Re: TDateTime conversion

2003-11-24 Thread Thomas Chiverton
On Tuesday 18 Nov 2003 10:28 am, Shahzad.Butt wrote: Has anyone written any UDF or something to convert TDateTime value (in Delphi) to normal ODBC date/time format? Even a TSQL command will help me as well.. TDateTime's are measured from sometime in 1899 (check the Delphi help), as

Re: 3 select Calendar pop-up

2003-11-24 Thread Larry C. Lyons
Dwayne Cole wrote: My form fields for entering dates have three drop downs, one for months, on for the day, and one for the year. I'm looking for a calendar pop-up script that faciliates data entry in my Date fields.I discovered several but they all return the date to one field. Dwayne

Auto-Populate a Word Document

2003-11-24 Thread Dwayne Cole
I working on an application that pulls info from a database and popluates a fields of a contract.In the past I would generate an HTML display of the contract in seperate window and from there the users would just print it out.Sometimes, however, condition of the contract may need toslightly

RE: Auto-Populate a Word Document

2003-11-24 Thread Philip Arnold
have a CFCONTENT change the type to Word (can't remember the setting off the top of my head) Put whatever HTML layout you want in there (Word treats HTML as layout when the Content Type is right) Voila -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: 3 select Calendar pop-up

2003-11-24 Thread Tangorre, Michael
One of the best, cross browser calendars I have used is this http://dynarch.com/mishoo/calendar/ http://dynarch.com/mishoo/calendar/ mike -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 9:36 AM To: CF-Talk Subject: RE: 3 select

Testing DSN's before processing queries

2003-11-24 Thread dsmith
Does anyone know a method to test a DSN before running a query?We link to an AS/400 DSN which is occasionally offline for backups, maintenance, etc.I'd like to run a test that if the DSN isn't working will display a Please come back later message.Any suggestions? Thanks, Daron Smith [Todays

RE: Testing DSN's before processing queries

2003-11-24 Thread Pascal Peters
Use try catch on a query that you know will work (and is fast) if it is online. You can even throw an error and use cferror for the display of the message. Or you can use try catch on the query itself. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: Testing DSN's before processing queries

2003-11-24 Thread John Stanley
You could use something like this: cftry cfquery name=get_this datasource=arf select * from sys_note_type /cfquery cfcatch type=Database cfif findnocase(Data source arf could not be found.,cfcatch.message) Please Come back later /cfif /cfcatch /cftry -Original Message- From: [EMAIL

OT: HTML CSS only table question.

2003-11-24 Thread Ian Skinner
I have a table laid out something like this simplified example: table tr tddata/td td rowspan=4Data/td tr tr tddata/td tr tr td rowspan=2data/td tr /table I am working on the calculation that results in the unnecessary rowspan in the third row.But I don't think that applies to this issue.

RE: Auto-Populate a Word Document

2003-11-24 Thread Samuel R. Neff
cfcontent type=application/msword reset=no cfheader name=Content-Disposition value=attachment; filename=Labels01.doc More info here: http://www.rewindlife.com/archives/32.cfm Sam --- Blog: http://www.rewindlife.com Charts:

Cfcontent/cfheader

2003-11-24 Thread Tangorre, Michael
I am sending out emails that contain a link to a page that serves up a file for the user to download via cfheaaer and cfcontent. cfheader name=Content-Disposition value=attachment; filename=#selectDoc.documentName# cfcontent file=#request.docPath##selectDoc.documentName#

Declared SQL variables in select statement error

2003-11-24 Thread Chris More
Why can I execute this statement fine in MS SQL Analyzer: DECLARE @q1 varchar(7) SELECT @q1 = period_name FROM adj_periods WHERE period_id = 1 And If I try to do this in CF: cfquery name=sales datasource=forecasting DECLARE @q1 varchar(7) SELECT @q1 = period_name FROM adj_periods WHERE

Re:SQL Help

2003-11-24 Thread Stan Winchester
I don't know if SYBASE supports UDF like SQL 2000, but take a look at the following: http://www.houseoffusion.com/lists.cfm/link=m:4:23904:120461 I found the above solution to be very helpful, and hope it can help you! Good Luck Stan Hello All, I have a memo field in SYBASE that contains phone

RE: Declared SQL variables in select statement error

2003-11-24 Thread Hassan Arteaga Rodriguez
Try this... cfquery name=sales datasource=forecasting SELECT period_name AS 'q1' FROM adj_periods WHERE period_id = 1 /cfquery Regards... Declare is a keyword for MS SQL notSQL language...i'm ok ? __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
Hi All, you missed what I was trying to do. I know how, but I want to know why. Why do people like create DSNs on the fly? -Original Message- From: Samuel R. Neff [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 8:34 AM To: CF-Talk Subject: RE: On the fly DSN creation, why? You

Re: CF with Bluetooth (RETRACT)

2003-11-24 Thread Thomas Chiverton
On Thursday 13 Nov 2003 20:33 pm, Tony Weeg wrote: does bluetooth give any web access in its PAN? I guess lets say you had a wireless device with internet access and bluetooth on it as well, could a pda within that PAN get out to the web to, lets say, get email? Did just that from my nice new

Re: CF with Bluetooth (RETRACT)

2003-11-24 Thread Thomas Chiverton
Did just that from my nice new SE P900 over the weekend, accessing my webmail via a Bluetooth link'ed mobile phone: laptop -[BlTo]- P900 -[Mobile Network]- web server Of course, then I got silly and just did: P900 -[Mobile Network]- web server :-) [Todays Threads] [This Message]

Re:3 select Calendar pop-up

2003-11-24 Thread Irvin Gomez
Dwayne, let me know if this is close to what you're looking for. http://www.pixel69.com/calendar.cfm My form fields for entering dates have three drop downs, one for months, on for the day, and one for the year. I'm looking for a calendar pop-up script that faciliates data entry in my Date

Re: On the fly DSN creation, why?

2003-11-24 Thread stas
Sure, let's say you want to let a user upload an Access database and import it an existing data source. I am currently stuck figuring out how to do the reverse - extract data to a stand alone dynamically generated Access database. - Original Message - From: Bryan F. Hogan To: CF-Talk

RE: On the fly DSN creation, why?

2003-11-24 Thread Samuel R. Neff
In the example I posted, it was to work with an uploaded Excel spreadsheet. In that case, you don't want a real DSN to it but just a dynamic connection. Besides, someone else asked about the HOW, not just WHY (sorry if I'm encouraging the repurposement of your thread). Sam

RE: On the fly DSN creation, why?

2003-11-24 Thread Mike Townend
we wanted to do it so that users were able to upload an excel spreadsheet, which could then be manipulated by other people over a period of time.At the time of writing there was no way to do it in MX that appeared to work. So we have a bank of datasources setup in CF which is then monitored by

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
Besides, someone else asked about the HOW, not just WHY (sorry if I'm encouraging the repurposement of your thread). Didn't mean to bother you. I repurposed already. And you answered. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Ordering a QofQ

2003-11-24 Thread Brad Roberts
I'm building a query dynamically, and then trying to sort it on a numeric column, but it only wants to sort alphabetically.Anyone experience this, or know what I need to do to sort numerically? cfquery name=qResults dbtype=query select * from qResults order by hasPhoto DESC, price DESC /cfquery

RE: CF and ASP

2003-11-24 Thread Bushy
Can I have some ASP code in my test.cfm file? Its a breadcrumb writting in ASP. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

looking for a good dynamic menu

2003-11-24 Thread walker
Hey all, I need to find a good dynamic menu - kind of like the one found on http://www.jensonusa.com, where the rollover pops down a second list of items to choose from. Does anyone know of one that is cross browser compatible, and works well with cold fusion? Thanks for your help. -w

CF - post to database question

2003-11-24 Thread Michael Grove
I am looking for a way to post information directly to a database from a csv, excel or text delimited file. I am looking for one of two options. Option one would give a user the ability to email the file to a specific email address and the server/web app would pull the data from the file

RE: looking for a good dynamic menu

2003-11-24 Thread Hassan Arteaga Rodriguez
U should try fireworks MX !! Regards, __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: walker [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 11:43 AM To: CF-Talk Subject: looking for a

Re: CF - post to database question

2003-11-24 Thread Bryan Stevenson
Both options are possible, although the e-mail option would have more possible points of failure (i.e. mail not deliverednot read properlyforgot the attachement etc.) The only really tough part here is extracting the data from the file.There are many customs tags to extract data from

RE: looking for a good dynamic menu

2003-11-24 Thread walker
I'm working on a CF 5 server. At 11:48 AM 11/24/2003, you wrote: U should try fireworks MX !! Regards, __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: walker [mailto:[EMAIL PROTECTED] Sent:

Re: looking for a good dynamic menu

2003-11-24 Thread Johan Steenkamp
Commercial - http://www.opencube.com/ (light as it loads only the script required by the browser) Other - you can find a number at www.dynamicdrive.com (hvmenu is a good one) Johan www.assetnow.com - Original Message - From: Hassan Arteaga Rodriguez To: CF-Talk Sent: Tuesday, November

RE: looking for a good dynamic menu

2003-11-24 Thread Matt Robertson
http://milonic.com Works on everything.More features than you can shake a stick at.I wrote a CF wrapper in the Exchange, and sell a fancier one that includes a license for what is now below the current ver's cost.Neither work with the brand-new version 5, but the older ver was lighter-weight and

RE: Declared SQL variables in select statement error

2003-11-24 Thread Michael Traher
I think the same answer is implied in Hassan's answer as well.. It would seem that you have told the DBMS to create a local variable and put the query results in the local variable then end, thus losing the local variable. If you want to refer to the result then Hassan's code looks good!

RE: Ordering a QofQ

2003-11-24 Thread John Burns
This probably has to do with the data type of the field that you're working with.For instance, if price is a text field because you're storing $123.43 instead of a numeric field and just storing 123.43 it would sort alphabetically instead of numerically.You could probably convert the field value

Recursion and Breadcrumbs

2003-11-24 Thread Jake McKee
After searching high and low, I've found quite a few discussions about using recursion to create breadcrumbs, and other nested categorical info. It seems to be a pretty common question, and I would expect that there is a common solution out there, but I can't seem to find one. I'm trying to

re: Breadcrumb in CF

2003-11-24 Thread Bushy
How can I do something similar in CF using the below ASP code? % Function BreadCrumbs() Dim lstrPathAry Dim llngMaxIndex Dim lstrPath Dim lstrHTML lstrPathAry = Split(Request.ServerVariables(PATH_INFO), /) llngMaxIndex = UBound(lstrPathAry) - 1 lstrHTML = BYou are here:/B lstrPath

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
Hi I'm confused on this one. Did you create a DTS to import from the uploaded spreadsheet? If so where does the DSN-less connection come into play? -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 12:14 PM To: CF-Talk Subject: RE: On the fly

Re:Recursion and Breadcrumbs

2003-11-24 Thread Trevor Holm-Laursen
Hey, I wrote a custom tag to do exactly that.Email me off list at [EMAIL PROTECTED] and I'll get you a copy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
I've been thinking about this today and so-far I can't figure out why the need for DSN-less connections. Could a Macro in your Access database not import data from an uploaded Excel Spreadsheet -Original Message- From: Samuel R. Neff [mailto:[EMAIL PROTECTED] Sent: Monday, November 24,

RE: Recursion and Breadcrumbs

2003-11-24 Thread Hagan, Ryan Mr (Contractor ACI)
This is what I generally use.Let me know if you need clarification. cffunction name=list_categories returntype=string output=No cfargument name=myCatId type=numeric default=0 required=true cfset var currQuery = cfset var returnString = cfquery name=currQuery datasource=#request.dsn.name#

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
Sure, let's say you want to let a user upload an Access database and import it an existing data source. If the database you want to import data is in SQL you can use a DTS. If it is in Access you can use a Macro. I am currently stuck figuring out how to do the reverse - extract data to a stand

Re:Recursion and Breadcrumbs

2003-11-24 Thread Trevor Holm-Laursen
Here's the code to the Custom tag I wrote to do this exact thing cfsetting enablecfoutputonly=Yes !--- Author: Trevor Holm-Laursen Attributes: REQUIRED CategoryID - ID of category to build crumb for OPTIONAL Nested Tags: --- !--- Validate CategoryID --- cfif

OT: Macromedia Technotes Notification

2003-11-24 Thread David K
I'm looking for a way to keep up with the latest TechNotes and Bulletins from Macromedia. In the Macromedia XML News Aggregator ( http://www.markme.com/mxna/index.cfm ) I've seen an entry entitled ColdFusion TechNote Notification but can't locate the feed for it. Can anyone provide the URL? Also,

RE: CF and ASP

2003-11-24 Thread d.a.collie
Doubt it the .cfm file will tell the webserver to use the Cold Fusion app server... if it has an asp extension it would then run through the asp.dll I know this can be changed but I doubt that you would be able to get both languages going at the same time... -Original Message-

Re: On the fly DSN creation, why?

2003-11-24 Thread stas
I would greatly appreciate if you could post an example on how to do this. I've asked several times without success. Thanks much! - Original Message - From: Bryan F. Hogan To: CF-Talk Sent: Monday, November 24, 2003 2:03 PM Subject: RE: On the fly DSN creation, why? Sure, let's say you

RE: CF and ASP

2003-11-24 Thread Schuster, Steven
What if you used an IFRAME. That may work. Dunno though as I have never tried it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 2:39 PM To: CF-Talk Subject: RE: CF and ASP Doubt it the .cfm file will tell the webserver to use

RE: CF and ASP

2003-11-24 Thread d.a.collie
nice thinking see no reason why it shouldn't work as it is two separate page calls.. I like it Steven :-) -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: 24 November 2003 19:41 To: CF-Talk Subject: RE: CF and ASP What if you used an IFRAME. That may work.

problems with cfhttp and USPS

2003-11-24 Thread walker
Hey, First off, thanks for your help. I am having an issue with cfhttp talking to the USPS intl shipping price server. 9 times out of 10 the results come back with an error. I've heard that there are cfx http tags out there- anyone used one that works on Solaris? Or has anyone seen this

RE: Clearing Trusted Cache in CF 5

2003-11-24 Thread Tom Jordahl
Trusted cache will prevent ColdFusion (5 or MX) from checking the disk for the file timestamp. This can have a medium to large-ish performance impact.Huge if your templates are mounted across the network on a file server. You can switch this setting on/off without restarting the server, so you

OT: DW extension keyboard shortcuts

2003-11-24 Thread Barney Boisvert
I beat my head against this one all weekend.In DWMX (not 04), is it possible to assign a keyboard shortcut to a command extension?I couldn't find anything about it either way in the helps. Cheers, barneyb --- Barney Boisvert [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription]

OT: DW Stop refeshing site

2003-11-24 Thread Tony Weeg
how can I make it so that dw doesn't have to REFRESH MY SITES when I make changes to files etc? thanks. tony [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Macromedia Technotes Notification

2003-11-24 Thread Michael Dinowitz
Fusion Authority keeps up with the tech notes. While it's not immediate like the XML feed is, it does cover them and more. We've got an issue coming out in an hour or so that brings the latest technotes out. I'm looking for a way to keep up with the latest TechNotes and Bulletins from

RE: DW Stop refeshing site

2003-11-24 Thread John Beynon
It's on the Local Info tab when you go into Manage Sites, there's a checkbox, CACHE that will need to be unticked, Jb. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: 24 November 2003 20:03 To: CF-Talk Subject: OT: DW Stop refeshing site how can I make it so that dw

Re: DW extension keyboard shortcuts

2003-11-24 Thread Massimo, Tiziana e Federica
You can assign keyboard shortcuts to menu entries. So, first create the menu entry for your command, then assign a shortcut to it Massimo Foti Certified Dreamweaver MX Developer Certified Advanced ColdFusion MX Developer http://www.massimocorner.com/

RE: On the fly DSN creation, why?

2003-11-24 Thread Samuel R. Neff
Bryan, DTS implies MSSQL and if you're using a DTS to import from an uploaded Excel or Access database, then somehow you must be passing the path to the Excel or Access file to the DTS package.This is really the same as dsn-less connection, just through DTS and not through CF. Also, you can't

RE: DW extension keyboard shortcuts

2003-11-24 Thread Barney Boisvert
That's what I assumed would happen.It happily displays on the Commands menu, but no dice in the keyboard shortcut screen.I also tried manually adding it to the menu.xml file, and that didn't work either. barneyb _ From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: On the fly DSN creation, why?

2003-11-24 Thread Bryan F. Hogan
Also, you can't run an Access macro on the server without automation which is a big no-no. I don't want to get into the politics of having Access installed on the machine, that's not my concern, it's the users concern. All I want to do get the reasons why people go through so much time and

Error with Web Connector after installing CFMX 6.1

2003-11-24 Thread Angel Stewart
I got some errors with CFMX, where it had totally stopped processing CFM pages. All I would get when I visited a CFM page was a blank screen. I've just uninstalled, rebooted..reinstalled and rebooted CFMX. After the reinstall I got a message saying that the web connector installation had

Re: Auto-Populate a Word Document

2003-11-24 Thread peter . tilbrook
Try this EasyCFM tutorial: http://tutorial13.easycfm.com/ Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Important:This e-mail is intended for the use of the addressee and may

Re: New Lists and other items

2003-11-24 Thread peter . tilbrook
Do the RSS feeds support autodiscovery? I use FeedDemon 1.0 RC4 and it didn't seem to like it. Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Important:This e-mail is intended for

ListFind() weirdness

2003-11-24 Thread Seth Johnson
OK, so I'm having some weird behavior with ListFind() on CFMX and CF 5. Here's an example.I create a COMMA DELIMITED list of values, each value actually consists of 3 groups of numbers separated by an underscore. ListFind() is not returning the proper result when this list contains a single

Re: Error with Web Connector after installing CFMX 6.1

2003-11-24 Thread Mahmut Basaran
I had a similar problem a while ago, although it says localhost it's not really using localhost (it's using the static ip of your box). so, if you have any firewalls, ipsec rules etc.. disable them and run the connector executable again. You can also check the log files to dig more info. -

Jar files not being read

2003-11-24 Thread Barney Boisvert
I just added a JAR to my app's WEB-INF/lib directory and it's behaving very strangely.I can happily instantiate and use the classes from my CF code. I can happily instantiate and use the classes from a custom Java class that is compiled and run with the JAR on the classpath.However, running that

Re: New Lists and other items

2003-11-24 Thread Michael Dinowitz
It seems that autodiscovery requires a link format other than what I have. I'll look into adding it in the next revision. Till then, you can add this link directly: http://www.houseoffusion.com/cf_lists/RSS.cfm/forumid=4 The forumid reflects the specific forum so 4 is CF-Talk, 5 is CF-Community,

RE: ListFind() weirdness

2003-11-24 Thread Schuster, Steven
Wouldn't a list, by nature of it being a list, need more than 1 value to be called a list? If you know the format could you do some ugly code like If (Len(myList) LTE 16 !--- One Value List --- else !--- List me baby --- S -Original Message- From: Seth Johnson [mailto:[EMAIL

RE:Unable to Update the CFMX ODBC Server ( Was Error with Web Connector after installing CFMX 6.1)

2003-11-24 Thread Angel Stewart
I fixed this by using 127.0.0.1 . I've now run into another problem: Unable to update the ColdFusion MX ODBC Server. Timeout period expired without completion of F:\CFusionMX\db\slserver52\admin\swcla.exe I get this everytime I try to add a DNS through the CFMX Administrator. Any word

Re: ListFind() weirdness

2003-11-24 Thread Marlon Moyer
According to my help, the syntax for Listfind is ListFind(List,string,delemiters) I don't think that you can specify start position. Marlon Seth Johnson wrote: OK, so I'm having some weird behavior with ListFind() on CFMX and CF 5. Here's an example.I create a COMMA DELIMITED list of

RE: ListFind() weirdness

2003-11-24 Thread Bryan F. Hogan
There is nothing wrong with this. ListFind(list, value [, delimiters ]) The first instance. No delimiter is specified so comma would be default. Since your value is equal to the search string returns index 1. The second instance your delimiter is 1, since your value matches your search string

RE: Jar files not being read

2003-11-24 Thread Bryan F. Hogan
Don't you have to restart the service? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

preventing back button of browser

2003-11-24 Thread Ketan Patel
hi all, does anybodyknow a good way of preventingback button of browser. thanks, ketan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: ListFind() weirdness

2003-11-24 Thread Schuster, Steven
I suppose you could also do a find for the delimeter and if it is not found assume it is not a list as well. S -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 4:21 PM To: CF-Talk Subject: RE: ListFind() weirdness Wouldn't a list,

RE: ListFind() weirdness

2003-11-24 Thread Raymond Camden
ListFind doesn't accept a 'index' argument. The 3rd argument is the delimiter, which defualts to a comma. Now, the second example you used, where you passed 1 as the 3rd arg, should return 0 since 1 doesn't exist in the list. [Todays Threads] [This Message] [Subscription] [Fast

RE: Jar files not being read

2003-11-24 Thread Barney Boisvert
Yeah, done that about a million times.Actually got lazy enough to write myself an alias so I didn't have to type the whole command out every time. ; ) _ From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 1:25 PM To: CF-Talk Subject: RE: Jar files not being read

RE: ListFind() weirdness

2003-11-24 Thread Bryan F. Hogan
1 is the delimiter. It should return 1 as it correctly does. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 4:27 PM To: CF-Talk Subject: RE: ListFind() weirdness ListFind doesn't accept a 'index' argument. The 3rd argument is the

RE: Auto-Populate a Word Document

2003-11-24 Thread Samuel R. Neff
Even MS tells you to never do this. Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, DCOM, and NT Services), because Office may exhibit unstable behavior

Re: ListFind() weirdness

2003-11-24 Thread Chris Stoner
ListFind(list, value [, delimiters ]) The third argument of ListFind is not starting position but rather it is the lists delimiter.So your 1 and 2 delimited list does have exaclty 1 list item (as there are no 1's or 2's in your number). - Original Message - From: Seth Johnson To:

Re: preventing back button of browser

2003-11-24 Thread Marlon Moyer
Ketan, There doesn't seem to be a foolproof way of preventing the back button. Your best bet, IMHO, is to handle it with server side logic. Marlon Ketan Patel wrote: hi all, does anybodyknow a good way of preventingback button of browser. thanks, ketan [Todays Threads] [This

RE: preventing back button of browser

2003-11-24 Thread cf-talk
Technically there really isn't anyway to prevent a back button from being clicked... BUT... you can use _javascript_'s location.replace() function to overwrite the current page location in your browser. Essentially what you'll end up with is a page that has no history so the back button won't be

RE: Auto-Populate a Word Document

2003-11-24 Thread Bryan F. Hogan
Sam most of us know this. I in fact detest using office for anything. However clients want certain things and when they have seen it done on other sites, and management insists on giving them this ability it is our obligations as paid employees to do what is asked. -Original Message-

Re: preventing back button of browser

2003-11-24 Thread Mahmut Basaran
I wrote that script a while (2 years something) ago with my friend Joseph Thompson (also from the list). http://cfhub.com/contributions/backbutton/ you can probably improve the code (to make it less), anyway, it should be fine as it is. completely server side logic, there is also a live demo you

Re: ListFind() weirdness

2003-11-24 Thread Marlon Moyer
I would think it should pass back 1 since it will treat the string as a 1 element string regardless of what delimiter you specify if it can't find that delimiter. Raymond Camden wrote: ListFind doesn't accept a 'index' argument. The 3rd argument is the delimiter, which defualts to a comma.

RE: ListFind() weirdness

2003-11-24 Thread Raymond Camden
Yea yea, I was wrong about that part. Sorry folks. I blame it on the snow in Salt Lake... :) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:ListFind() weirdness

2003-11-24 Thread Seth Petry-Johnson
According to my help, the syntax for Listfind is ListFind(List,string,delemiters) (banging head on keyboard, wall, and anything else hard) I am such an idiot.You're completely right.What a rookie mistake to make, and I've been at this game WAY to long to be making rookie mistakes.Doh! Thanks

Re: DW extension keyboard shortcuts

2003-11-24 Thread Massimo, Tiziana e Federica
That's what I assumed would happen.It happily displays on the Commands menu, but no dice in the keyboard shortcut screen. That's because the entry under the Commands menu are dinamycally generated by DW. You need to hardcode the entry inside menus.xml in order to have it show inside the

RE: DW extension keyboard shortcuts

2003-11-24 Thread Barney Boisvert
That would explain it.much thanks. cheers, barneyb _ From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 2:18 PM To: CF-Talk Subject: Re: DW extension keyboard shortcuts That's what I assumed would happen.It happily displays on the Commands

SOT: good place to find contractors?

2003-11-24 Thread chris petersen
Anyone know a good place to look for CF contractors? Also, if anyone on list is seeking additional contract opportunities, please feel free to email me off list. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Jar files not being read

2003-11-24 Thread Barney Boisvert
Ok, get this, if I unzip the JAR to the WEB-INF/classes directory does NOT work.Unzip the JAR into a random directory, add that directory to the CF class path, and it'll work.Bizarre. Rather annoyed to have to litter my filesystem with random class files, but at least it works. cheers,

CVS

2003-11-24 Thread Daryl Walsh
when setting up cvs, do people generally have one cvs repository per 'version', i.e., development server = 1 cvs version. staging server = another and the live web site = a third? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: good place to find contractors?

2003-11-24 Thread Bryan Stevenson
Christry the CF-Jobs list if you haven't already ;-) .of course I will throw my company's hat into the ring.Full-time CF since 1998 (version 3.1) and we are in Canada...so the exchange rate will save some development cost. Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce

RE: Auto-Populate a Word Document

2003-11-24 Thread Samuel R. Neff
But there are lots of other ways to do the same thing.I just gave a preso at MAX going over 7 different ways to do this.Breezo with examples will be posted shortly. Best regards, Sam --- Blog: http://www.rewindlife.com Charts:

RE: good place to find contractors?

2003-11-24 Thread Jim T
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 3:52 PM To: CF-Talk Subject: Re: good place to find contractors? Christry the CF-Jobs list if you haven't already ;-) .of course I will throw my company's hat into the

  1   2   >