Re: real quick ot

2004-01-13 Thread jon hall
Subversion + TortiseSVN, took me a night to figure out the basics and a little longer to figure out the tricks. TortiseSVN integrates perfectly with Homesite since the top folder select window in HS is a standard windows explorer frame. Never having to worry about whether or not the code you have

Re: Giving up on DW 2004 MX

2003-10-16 Thread jon hall
Thursday, October 16, 2003, 10:37:33 AM, you wrote: MTeF I strongly disagree with this. Both about the documentation and the MF power MTeF :-) Oh really... :) MF Just tell me about something that you would like to implement as DW's MF extension and you can't due to the API's limitations For

Re: Giving up on DW 2004 MX

2003-10-16 Thread jon hall
Thursday, October 16, 2003, 2:20:37 PM, you wrote: MF Just tell me about something that you would like to implement as DW's MF extension and you can't due to the API's limitations For one example, setting focus. Focus needs to be able to be set from anywhere, to anywhere. This is especially

Re: Giving up on DW 2004 MX

2003-10-15 Thread jon hall
Yeah, that's the best part about it...but the script API is even less documented, and less powerful (can't call COM objects) than Homesite's. Once I figured it out, it left me wanting more power. There is a C API though. Here is shot of an extension I was making...it's docked on the far right.

java cfx tag - returning integer variable

2003-10-14 Thread jon hall
I'm having trouble setting an integer response variable in my cfx tag. Here is the compiler error: fedex.java:125: setVariable(java.lang.String,java.lang.String) in com.allaire.cfx.Response cannot be applied to (java.lang.String,int) response.setVariable(fedex.statusCode, result); Here is the

Re: java cfx tag - returning integer variable

