RE: JavaScript question??How can i select multiple values in sele ct box programmatically

2003-08-25 Thread Dave Watts
How can i select multiple values in select box programmtically? I tried with selectedIndex but it is selecting the last one of them. I should be able to select muliple values? How can i select multiple values programmatically in the example given below (If select box is with multiple )?

New offerings from the Mothership...

2003-08-25 Thread David K
MX2004 http://www.macromedia.com ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe:

Timeformat incorrect

2003-08-25 Thread Mak Wing Lok
I'm using oracle and when I try to disply time using timeformat (#timeformat(date1,HH:mm:ss)#) from one of the date field, it returns 0:00:00, why was that? Any advise? --- Pharmaniaga Berhad, your integrated healthcare

Re: New offerings from the Mothership...

2003-08-25 Thread Kevin Graeme
Oy. More upgrading. Looking at DW2k3, the new CSS features look really nice (though strangely familiar). Did MM buy out Bradbury, or did Bradbury not patent their interface? The new siteless editing will probably be the single most important change for most developers. -Kevin - Original

multiple user login

2003-08-25 Thread Margrit John
I would like to have two applications of Mozilla open on the same machine and login on each application with a seperate user. Margrit Margrit John wrote: I' am using CF MX and made a login with cflogin. IE allows on the same computer multiple different users to login. Mozilla accepts

Re: New offerings from the Mothership...

2003-08-25 Thread Michael Dinowitz
Now that its released I've got to say that Flash Pro is cooler than cool. It's going to allow a lot of us Flash-phobic (really timeline-phobic) people to really get into Flash development. http://www.macromedia.com/software/flash/productinfo/features/static_tour/application/index.html#01 The next

Re: multiple user login