2003-10-14 Thread jon hall
, just turn the int into a string. CD Try, CD response.setVariable(fedex.statusCode, result.toString() ); CD or CD String strResult = result.toString(); CD response.setVariable(fedex.statusCode, strResult ); CD -Original Message- CD From: jon hall [mailto:[EMAIL PROTECTED] CD Sent: 14

Re: Another HomeSite+ Scripting Question

2003-10-10 Thread jon hall
The way I figured it out was to look through the scripts included with Homesite... Other than those, here is a vtm I wrote to access a datasource and write out it's schema as a wddx packet if it helps. It's been a long time though...no guarantees it still works. Pretty much is a hacked up version

Re: Another HomeSite+ Scripting Question

2003-10-10 Thread jon hall
Totally missed that JScript clause in your question... You can access COM/ActiveX Objects from JScript, so you could just use ADO. cflib.org has a homesite udf browser that accesses a COM object if you want an example. -- jon mailto:[EMAIL PROTECTED] Friday, October 10, 2003, 2:38:57 PM, you

Re: Another HomeSite+ Scripting Question

2003-10-10 Thread jon hall
The OReilly ADO book is excellent if you can find it still. -- jon mailto:[EMAIL PROTECTED] Friday, October 10, 2003, 5:58:00 PM, you wrote: OH Well, obviously ... I just started.But I'm damn excited about figuring it OH all out.I've already written four scripts that will be very, very useful

Re: Another HomeSite+ Scripting Question

2003-10-10 Thread jon hall
I used it until there was a new version of Homesite or something that broke it...can't remember what exactly. Haven't had a chance to go grab the new version. Pretty cool little app though. -- jon mailto:[EMAIL PROTECTED] Friday, October 10, 2003, 5:29:38 PM, you wrote: RC Just curious, how

Re: CFMX and MSDE

2003-10-09 Thread jon hall
I haven't used MSDE, but for a while before 6.1, we had to use ODBC Socket because the Merant SQL Server drivers had intermittent performance issues. When we were running ODBC socket, we had a couple of issues with valid queries that would just bomb for no reason...but would work with the native

Re: CFMX MSXML

2003-10-09 Thread jon hall
Last I tried was 4.0. I think scaling from CF would depend on JIntegra, and I haven't run any real benchmarks either...simple timings. In a non-CF (ASP) environment though, I've seen msxml scale incredibly well. I currently have one site that uses both msxml and cfxml (i know, i know...it was

Re: Date Picker

2003-10-07 Thread jon hall
http://dynarch.com/mishoo/calendar.epl If you have any questions on how to make certain days unselectable let me know...I had to do it for this calendar recently. It has a built in way to enable it, but it's not obvious at first glance. -- jon mailto:[EMAIL PROTECTED] Tuesday, October 7,

Re: FYI

2003-10-07 Thread jon hall
Can anyone clarify that the reason the js workaround will work is because the lawsuit had only to do with html embedding? If a _javascript_ does the actual embedding, this bypasses the patent? -- jon mailto:[EMAIL PROTECTED] Tuesday, October 7, 2003, 1:58:40 PM, you wrote: CL Here is the link

Re: Tried the other fix and it did not work either

2003-10-07 Thread jon hall
Since I suspect a lot of people are going to be using document.write soon, this Homesite/Studio script is really great. Just highlight the html you want to translate into document.writes and click the button and your done. http://www.sam-i-am.com/work/homesite/hs_docwrite.html -- jon

Re: Server Slowness

2003-10-03 Thread jon hall
Have you read the technotes on MM's site about the DB driver issues that can cause this type of behavior? There are a couple of them, and they are very detailed...more than I could summarize here. -- jon mailto:[EMAIL PROTECTED] Friday, October 3, 2003, 1:03:12 PM, you wrote: RB Does anyone

cfstoredproc generator

2003-10-02 Thread jon hall
Does anyone have a program that will generate cfstoredproc statements for SQL Server stored procedures laying around? I had one...and I even built one in the past but, I don't have mine here, and the one from the (oh so reliable) dev exchange is not available anymore apparently. I have like 30

Re: CFMX 6.1 on Windows 2003 = Service Unavailable !!!

2003-10-02 Thread jon hall
What is *.htm mapped to in IIS? I'm not in front of a Win2k3 machine but I remember there being a wildcard mapping that CF used as well. It sounds like to me that the CF mappings are still hanging around. Make sure you backup the IIS metabase xml file... -- jon mailto:[EMAIL PROTECTED]

Re: Reusing COM objects?

2003-09-29 Thread jon hall
How about something like this... FileLib.cfc cfcomponent cfset this.fso = CreateObject(COM, Scripting.FileSystemObject) function FolderSize(path) { Var folder = this.fso.Getfolder(path); Return folder.Size; } etc... /cfcomponent Store it in the application scope like so. cfset

Re: credit card test numbers

2003-09-29 Thread jon hall
http://www.verisign.com/support/payflow/pro/pfptestprocess.html -- jon mailto:[EMAIL PROTECTED] Monday, September 29, 2003, 2:41:08 PM, you wrote: RO I'm testing out the use of our CF validation script for credit cards. I don't want to use real cc numbers. Anyone know of test numbers to use

Re: OT: Computer Desk for Multiple Monitors...

2003-09-29 Thread jon hall
Totally functional...room for everything. When you move, it doesn't have to be taken apart, and if you want to customize it, you can break out the tools, or paint, and not worry about screwing up an expensive computer desk. I have two of them in my computer room at home currently.

Re: Parsing hyperlinks and name

2003-09-26 Thread jon hall
I had to do this just recently.a href="">\1 will be the href, and \2 will be the text between the tags.This will work across linebreaks, if the regex engine does multiple lines.I have no clue how CF handles backreferences, or multiple linesthough.-- jon mailto:[EMAIL PROTECTED]Friday, September

Re: Auto Pinging Script?

2003-09-24 Thread jon hall
For 15 pings? Sheesh man...just filter icmp and be done with it if that's the way you feel. How are you counting and triggering the events? I could see doing this with IDS, but would think doing something like that on the router would cause performance issues if the counter window was long enough.

Re: Auto Pinging Script?

2003-09-24 Thread jon hall
What I want to know is if they capture the packet's...do they sending them to the electric chair? :) I can see how Doug's strategy could be extremely effective... Personally I'd set it a few notches higher, but there are definitely times when we have been under DOS attack that I wished we had

ot: verify image exists

2003-09-18 Thread jon hall
Does anyone know of a tool that can spider a web site and let me know if an image exists or not? -- jon mailto:[EMAIL PROTECTED] ~| Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137569 Archives:

Re: Reindex field: WAS order and re-oder

2003-09-18 Thread jon hall
Select out the fields to be reindexed, order by the sort order field. cfloop query=qryName cfquery... UPDATE Table SET SortOrder = #qryName.currentRow# WHERE SortOrder = #qryName.SortOrder# /cfquery /cfloop -- jon mailto:[EMAIL PROTECTED] Thursday, September 18, 2003, 3:32:28

Re: DNS, IIS Tags?

2003-09-17 Thread jon hall
http://www.intrafoundation.com/ihtk.asp Doesn't do DNS, but there is a free DNS COM object floating around, as well as some command line scripts that MS gives away to manage dns. I had a few issues with it in the past, but it's been a while, and it could have been my fault. Personally I'd go

Re: order and re-oder

2003-09-17 Thread jon hall
There are probably a lot of different solutions to this, but here's my suggestion. To put it simply, create a sort order field attached to each image. While the user is sorting, let them go at it, reordering however they want. When they are done, reindex all of the items they were sorting, and

Re: (Admin) List upgrades

2003-09-15 Thread jon hall
Not everyone's email client supports HTML email for good reasons. That means you either have to decide to require an HTML email client, which will definitely alienate some members, or go multipart alternative, which will end up increasing file size. Let me say, the first time I see purple (or any

Re: (Admin) List upgrades

2003-09-15 Thread jon hall
Took the words out of my mouth. I had to dig around, but I found the Netiquitte RFC. Section 2.1.1 http://www.dtcc.edu/cs/rfc1855.html This was really required reading back in the day. I can remember reading it over my 2400 baud :) -- jon mailto:[EMAIL PROTECTED] Monday, September 15, 2003,

Re: error template snippet

2003-09-12 Thread jon hall
CF_MailTemplateErrors is the best tag I've ever downloaded from the cf exchange. I use it on every site I do.

Re: Any way to get Homesite+ 5.5 without Dreamweaver?

2003-09-12 Thread jon hall
Yeah...I tried DW 2004... I tried navigating to this file I wanted to open, but I think I fell asleep actually trying to navigate to it with that lovely little file pane, but not before being amazed by how much time must have been spent on all those really cute, Fisher-Price looking, rounded edges

Re: Any way to get Homesite+ 5.5 without Dreamweaver?

2003-09-12 Thread jon hall
Friday, September 12, 2003, 12:26:07 PM, you wrote: RB Yeah? With all the MX family, CF is just one to many... In an RB unofficial quote it was stated here on this list that apparently the vast RB majority of CF developers use the free version and therefor the revenue is RB not there. This

Re: Anyone know of a decent SQL ide?

2003-09-12 Thread jon hall
Check out Embarcadero's DBArtisan...beware sticker shock though. -- jon mailto:[EMAIL PROTECTED] Friday, September 12, 2003, 12:36:54 PM, you wrote: C Hi everyone, C I am searching for a good SQL IDE. I currently use Query Analyzer, but C would really like to find something a bit more

Re: No so good news

2003-09-12 Thread jon hall
This is the first time they have made public the workarounds they are discussing. That's what is new. Since they have already lost in court, and the judge has not ruled on a punishment yet, he could potentially order Microsoft to stop shipping all versions of IE that infringe on the patent within

Re: kill all domain cookies

2003-09-11 Thread jon hall
Loop over the cookie struct, and set them all to expire now. cfloop collection=#cookie# item=i cfcookie ... expires=now /cfloop -- jon mailto:[EMAIL PROTECTED] Thursday, September 11, 2003, 2:47:05 PM, you wrote: TW hi there. TW made a change last night, and for some reason clients cant

Re: Paging Principals

2003-09-10 Thread jon hall
Since most people are not going to browse through all 100 pages of records, pulling a 1000 records for everyone, has some obvious inefficiencies. I'd go for individual queries on each page, but take the 8 join query out of CF, and make it a view. The view will help lessen the impact of that

Re: Command Line From CF?

2003-09-10 Thread jon hall
Use cfexecute to run command.com /c hrmc.cmd. -- jon mailto:[EMAIL PROTECTED] Wednesday, September 10, 2003, 2:39:40 PM, you wrote: HKAC After searching the web and CF archives ad nauseum, here's my simple but HKAC unanswered question: Can I run a .cmd file using CF? I have a file that HKAC

Re: Paging Principals

2003-09-10 Thread jon hall
AT is the inserting and updating on the underlying tables and what the AT performance hit will be on back-end processing updating the view, especially AT if you're relying on CF to do the inserting and updating. AT Mark AT -Original Message- AT From: jon hall [mailto:[EMAIL PROTECTED] AT Sent: Wednesday

Re: js question

2003-09-10 Thread jon hall
newCell.onMouseMove=doThis; -- jon mailto:[EMAIL PROTECTED] Wednesday, September 10, 2003, 2:09:38 PM, you wrote: JM Hi, JM I You can dynamically create tr and td elements on the fly, JM like, JM var newRow=cell_root_table.insertRow(0) JM then add attributes like, JM newRow.vAlign='top'

Re: Redirecting URLs at Intermedia.net

2003-09-05 Thread jon hall
!--- If IP address... --- cfif isNumeric(replace(variables.domain, ., , ALL)) No domain found. cfabort /cfif !--- Get actual domain name, ignoring subdomain --- cfif listLen(cgi.http_host,'.') GT 1 cfset variables.domain = mid(cgi.http_host, find('.', cgi.http_host,1),

Re: How do your ISPs handle CF mappings?

2003-09-05 Thread jon hall
If any developer asked for a mapping, I'd create it while they were on the phone. Although we are pretty small and know just about every CF developer who uses our servers, so we tend to be fairly trusting. -- jon mailto:[EMAIL PROTECTED] Friday, September 5, 2003, 4:41:46 PM, you wrote: AC I

archive and deploy from 6.0 to 6.1?

2003-09-05 Thread jon hall
Is it possible to create a car archive on a 6.0 updater 3 machine and deploy it on a 6.1 machine? -- jon mailto:[EMAIL PROTECTED] ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

Re: OT: SQL - Selecting a Month

2003-09-04 Thread jon hall
What John says is correct...your syntax will work in SQL Server. If you are using some other database you will probably want to look at datepart(). -- jon mailto:[EMAIL PROTECTED] Wednesday, September 3, 2003, 4:56:31 PM, you wrote: BG I know there is an easy answer to this that's escaping me

Re: Error when trying to create a datasource from the CFMX Administrator

2003-09-03 Thread jon hall
What kind of database? -- jon mailto:[EMAIL PROTECTED] Wednesday, September 3, 2003, 9:55:40 AM, you wrote: AC I get this error when I try to create a data source AC from the CFMX Administrator. AC Element ISJ2EE is undefined in DS. AC The error occurred in AC

Re: Error when trying to create a datasource from the CFMX Administrator

2003-09-03 Thread jon hall
Did you recently upgrade the server to a different version of CF? I saw a couple of people reporting this after the 6.1...I don't know how it was resolved, but if the old compiled class files for those admin pages are still hanging around and this isJ2EE function didn't exist previously, that

Re: DWMX 2004 - Whats new for us?

2003-09-03 Thread jon hall
There is a simple java.io.filereader example in the advanced book from Forta... -- jon mailto:[EMAIL PROTECTED] Wednesday, September 3, 2003, 2:33:50 PM, you wrote: FB Matt, FB Where would one find documenation on who to use java.io.file in Coldfusion MX? FB Thanks, FB -Brad FB

CFMX and INI Files

2003-08-30 Thread Jon Hall
Check out getProfileSections() I have a ini file that I am trying to read in that contains settings for an application. I know what all of the sections are, but there are a couple of sections whose entries are dynamically named. Is there a way to get a list, structure, whatever of all of the

QofQ caching question

2003-08-30 Thread Jon Hall
When I do a QofQ, do I have to cache the original query? Nope I'm trying to speed up a page that appears to be bogged down with queries, but it doesn't appear to make any difference in speed whether I cache the original query or not. Unless you are talking about an extreme number of them,

WOT: design of networking site

2003-08-30 Thread Jon Hall
You will need a tree of some sort, and I'm tempted to say you might need to have to walk the tree, as I can't think of any other way to discover friends of friends x number of levels away. Could be a creative solution though...friendster may cheat in some way. According to this page Friendster

Box Highlights of hover/active links.

2003-08-29 Thread Jon Hall
Works in IE/Moz...don't know about anything else. This is a global solution...might want to hack it up if you want only specific links. script type=text/javascript function removeLinkClickBorders() { for (i = 0; i document.links.length; i++) { document.links[i].onclick = _killborders;

Re: OT: Input box

2003-08-21 Thread jon hall
input type=Text style=text-align: right -- jon mailto:[EMAIL PROTECTED] Thursday, August 21, 2003, 9:13:25 AM, you wrote: DSJA Sorry about the OT, by I have a really short deadline on this. DSJA Is there any way to make an input box right align the information inside it? DSJA If so, how?

Re: HTTP Post o a CFM page

2003-08-21 Thread jon hall
getHttpRequestData() -- jon mailto:[EMAIL PROTECTED] Thursday, August 21, 2003, 3:11:07 AM, you wrote: D Hi, D I have an application (MS Infopath) which sends a HTTP Post to a CFM page D How can I retrieve the data send by this application. I can't see anything D in any scope ( form, url,

Re: CSS guidelines

2003-08-21 Thread jon hall
Nothing really important, other than the ability to do a few extra things to a span, like positioning. Might be useful if there was already a css rule set for the td and you wanted to override one of them for one particular element, or you wanted to style only some of the contents of the td. Also

Re: Can CF Detect a Win32 Service?

2003-08-20 Thread jon hall
The standard way to check a Win32 service is ADSI. Since ADSI doesn't have a standard COM interface even though it acts like it, it couldn't be accessed from CF previous to MX. However...since JIntegra does have support for ADSI, I'm thinking MX just might be able to talk to active directory.

Re: OT: packet sniffer

2003-08-18 Thread jon hall
http://www.effetech.com/sniffer/ -- jon mailto:[EMAIL PROTECTED] Monday, August 18, 2003, 11:21:58 AM, you wrote: MTT I am in the hunt for a tool that will allow me see the http traffic to and from ym machine. I am trying to debug an application that makes http posts to some servers and

Re: XML Best Practices - Resources

2003-08-14 Thread jon hall
When I have these questions, I usually check what ebXML says about it. http://www.ebxml.org/specs/ebrim2.pdf Click on Class TelephoneNumber in the Bookmarks. If only there was a similar object/method naming standard, I'd be a happy man. -- jon mailto:[EMAIL PROTECTED] Wednesday, August 13,

Re: good open source CF5 CMS

2003-08-14 Thread jon hall
I can't speak to the features, but Spectra is going open source later this year. http://spectrasource.macromedia.com/ -- jon mailto:[EMAIL PROTECTED] Wednesday, August 13, 2003, 11:51:22 AM, you wrote: G I'm searching around the web for options, but I thought I'd ask here if G anyone has

need another set of eyes...

2003-08-14 Thread jon hall
cfquery datasource=files name=f SELECT filename, desc FROM [results.txt] /cfquery cfloop query=f cfif len(trim(f.filename)) NEQ 0 cfquery datasource=seloc_cart INSERT INTO NavContentOld (page, description) VALUES ('#f.filename#',

Re: CF or .DotNet what do you think?

2003-08-12 Thread jon hall
Have you thought about moving to straight Java for your controller and model, and just use CF where it's best, for the UI? Friday, August 8, 2003, 5:12:01 AM, you wrote: OT Problem Areas: OT Object orientation (or lack thereof) and the implementation of it in CF, OT performance of CFCs (found

regex - match all text before literal

2003-08-06 Thread jon hall
How would I go about matching all of the text before a known literal string that I specify? I know ^ is beginning of line, but can't find out beginning of file with many lines. Is there a counterpart for the end of a file? What I've got is a bunch of html files that I need to delete all

Re: New LiveDocs system!

2003-08-04 Thread jon hall
I would really be curious what the person who developed these styles declarations was thinking... The negative left margins are way way out of kilter with reality for h1 and h2 and cause the contents of these tags to be rendered half off the screen. H1, .heading1 { margin-left:-48px;

Re: An ISP's Dream: Extensions in one sandbox, client code in another

2003-08-04 Thread jon hall
I didn't read all the way back through the thread, but why is it important that they use each others code in the first place? Obviously code reuse is a good thing, but you never explained why it was important for you. In most places...if the boss says, use this code, it should to be used, and if

Re: ezedit

2003-08-04 Thread jon hall
Updated the codebase, but they took out the image upload ability from soEditor. Plus iirc the license is more restrictive for the free soEditor. -- jon mailto:[EMAIL PROTECTED] Monday, August 4, 2003, 12:59:08 PM, you wrote: BFH Check out soEditor, soeditor is the long ago updated version of

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread jon hall
Mozilla supports this as well. Some slight differences in syntax though. For that matter though, Flash would obviously support this as well... -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 12:47:19 PM, you wrote: JG If you are in an Intranet setting and are using IE, you can use an

Re: OT: selling blood

2003-08-01 Thread jon hall
No thanks...I get my blood for free. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:00:00 PM, you wrote: LCD I'm ready to sell blood. Does anyone need any? LCD Thanks. ~| Archives:

Homesite and CF mappings

2003-08-01 Thread jon hall
This has been bugging me for a while, and I was wondering if anyone had thought of a creative solution. I love Homesite's right-click edit include file feature, but it wont work with mappings obviously. Any ideas? -- jon mailto:[EMAIL PROTECTED]

Re: Homesite and CF mappings

2003-08-01 Thread jon hall
Sorry, MX type mappings. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:38:26 PM, you wrote: T It's working for me on mappings? Please clarify what you mean by T 'mappings' - are you talking about CFMX mappings or are you talking network T mappings? I'm guessing cfmx mappings.

Re: Homesite and CF mappings

2003-08-01 Thread jon hall
One possibility is junctions. I'd rather not have to create a junction for each mapping though. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:57:18 PM, you wrote: T Seeing that there's no way for HomeSite to get the mapping information from T CFMX, I don't see how this is

Re: The Ongoing Saga of the Dead Session Variable

2003-07-31 Thread jon hall
cfset rs = structClear(session) or reboot the server obviously... -- jon mailto:[EMAIL PROTECTED] Thursday, July 31, 2003, 3:22:58 PM, you wrote: RC Shutting down the client computer certainly hasn't helped. Seriously. RC We have a theory that perhaps the session variables that are stored

Re: Performance monitor custom tag

2003-07-30 Thread jon hall
cfset stPerf = GetMetricData(PERF_MONITOR) cfloop collection=#stPerf# item=counter cfoutput#counter#: #stPerf[counter]#/cfoutputbr /cfloop I think there may be something you have to do in MX in the admin to get this working, haven't tried it yet. -- jon mailto:[EMAIL PROTECTED] Wednesday,

Re: Performance monitor custom tag

2003-07-30 Thread jon hall
The code I got from a post to cf-talk a long time ago... It's just the standard perfmon data though. I haven't tried getting anything else with it, but the docs mention some other interesting data that is available. -- jon mailto:[EMAIL PROTECTED] Wednesday, July 30, 2003, 4:01:55 PM, you

Re: Caching until updated

2003-07-30 Thread jon hall
I'm going OT, but where did you get that tag syntax style? That's the first I've ever seen anything like it. Or is it just a typo? -- jon mailto:[EMAIL PROTECTED] Wednesday, July 30, 2003, 5:32:34 PM, you wrote: IS cfquery name=Days datasrouce=dsn cachedwithin(createTimeSpan(7,0,0,0))

setting sql isolation levels within cfquery

2003-07-29 Thread jon hall
When setting the an isolation level on a transaction within a cfquery block affect future queries on the same connection? This page seems a bit contradictory on the subject. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_set-set_74bw.asp If so, should I

Re: The death of a session variable?

2003-07-29 Thread jon hall
Blocking of session cookies is _not_ default IE6. IE6 will block cookies if they are set by a third party by default, that's it. Creating a p3p policy file can allow bypass of this. -- jon mailto:[EMAIL PROTECTED] Tuesday, July 29, 2003, 4:46:00 PM, you wrote: JB Richard, JB Is this

Re: CFRETURN has incorrect documentation

2003-07-28 Thread jon hall
multiple cfreturn's? Does it just return the second value or what? -- jon mailto:[EMAIL PROTECTED] Monday, July 28, 2003, 2:05:12 PM, you wrote: BH CFRETURN's documentation says that a maximum of one CFRETURN is allowed per BH function. But I have code that does multiple CFRETURNs and it

Re: Problem using XML in CFMX...

2003-07-25 Thread jon hall
Can you give an example of the xml and tell us which line it is happening on? The error is probably either happening here: CFSET Variables.xml_rootname=#stConvertedDom.document.root.name# or CFIF Variables.xml_rootname IS Something It could be CF is seeing the quotes and trying to convert

Re: SOT: Remoting?

2003-07-24 Thread jon hall
I'd assume for the same reason you would need to know javascript when developing for a browser. Since all the cool stuff is client side in the Flash plugin, actionscript is probably even a more necessary skill. But I guess like now with browsers, a developer could get away without knowing

Re: CF Administrator Jibberish HELP

2003-07-24 Thread jon hall
I'd check the IIS mappings for the CFIDE virtual directory, and make sure cfm files are being sent to the CF dll. -- jon mailto:[EMAIL PROTECTED] Thursday, July 24, 2003, 2:45:53 PM, you wrote: PB Thanks. The rest of my site is running fine, but for some reason the administrator file won't

Re: cookie detection

2003-07-23 Thread jon hall
Using CF alone as mentioned requires two pages, but you can do it with javascript in one. Depending on how your entrance page is set up, you could write out the hrefs with js or something similar so the cookie detection looks transparent to the user, and more importantly, to search engines.

cfimport and cfoutput group - bug?

2003-07-23 Thread jon hall
When outputting a query with cfoutput group, and using a cfimported custom tag inbetween, cfoutput does not output all the records...only the grouped ones. I tested both cfmodule and a shorthand custom tag under MX UD3 default JRE and they also exhibit this behavior. A CF5 custom tag

Re: is this possible? the css dilema

2003-07-23 Thread jon hall
I would agree, and that's why I think Royale will be a big hit. http://www.macromedia.com/special/royale/ -- jon mailto:[EMAIL PROTECTED] Wednesday, July 23, 2003, 7:38:30 PM, you wrote: DL this talk about css and broswers had me thinking. DL is it within the realm of flash mx to do this or

Re: qForms (was Re: CFForm madness. 0_0)

2003-07-22 Thread jon hall
This describes my attitude as well, and to segue a bit, how do you feel about Flash/Actionscript? On the surface...I keep thinking to myself that I should love Actionscript, it's really all that Javascript wants to be, but I keep getting frustrated with it. I think it comes down to two problems

Re: qForms (was Re: CFForm madness. 0_0)

2003-07-22 Thread jon hall
I don't mean efficient as in the amount of time it takes to code (obviously using a pre-built api saves coding time), I mean time to learn + coding time. When I weigh, the time it would take to get comfortable with an API versus rolling my own, the time gained by using something other than the

Re: defaults in Access

2003-07-22 Thread jon hall
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acfundsql.asp The DEFAULT statement can be executed only through the Jet OLE DB provider and ADO. It will return an error message if used through the Access SQL View user interface. If you are doing this from CF, maybe

Re: dynamic naming???

2003-07-22 Thread jon hall
Can you use a structure instead of all these arrays? cfset container = structNew() cfloop ... index=j cfset container[j] = arrayNew(1) /cfloop Then it's container[j][i] to access the array. -- jon mailto:[EMAIL PROTECTED] Tuesday, July 22, 2003, 5:46:48 PM, you wrote: B trying to

displaying time in hours

2003-07-21 Thread jon hall
I'm working with some time increments that were entered into the database in decimal format. 1.5 is 1 hour 30 minutes... Can anyone think of a way to format 1.5 as 1:30, or .75 as :45, etc? -- jon mailto:[EMAIL PROTECTED]

Re: Date picker widget.

2003-07-21 Thread jon hall
This is as slick as they come. http://students.infoiasi.ro/~mishoo/site/calendar.epl I haven't had a chance to use it yet...been trying to find an excuse really hard :) -- jon mailto:[EMAIL PROTECTED] Monday, July 21, 2003, 1:31:20 PM, you wrote: IS Ok, what is everybody's favorite date

Re: ergonomics

2003-07-21 Thread jon hall
Ditto the natural keyboard. I had very bad carpal all the way up to my elbow, then switched to the MS natural and haven't had any pain since. -- jon mailto:[EMAIL PROTECTED] Monday, July 21, 2003, 3:19:32 PM, you wrote: WW I use a Natural Keyboard and i have 2 long gel strips that cover the

Re: Chr in CF MX and ASP 3.0

2003-07-18 Thread jon hall
They all look the same to me...I think something is not translating to email correctly. -- jon mailto:[EMAIL PROTECTED] Friday, July 18, 2003, 3:22:02 PM, you wrote: H CF H ASP H 216--Ø 216--Ø H 227--ã 227--ã H 198--Æ 198--Æ H 104--h 104--h H 226--â 226--â

Re: cfimport

2003-07-17 Thread jon hall
Unfortunately mappings are not supported by cfimport...only relative paths. http://blog.daemon.com.au/archives/000143.html -- jon mailto:[EMAIL PROTECTED] Thursday, July 17, 2003, 10:31:32 AM, you wrote: JT Hi, JT How do I import my tag libs? Can I use a mapped directory for my taglibs? It

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
cfimport taglib=..\extensions\customtags\ui prefix=asp asp:input type=text ... / See where I'm going with this? Tell me where the app logic is required... -- jon mailto:[EMAIL PROTECTED] Thursday, July 17, 2003, 12:20:37 PM, you wrote: ksc The paragraph is correct. ksc You can write a

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
there... ksc - Original Message - ksc From: jon hall [EMAIL PROTECTED] ksc Date: Thursday, July 17, 2003 10:38 am ksc Subject: Re: MSDN on CF - ASP.net cfimport taglib=..\extensions\customtags\ui prefix=asp asp:input type=text ... / See where I'm going with this? Tell me where the app

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
Thursday, July 17, 2003, 1:31:31 PM, you wrote: ksc What if I don't want the default value? ksc How do I change the size of the texbox? ksc How do I change the maxlength of the textbox? ksc How do I attach JavaScript to the textbox? Come on...you know as well as I do what the answers to these

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
Ok...if you insist. input.cfm: cfparam name=maxlength default=255 cfparam name=width default=462 cfparam name=type default=text cfparam name=value default=Hello There! cfif isDefined(caller.form) cfset value=Form submit successful! /cfif input id=#attributes.id# type=#type# width=#width#

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
spotted a bug...need name parameter. oops :) name = id -- jon mailto:[EMAIL PROTECTED] Thursday, July 17, 2003, 2:28:36 PM, you wrote: jh Ok...if you insist. jh input.cfm: jh cfparam name=maxlength default=255 jh cfparam name=width default=462 jh cfparam name=type default=text jh cfparam

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
, you wrote: ksc As with Raymond's suggestion, you can't change them at runtime. ksc - Original Message - ksc From: jon hall [EMAIL PROTECTED] ksc Date: Thursday, July 17, 2003 12:28 pm ksc Subject: Re: MSDN on CF - ASP.net Ok...if you insist. input.cfm: cfparam name=maxlength default

Re: MSDN on CF - ASP.net

2003-07-17 Thread jon hall
Ok, I see what you mean...it really comes down to CF's lack of event's then, not CF's lack of ability to separate UI from logic. If you count Flash as CF's UI layer though...an argument could be made that it does have events though. CF Flash Event Web Service CF Flash UI change...whew :)

dsn problems

2003-07-16 Thread jon hall
We have an MX install here that has been having a strange problem connecting to SQL Server databases. When actually registering the datasource...it takes about ~30 seconds before it actually succeeds. The problem also shows up in apps running on the machine. There is a huge delay in page

Homesite 5.2 imagemap editor

2003-07-16 Thread jon hall
Anyone know if the 5.2 Homesite+ update broke the Imagemap editor? None of the machines that have Homesite+ 5.2 will display the images in the editor. This did work previously to the update according to one of the guys here. -- jon mailto:[EMAIL PROTECTED]

  1   2   3   4   5   6   7   8   9   10   >