2003-08-25 Thread Jochem van Dieten
Margrit John wrote: I would like to have two applications of Mozilla open on the same machine and login on each application with a seperate user. Since you can't open multiple Mozilla's at the same time, this is not possible. (If you look at the process list, you will see that no matter

Re: Creating a list of myQUERY.recordcount

2003-08-25 Thread Jochem van Dieten
Les Mizzell wrote: Need to build a list of record counts What's wrong with this? cfoutput query=BUILDINGS !--- RUN A SUB QUERY TO COUNT THE ROOMS --- cfquery name=roomCOUNTER datasource=term SELECT * FROM Q_D2 WHERE ACTPRYSID = #BUILDINGS.PRYSID#

Re: New offerings from the Mothership...

2003-08-25 Thread Calvin Ward
I'm thinking the performance stuff will top that... This, Dreamweaver has been re-architected to improve performance in key areas such as opening and saving files, switching context, and switching in and out of the application., stands out as the time that DW really impacts my workflow. - Calvin

RE: Creating a list of myQUERY.recordcount

2003-08-25 Thread Tyagi, Badal
cfset COUNT_LIST = cfoutput query=BUILDINGS !--- RUN A SUB QUERY TO COUNT THE ROOMS --- cfquery name=roomCOUNTER datasource=term SELECT * FROM Q_D2 WHERE ACTPRYSID = #BUILDINGS.PRYSID# /cfquery cfset COUNT_LIST = ListAppend(COUNT_LIST,

RE: SQL aggregate question

2003-08-25 Thread Bill Grover
Try this: select count(ptssn) as numid, sum(sumar) as totalar from (select ptssn, sum(arbalancedue) as sumar from ga_temp group by ptssn having sum(arbalancedue) 50 ) arsum __ Bill Grover

Overlapping Security Sandboxes in MX?

2003-08-25 Thread Richard Heiser
Hello! I teach a few ColdFusion classes and have to admin the CF Server in a lab I share with other instructors. I am thrilled with MX's security sandboxes but profoundly disappointed by the folks at MM apparently missing what to me seems like the next obvious step: overlapping security

RE: Return Subquery as text string? MSSQL

2003-08-25 Thread Bill Grover
With MSSQL 2000 you can create UDF's. Your UDF would be the following, this is the only way I can think of to solve your issue. CREATE FUNCTION scalar_function_name (@tnUserid int) RETURNS varchar(4000) AS BEGIN declare @Worklist varchar(4000) set @Worklist = ''

RE: Return Subquery as text string? MSSQL

2003-08-25 Thread Bill Grover
It might have help to show how to use it. Assuming you named your function f_OrderList: select UserID, Name, dbo.f_OrderList(UserID) as Orders From Users __ Bill Grover Supervisor MIS Phone: 301.424.3300 x3324

RE: JavaScript question??How can i select multiple values in sele ct box programmatically

2003-08-25 Thread siva girumala
Thank you, Dave. --Siva Girumala --- Dave Watts [EMAIL PROTECTED] wrote: How can i select multiple values in select box programmtically? I tried with selectedIndex but it is selecting the last one of them. I should be able to select muliple values? How can i select multiple values

RE: SQL aggregate question

2003-08-25 Thread Dan O'Keefe
Try this: select count(ptssn) as numid, sum(sumar) as totalar from (select ptssn, sum(arbalancedue) as sumar from ga_temp group by ptssn having sum(arbalancedue) 50 ) arsum __ Bill Grover

Re: multiple user login

2003-08-25 Thread Christian Cantrell
On Monday, August 25, 2003, at 03:27 AM, Margrit John wrote: I would like to have two applications of Mozilla open on the same machine and login on each application with a seperate user. I just wrote about this last week in a post entitled Separating Sessions from Cookies:

RE: SQL aggregate question

2003-08-25 Thread Bill Grover
Your welcome, I saw Jochem's solution after I sent mine. I had sorted my messages by subject and his answer was in a different location than your message so I didn't realize he had answered it. No harm done. __ Bill Grover Supervisor

RE: New offerings from the Mothership...

2003-08-25 Thread Angel Stewart
So..does this new flash simplify creating forms for the internet and linking controls to database tables? And what of the new Actionscript model, has the language been completely re-worked? Is it more CFML-like...or more VB like? Or...is it more Java,C++ like? -Angel -Original

RE: New offerings from the Mothership...

2003-08-25 Thread Tony Weeg
so I wonder, do current dwmx and cfmx subscription homeys get upgrade copies? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: New offerings from the Mothership...

2003-08-25 Thread Ben Forta
The biggest change in ActionScript 2 is that it is matches the ECMAScript 4 standard. (See http://www.mozilla.org/js/language/es4/). In practice, AS2 is an object oriented language (with full support for classes, inheritance, and more). --- Ben -Original Message- From: Angel Stewart

Re: New offerings from the Mothership...

2003-08-25 Thread Michael T. Tangorre
Awesome! - Original Message - From: Ben Forta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 25, 2003 9:55 AM Subject: RE: New offerings from the Mothership... The biggest change in ActionScript 2 is that it is matches the ECMAScript 4 standard. (See

Query of Query error

2003-08-25 Thread Jeff
I'm performing a couple of verity searches, and then performing a query of a query to union the results and I'm getting the following error, that I'm really unfamiliar with... Query Of Queries runtime error. All resulting columns of queries in a SELECT statement containing a UNION operator must

MX Tag Updater

2003-08-25 Thread Brad Roberts
The ones on Macromedia's site do not have the new CFMX TagDefs. I've downloaded them before, but can't find them. Anyone know where I can get them? -Brad ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4

Re: MX Tag Updater

2003-08-25 Thread Todd Rafferty
http://www.macromedia.com/software/coldfusion/downloads/ At 10:23 AM 8/25/2003, you wrote: The ones on Macromedia's site do not have the new CFMX TagDefs. I've downloaded them before, but can't find them. Anyone know where I can get them? -Brad -- Todd Rafferty ([EMAIL PROTECTED]) -

Re: New offerings from the Mothership...

2003-08-25 Thread Mike Chambers
Yes. With the new Forms / Screens mode, along with the data connection components. mike chambers [EMAIL PROTECTED] - Original Message - From: Angel Stewart [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 25, 2003 9:44 AM Subject: RE: New offerings from the

RE: New offerings from the Mothership...

2003-08-25 Thread Angel Stewart
So anyone looking to make a purchase of the MX Suite should hold off until this is released? Or is there a trade-up option being made available if you purchase the current MX Suite after a certain date? Is it as simple as...say creating a form in MS Access (about the easiest thing I can think

RE: Overlapping Security Sandboxes in MX?

2003-08-25 Thread Blum, Jason (SAA)
Hey Richard, It's definitely not a looney idea. I have been wondering the same thing. -J Subject: Overlapping Security Sandboxes in MX? From: Richard Heiser [EMAIL PROTECTED] Date: Mon, 25 Aug 2003 05:26:51 -0700 (PDT) Thread:

RE: MX Tag Updater

2003-08-25 Thread Brad Roberts
Unless I'm totally missing something, here's what I see... - HomesiteTags.zip DOES NOT have TagDefs for CFMX tags - HomeSiteExtensions.zip has NO TagDefs whatsoever I'm I overlooking something obvious? -Brad -Original Message- From: Todd Rafferty [mailto:[EMAIL PROTECTED] Sent:

Re: New offerings from the Mothership...

2003-08-25 Thread Michael Dinowitz
If it's ECMA 4 then it has RegEx, right? The biggest change in ActionScript 2 is that it is matches the ECMAScript 4 standard. (See http://www.mozilla.org/js/language/es4/). In practice, AS2 is an object oriented language (with full support for classes, inheritance, and more). --- Ben

Re: New offerings from the Mothership...

2003-08-25 Thread Massimo Foti
If it's ECMA 4 then it has RegEx, right? RegExp were actually introduced with JavaScript 1.2 (NN 4 and IE 4) and improved with 1.5 (lazy quantifier, non capturing parenthesis, lookahead). As for RegExp in Flash, I don't think they are supported, long time ago I read an something from a MM

Re: New offerings from the Mothership...

2003-08-25 Thread Matt Liotta
Correct! On Monday, August 25, 2003, at 11:03 AM, Michael Dinowitz wrote: If it's ECMA 4 then it has RegEx, right? The biggest change in ActionScript 2 is that it is matches the ECMAScript 4 standard. (See http://www.mozilla.org/js/language/es4/). In practice, AS2 is an object oriented

Re: MX Tag Updater

2003-08-25 Thread Massimo Foti
http://www.macromedia.com/software/coldfusion/downloads/ Unless I'm totally missing something, here's what I see... - HomesiteTags.zip DOES NOT have TagDefs for CFMX tags - HomeSiteExtensions.zip has NO TagDefs whatsoever I'm I overlooking something obvious? The updaters above assume

CFMX J2EE on Tomcat missing CGI.Remote_User variable

2003-08-25 Thread Gormley Patrick-r34220
Anyone running Tomcat 4.1.27 with CFMX J2EE having problems with CGI.Remote_User variable being null? After running 6.1 with tomcat we are not getting the Remote user variable from apache http. Patrick Gormley ~|

Re: New offerings from the Mothership...

2003-08-25 Thread Mike Chambers
It is based on ECMA 4, but for Player size reasons, does not include RegEx. fyi, Macromedia Central does include RegEx. http://www.macromedia.com/software/central/ mike chambers [EMAIL PROTECTED] - Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: New offerings from the Mothership...

2003-08-25 Thread Calvin Ward
Free upgrade to anyone who purchases now from what I understand: ref: http://www.macromedia.com/software/studio/productinfo/faq/#item-15 If you bought Macromedia Studio MX between July 26, 2003 and 60 days after the first ship date of Macromedia Studio MX 2004, you may be eligible for a free

Re: New offerings from the Mothership...

2003-08-25 Thread Michael Dinowitz
I think you may be correct. It's an option in the search of flash (the application), but not in actionscript itself. I was just hoping I was wrong. If it is a size issue, then some sort of dynamically linked library might be nice. If you want RegEx, you include it in. If not, then it just isn't

RE: New offerings from the Mothership...

2003-08-25 Thread Raymond Camden
Could this not somehow be added to to the FLA file then, something like include regex? In other words, I need it for my app, it's an intranet, so size isn't really an issue. === Raymond Camden, ColdFusion Jedi Master for

Re: New offerings from the Mothership...

2003-08-25 Thread Massimo Foti
I think you may be correct. It's an option in the search of flash (the application), but not in actionscript itself. I was just hoping I was wrong. If it is a size issue, then some sort of dynamically linked library might be nice. If you want RegEx, you include it in. If not, then it just

How to handle

2003-08-25 Thread Neculai Macarie
How do you handle missing required variables (like an id that is required to display some info about a product, or when the id is not numeric) ? I was thinking of something like an assert function, but I would like to know what others think. I'm using CF5. mack /

Re: New offerings from the Mothership...

2003-08-25 Thread Mike Chambers
Yes. There are some third party ActionScript RegEx libraries that you can use in Flash MX. mike chambers [EMAIL PROTECTED] - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 25, 2003 11:27 AM Subject: RE: New offerings from

Re: New offerings from the Mothership...

2003-08-25 Thread Michael Dinowitz
I've found 2 so far: http://homepage.ntlworld.com/andy_black/andy/flash/regexp/ http://www.jurjans.lv/flash/default.htm and that's the problem. Which is better, which is tighter, which will do what I want quickly? I'd rather get into using Flash Pro for HoF projects rather than having to write my

RE: How to handle

2003-08-25 Thread Raymond Camden
Simply check for them with a mix of isDefined, isNumeric, etc. Also, don't forget that you should probably also make sure that even if url.id is a number, that it's a) greater than 0 and b) is a whole number instead of something like 3.14. If you are doing a 'detail' page, you also want to check

Re: Newer custom tag like CF_ObjectDump?

2003-08-25 Thread Scott Weikert
On Friday, August 22, 2003, at 04:50 PM, Raymond Camden wrote: Um - what about MX's native cfdump tag? Well seeing as I haven't actually picked up any MX books yet - just been monkeying with it fairly blindly so far - you'll forgive me if I wasn't aware of this feature :) Speaking of which

Re: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Bryan Stevenson
Just wondering from those that use MSDE 1) Can Enterprise Manager from a licenced copy of MS SQL Server connect to a remote MSDE DB? 2) Can you get MSDE seperate from the Standard or Enterprise versions of MS SQL Server (because the MS site seems to say it comes with...in which case a client

Re: MS SQL Server vs. MySQL

2003-08-25 Thread Bryan Stevenson
Mike H. The SAP DB I saw was implemented by SAP for a major Telcomm in Canada. There were at least hundreds of tables with no naming conventions that I saw. The data was always out of date or otherwise screwed up. All it took was CF 3.1, Access 97 (1.2 GB), and 2 CF developers to blow it away.

CF5 Sendmail error

2003-08-25 Thread Critz
oi CF-Talk,!! anyone have any idea what causes this: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; image_azv; .NET CLR 1.1.4322), unknown exception condition TagCFMail::sendMessage Crit -- Currently Playing: Jimmy Buffett - Margaritaville --- [This E-mail scanned for

Re: New offerings from the Mothership...

2003-08-25 Thread Massimo Foti
I've found 2 so far: http://homepage.ntlworld.com/andy_black/andy/flash/regexp/ http://www.jurjans.lv/flash/default.htm and that's the problem. Which is better, which is tighter, which will do what I want quickly? I happily leave those questions to the Flash geeks :-) No kidding, I already

My Query of Queries error with code

2003-08-25 Thread Jeff
Here's the error I'm getting, and below that, is the code that's apparently causing it. Now, here's the really weird part. SOME...I repeat...SOME words and phrases actually *WORK*. In other words, I can type heart or cancer and return a legit, fine recordset, all UNION'ed and sorted correctly.

Re: Newer custom tag like CF_ObjectDump?

2003-08-25 Thread Jim Campbell
I've got all of Ben Forta's CF Books from version 3 (I believe) up to MX, as well as a couple of the Reality books. I should probably start a fan club or something. - Jim Scott Weikert wrote: On Friday, August 22, 2003, at 04:50 PM, Raymond Camden wrote: Um - what about MX's native

RE: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Jeff Lucido
Bryan: 1. Yes, I use Enterprise Manager to connect to several MSDE databases running at client locations. 2. Yes, MSDE can be found on both the Office 2K and XP Professional CD's. You can also download a new instance by downloading MSDE SP3 from Microsoft. I just did it as a test this past week

RE: Newer custom tag like CF_ObjectDump?

2003-08-25 Thread Tyler Clendenin
I have to say that after a not so promising CF5 book the CFMX book from macromedia press by Forta, Weiss, et al. does the job rather well. It does a good job of explaining things and works as a decent reference guide. And the advenced book also provides a good amount of information. The only

cfadmin_sqlexecutive

2003-08-25 Thread Dave Carabetta
When I go to verify a datasource, I am constantly getting the following error after about 5 minutes of waiting, and I have to restart the CF service in order to continue: A timeout occurred while attempting to lock cfadmin_sqlexecutive. It's occurring on line 158 of the CF Admin's

Re: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Bryan Stevenson
Hey Jeff, Great...thanks for the info. I'm certainly starting to think that MSDE will be a great alternative for our smaller clients. Now it sounds like it's totally free?? any licenceing issues? Does anybody know of ISPs that will host MSDE DBs? or is generally used for apps running co-lo

XML shopping cart?

2003-08-25 Thread Chad Gray
I have just started to get my feet wet with XML and CF. I thought I would play with the idea of converting my current shopping basket code so it would store all of the items in an XML structure that is stored in a session variable. I have figured out how to create the XML structure and search

RE: cfadmin_sqlexecutive

2003-08-25 Thread Steven Erat
This is release noted as fixed in 6.1 as bug 48538. Attempting to verify a bad data source within the Administrator would cause the Administrator to hang. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 12:07 PM To: CF-Talk Subject:

Re: CF5 Sendmail error

2003-08-25 Thread Critz
oi Critz!! n/m found out the spool directory had been deleted from the server. however the hell that happened.dunno -- Currently Playing: Jimmy Buffett - Boat Drinks Monday, August 25, 2003, 11:47:55 AM, you wrote: C oi CF-Talk,!! C

RE: cfadmin_sqlexecutive

2003-08-25 Thread Dave Carabetta
Thanks. I missed that when I was looking through the notes. From: Steven Erat [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: cfadmin_sqlexecutive Date: Mon, 25 Aug 2003 12:30:00 -0400 This is release noted as fixed in 6.1 as bug 48538. Attempting to

Re: RE: MS SQL Server vs. MySQL

2003-08-25 Thread ksuh
Go to http://www.microsoft.com/sql/msde/default.asp for more info. - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] Date: Monday, August 25, 2003 10:08 am Subject: Re: RE: MS SQL Server vs. MySQL Hey Jeff, Great...thanks for the info. I'm certainly starting to think that

RE: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Jeff Lucido
Bryan: Licensing is a bit tricky. You can use here when you have a license for X, but you can't distribute it. You can distribute it if you have license for X Y. Best thing I have found is the following link (watch for the wrap): http://www.microsoft.com/sql/msde/howtobuy/default.asp Yes, for

RE: XML shopping cart?

2003-08-25 Thread Bryan Love
You could cheat and use WDDX - it converts structures to XML and back again... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED]

RE: XML shopping cart?

2003-08-25 Thread Brad Roberts
Here's a good article: http://www.macromedia.com/devnet/mx/coldfusion/articles/xmlxslt.pdf -Brad -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 12:30 PM To: CF-Talk Subject: XML shopping cart? I have just started to get my feet wet with XML

Re: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Doug White
I think you could only do that on a co-lo or dedicated server - On a shared environment you will run into licensing issues. Also concurrent connection limits. However, the fee for using a SQL2k db in a shared environment is usually very minimal, from a provider point of view.

Using a java class via cfobject --- help?

2003-08-25 Thread Bosky, Dave
I have written a simple java class that encrypts strings, I need to pass in some strings and return an array of strings. Am I missing something? What else is necessary to use this class in CF? Encrypt.class import java.util.*; import BlowfishJ.*; public

cfc vs php rule of thumb

2003-08-25 Thread Mauricio Giraldo
Hello When developing in PHP, it is common to have something like this in a class document: // start include 'my_config_file.php'; class MyClass { // properties and functions } // end Where my_config_file.php is a file that has constants and other shared variables. I am familiar with CFCs

Re: OT: JavaScript question??

2003-08-25 Thread Salvador Delacosta
Mario, try doing this. document.selectedIndex == null I believe that will tell check if the user has selected anything in the drop-down box. Hope this helps. From: Ciliotta, Mario [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: OT: JavaScript

RE: cfc vs php rule of thumb

2003-08-25 Thread Raymond Camden
There are a couple of different answers to this question. What follows are just a few ideas, and may not always work best depending on your situation. 1) One way to have a CFC read in 'config' information is to simply define them as probably always did, application variables, and read them from

OT: This is the BEST Discussion List

2003-08-25 Thread Ian Skinner
Here I was stumbling around Macromedia looking for just this article this morning, and I couldn't find it. Just as I was beginning to despair, it is posted. My day is once again gloriously productive. This has happened many times during the many months that I have been a member of House of

Re: cfc vs php rule of thumb

2003-08-25 Thread Critz
oi Mauricio!! cfcomponent cfinclude template=blah.config cffunction cffunction /cfcomponent ? -- Currently Playing: Jimmy Buffett - Son of a Son of a Sailor Monday, August 25, 2003, 1:52:20 PM, you wrote: MG Hello MG When developing in

Re: Using a java class via cfobject --- help?

2003-08-25 Thread Paul Hastings
I have written a simple java class that encrypts strings, I need to pass in some strings and return an array of strings. Am I missing something? What else is necessary to use this class in CF? not sure this is your case but cf maps java arrays to lists (if i recall rightly) if that array is

Re: RE: MS SQL Server vs. MySQL

2003-08-25 Thread Bryan Stevenson
Ya I figured as much. I'll do a little research to see how tough a migratation from SQL Server 2000 in a shared environment up to a col-lo server with MSDE (normally I would go full-blown SQL Server on the co-lo box, but cost is an issue and the 2 GB DB size isn't an issue...but file size

RE: XML shopping cart?

2003-08-25 Thread Chad Gray
Great article! Thanks! -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 1:32 PM To: CF-Talk Subject: RE: XML shopping cart? Here's a good article: http://www.macromedia.com/devnet/mx/coldfusion/articles/xmlxslt.pdf -Brad

Re: XML shopping cart?

2003-08-25 Thread Massimo, Tiziana e Federica
I thought I would play with the idea of converting my current shopping basket code so it would store all of the items in an XML structure that is stored in a session variable. Are you sure it makes sense? What's the benefits? My question is how do I delete XML nodes from the structure?

RE: cfc vs php rule of thumb

2003-08-25 Thread Barney Boisvert
Related to Ray's #3, if the number of configuration items is reasonably small, you can pass them into the CFC's init() method, if you use one, and then cache it in the CFC's instance variables. That's how I usually do DSNs: cfset application.dsn = myDSN / cfset application.myCFC =

DWMX 2004 - Whats new for us?

2003-08-25 Thread Sandy Clark
I've gone through all the features in the Macromedia Site and I'm still confused. I went to the Dreamweaver MX Vision session at last year's DevCon and one of the things that impressed me was the speaker's admission that they knew they hadn't created a DWMX that was able to be everything for the

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Chris Kief
Although this doesn't directly address your questions, it's good to see that Homesite is still being actively developed with the new version available as both a stand-alone product and with Dreamweaver 04: http://www.macromedia.com/software/homesite/ chris -Original Message- From:

Re: MS SQL Server vs. MySQL

2003-08-25 Thread John Paul Ashenfelter
They're doing more than rebranding -- the SAPdb engine is written in Pascal (this is what Monty co said at OSCON -- assuming I can take his word for it :) They are going to create/write/port/whatever a new table handler for MySQL that can access SAPdb data. The MySQL engine uses handlers to

RE: XML shopping cart?

2003-08-25 Thread Chad Gray
The reason I started going in this direction is I have dynamic options for each product. Each product may have it's own set of options color/size/accessories. Plus each option will possibly modify the price and shipping. The data was getting so complex I was going to start storing the shopping

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread cf-talk
What I'd like to know is if they've finally added the ability to mark a column of text in code view mode just like UltraEdit32 can. Until I see that feature added, UltraEdit will probably remain my editor of choice. That's not to say that I don't used DWMX at all. I just find myself using

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Raymond Camden
Query - where do you see it being a stand alone product? (By that I mean your email leads me to belief that you saw that it would be sold by itself, but I do not see it. Obviously it's stand alone in that it is a different .exe file.)

RE: Using a java class via cfobject --- help?

2003-08-25 Thread Bosky, Dave
The problem seemed to be with the following line. public String[] setDecryptedData(String[] args) {} Cold Fusion doesn't seem to know what 'String[] args' is. I changed the line to the following and it worked like a dream. public String[] getDecryptedData(String ccName, String ccType, String

CGURU Install Help Needed

2003-08-25 Thread Robert Shaw
Hello, I have a Win2K sp4 machine, never had CF loaded previously, I installed 6.1 and it fails at starting the CF Services. The ODBC Service and ODBC agent do not install. If I uninstall it hangs at 90% and does not uninstall. The install log says everything is successful. Any tips on what

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Barney Boisvert
I'd say that's a BAD thing for DW, because as long as HomeSite's around, DW isn't going to get the developer tools, or at least not as many and not as quickly. If you like using Studio/Homesite the continued releases are a good thing, but if you're stuck using DW, it's bad. My $0.02, barneyb

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Massimo, Tiziana e Federica
Could someone who was on the beta (assuming your NDA is expired) or from MACR give us a listing of updates that will benefit CF Coders? The features list are usually assembled by marketing people, they often miss some major features. When they launched DW MX for example, they totally forgot to

Re: XML shopping cart?

2003-08-25 Thread Massimo, Tiziana e Federica
You are right. I don't see any major advantage over using a structure. Call it a learning experience. Nothing more. I understand you are looking for a CF/XML learning experience, but I would suggest to look elsewhere :-)) Massimo Foti Certified Dreamweaver MX

QofQ syntax

2003-08-25 Thread Keith Levenson
I'm trying to do a query of queries like so: 68: cfquery name=getData dbtype=query 69: SELECT * from myQuery 70: WHERE myStart BETWEEN 71: (cfqueryparam cfsqltype=CF_SQL_TIMESTAMP value=#DateAdd('D',iCount-1,startDate)# and 72: cfqueryparam

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Jeff Garza
http://www.macromedia.com/software/homesite/productinfo/features/ Click on the Buy link on the right hand side of the page... $99 bucks! Jeff - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 25, 2003 11:34 AM Subject: RE:

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Sandy Clark
From my reading Homesite 5.5 is only available with purchase of DWMX 2004. However once purchased with DWMX, it can be run stand alone. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 2:34 PM To: CF-Talk Subject: RE: DWMX 2004 - Whats new

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Chris Kief
I just went off the info at that link: Macromedia announces HomeSite 5.5. HomeSite 5.5 provides a lean, code-only editor for web development. Advanced coding features enable you to instantly create and modify HTML, CFML, JSP, and XHTML tags, while enhanced productivity tools allow you to

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Chris Kief
Let's not forget the FAQ either: http://www.macromedia.com/software/homesite/productinfo/faq/ How can I purchase Macromedia HomeSite 5.5? HomeSite 5.5 is scheduled to be available for download soon. You will be able to purchase HomeSite 5.5 through the Macromedia Online store. What is the

RE: CGURU Install Help Needed

2003-08-25 Thread Kris Pilles
Check your ports... If you are behind firewall you may have to open some ports... We had a similar problem -Original Message- From: Robert Shaw [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 2:37 PM To: CF-Talk Subject: CGURU Install Help Needed Hello, I have a Win2K sp4

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Michael T. Tangorre
nice deal. - Original Message - From: Jeff Garza [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 25, 2003 2:50 PM Subject: Re: DWMX 2004 - Whats new for us? http://www.macromedia.com/software/homesite/productinfo/features/ Click on the Buy link on the right

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Raymond Camden
Ah, but just HS, not HS+. Does anyone actually use HS instead of HS+ (or HS instead of CFS)? I'm not knocking it - just curious. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Massimo, Tiziana e Federica
Anything else? Yes! The customizable Insert Bar is pretty cool. I was asking for it since years :-) Massimo Foti Certified Dreamweaver MX Developer Certified Advanced ColdFusion MX Developer http://www.massimocorner.com/

RE: CGURU Install Help Needed

2003-08-25 Thread Robert Shaw
We're not behind a firewall, so that wouldn't apply. Any other thoughts? -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 2:56 PM To: CF-Talk Subject: RE: CGURU Install Help Needed Check your ports... If you are behind firewall you may have to

Mach II was RE: RE: cfc vs php rule of thumb

2003-08-25 Thread Mike Brunt
Mauricio, I suggest you take a look at Mach II at. http://www.mach-ii.com/ There is a .pdf file there that explains Mach II well also the Mach II infrastructure and some sample code/apps. Kind Regards - Mike Brunt Original Message --- There are a couple of different

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Critz
oi Jeff!! aye. that's homesite. not homesite+, no? -- Monday, August 25, 2003, 2:50:59 PM, you wrote: JG http://www.macromedia.com/software/homesite/productinfo/features/ JG Click on the Buy link on the right hand side of the page... $99 bucks! JG

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Sandy Clark
That is Homesite, not Homesite +. Think Homesite + as CFStudio. Homesite + will still only be available with purchase of DWMX -Original Message- From: Chris Kief [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 3:03 PM To: CF-Talk Subject: RE: DWMX 2004 - Whats new for us?

RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Tony Weeg
hs+ we left cfstudio for hs+ about 2 months ago. css, yeah we use the css builder for obscure ones that we never use :) tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Raymond

Re: DWMX 2004 - Whats new for us?

2003-08-25 Thread Massimo, Tiziana e Federica
Ah, but just HS, not HS+. Does anyone actually use HS instead of HS+ (or HS instead of CFS)? I'm not knocking it - just curious. Yes, I use HS 5.2 and definitely plan to upgrade to 5.5. I never used the additional features in CF Studio so HS 5 it's just perfect for me.

  1   2   >