Re: Calling a CFC from perl

2003-01-21 Thread Sean A Corfield
On Monday, Jan 20, 2003, at 08:10 US/Pacific, Brad Howerter wrote: cfcomponent output=false cffunction name=hi returnType=string output=no access=remote cfreturn 'hello, world' /cffunction /cfcomponent And here's how I'm trying to access it: cfscript ws = CreateObject(webservice,

RE: Instant Messaging using CF

2003-01-21 Thread webguy
Hi there, my client wants a custom IM application for his website. I downloaded a free IM app from macromedias website, the only thing is finding a way to get the application window to pop-up on User B's computer when user A on a different computer tries to IM them. Can this even be done

XML Primer Request (basic)

2003-01-21 Thread Robby L.
And if it is CFMX that you're working with, along with the pdf I'd heavily suggest this page : http://localhost:8500/cfdocs/Developing_ColdFusion_MX_Applications_with_CFML/XML7.html in your docs ,.. (of course depending on how you installed it) It's often over missed, but since its giving you

cfchartseries in CF 5 ?

2003-01-21 Thread cf-talk
Hi list, is there an equivalent to cfchartseries (CFMX) in CF 5 to display several independent graphs in only one graph-set ? Uwe ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: cfchartseries in CF 5 ?

2003-01-21 Thread Pascal Peters
No -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: dinsdag 21 januari 2003 13:37 To: CF-Talk Subject: cfchartseries in CF 5 ? Hi list, is there an equivalent to cfchartseries (CFMX) in CF 5 to display several independent graphs in only one graph-set ? Uwe

Updating database

2003-01-21 Thread FlashGuy
Hi, I have this code that updated my MySQL database successfully. I'm testing this out on another PC with just Access. WHen I try to update the database I get the following error? Error Occurred While Processing Request Error Diagnostic Information ODBC Error Code = 37000 (Syntax error or

RE: Updating database

2003-01-21 Thread Mike Townend
Try using single quotes instead of double quotes... This should then work for both access and mySQL HTH -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 12:49 To: CF-Talk Subject: Updating database Hi, I have this code that updated my

RE: Updating database

2003-01-21 Thread Pascal Peters
cfquery name=update_alias DATASOURCE=alias dbtype=ODBC INSERT INTO alias (env_var,destination) VALUES('#ListGetAt(Line,1,|)#','#ListGetAt(Line,2,|)#') /cfquery -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: dinsdag 21 januari 2003 13:49 To: CF-Talk

RE: Database queries

2003-01-21 Thread Pascal Peters
The second is ok. Avoids problems if you switch to another driver (I speak from experience) -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: dinsdag 21 januari 2003 13:51 To: CF-Talk Subject: Database queries Do I require the type on my queries?

RE: Database queries

2003-01-21 Thread webguy
From the docs : New in ColdFusion MX: The connectString, dbName, dbServer, provider, providerDSN, and sql attributes, and all values of the dbtype attribute except query, are deprecated. Do not use them. They do not work, and might cause an error, in releases later than ColdFusion 5. WG

RE: Updating database

2003-01-21 Thread FlashGuy
That worked. Thanks I tried to incorporate the same type of code to the example below but I also get an error on this. MySQL: - cfquery name=Update datasource=prefs UPDATE tblProfiles SET strSelect=#ListGetAt(commalist,1,'|')# /cfquery Access: -- cfquery

Re: Updating database

2003-01-21 Thread Jochem van Dieten
FlashGuy wrote: Access: -- cfquery name=Update DATASOURCE=prefs dbtype=ODBC UPDATE tblProfiles (strSelect) VALUES('#ListGetAt(commalist,1,'|')#') /cfquery You are mixing insert and update syntax, correct syntax should be: INSERT INTO table (field [, field]) VALUES

Deleting a row from a query?

2003-01-21 Thread barth
How funny the certified Macromedia instuctor can't suggest a query of query, Go get a fuction? are you kidding? I'm your not my instuctor. Being able to solve a problem quickly and simply should be the goal here. ~| Archives:

RE: Deleting a row from a query?

2003-01-21 Thread Tangorre, Michael
please decipher the message below into something meaningful. thank you. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 7:19 AM To: CF-Talk Subject: Deleting a row from a query? How funny the certified Macromedia

Re: Instant Messaging using CF

2003-01-21 Thread Christian Cantrell
I will add one additional option to WG's list here: Flash Communication Server. Your two options for persistent connections (which is what you need to send an event from the server to the client without the client polling every n seconds) are Java applets and Flash Communication Server.

Re: Updating database

2003-01-21 Thread FlashGuy
Why do I need an INSERT command? I just want to update my table field. This worked fine in MySQL. On Tue, 21 Jan 2003 14:24:04 +0100, Jochem van Dieten wrote: FlashGuy wrote: Access: -- cfquery name=Update DATASOURCE=prefs dbtype=ODBC UPDATE tblProfiles (strSelect)

Re: Updating database

2003-01-21 Thread Todd
I'll be surprised if it worked in MySQL. It's not even a valid SQL Statement. The statement you want is: UPDATE tablename SET (field) = (value) WHERE primaryKey = something RTM: http://www.mysql.com/doc/en/UPDATE.html ~Todd At 08:34 AM 1/21/2003 -0500, you wrote: Why do I need an INSERT

Re: Updating database

2003-01-21 Thread Jochem van Dieten
FlashGuy wrote: Why do I need an INSERT command? You don't, I'm just given a complete reference. This worked fine in MySQL. Then MySQL is broken. Jochem ~| Archives:

Re: Deleting a row from a query?

2003-01-21 Thread Samuel R. Neff
At 08:18 AM 1/21/2003, you wrote: How funny the certified Macromedia instuctor can't suggest a query of query, Go get a fuction? are you kidding? I'm your not my instuctor. Being able to solve a problem quickly and simply should be the goal here. I really don't think that's a fair complaint.

RE: Deleting a row from a query?

2003-01-21 Thread Robertson-Ravo, Neil (RX)
what are you talking about? did I miss something :-) -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 12:19 To: CF-Talk Subject: Deleting a row from a query? How funny the certified Macromedia instuctor can't suggest a query

Re: Updating database

2003-01-21 Thread FlashGuy
I never received any errors when the code was run? On Tue, 21 Jan 2003 08:38:04 -0500, Todd wrote: I'll be surprised if it worked in MySQL. It's not even a valid SQL Statement. The statement you want is: UPDATE tablename SET (field) = (value) WHERE primaryKey = something RTM:

Re: Updating database

2003-01-21 Thread Todd
Then, MySQL is definitely broken. Did you report this to the MySQL dev team as a bug? At 08:48 AM 1/21/2003 -0500, you wrote: I never received any errors when the code was run? On Tue, 21 Jan 2003 08:38:04 -0500, Todd wrote: I'll be surprised if it worked in MySQL. It's not even a valid

MS SQL 2000 :: How to print table data

2003-01-21 Thread Bosky, Dave
How can I print out all table data - fieldname/datatypes of a specific database in MS SQL 2000? Is there a stored procedure I should use? Thank You, Dave Bosky ~Sr. Multimedia Web Designer ~HTC Web Services ~[EMAIL PROTECTED] ~office: 843.369.8613 HTC Disclaimer: The information contained

Re: Updating database

2003-01-21 Thread FlashGuy
No. I guess I should. On Tue, 21 Jan 2003 08:50:39 -0500, Todd wrote: Then, MySQL is definitely broken. Did you report this to the MySQL dev team as a bug? At 08:48 AM 1/21/2003 -0500, you wrote: I never received any errors when the code was run? On Tue, 21 Jan 2003 08:38:04 -0500,

RE: MS SQL 2000 :: How to print table data

2003-01-21 Thread Tangorre, Michael
in query analyzer use sp_help tablename (without the quotes). hth. mike -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 8:52 AM To: CF-Talk Subject: MS SQL 2000 :: How to print table data How can I print out all table data -

reconnecting to MySQL

2003-01-21 Thread Rahmin Pavlovic
I recently migrated my CF sites from NT/Access to a Linux/MySQL box running Chilisoft. Everything runs alot faster, but I get this error when the user is idle for too long: [TCX][MyODBC]Lost connection to MySQL server during query Can someone suggest a painless way to reconnect to MySQL in this

Re: CFC's and people management

2003-01-21 Thread Cutter (CF_Talk)
I'm working on a site for a school district's adult ed program. They are requiring no less than 4 different access areas with multiple levels of control. After a little research I'm expanding upon a roles based security model that I originally read about on the MM site (CFC best practices:

RE: MS SQL 2000 :: How to print table data

2003-01-21 Thread Janine Jakim
I find the easiest and quickest way is togo to SQL manager and open the table in design view. Click on the Print Screen button. paste pic onto word doc. Use format Picture to trim the extra space from the pic. I like the visual of this way- I get all the design info in a quick easy to read

Re: Integrating C#

2003-01-21 Thread Cutter (CF_Talk)
Have the C# program return the variables as XML to be used by your CF app (C# has a lot of built in XML support) Cutter Brad Roberts wrote: I've got an application written in C# that I need to integrate into our CF app. The C# app makes a HTTP request, grabs a WDDX packet (a query with about

RE: Integrating C#

2003-01-21 Thread webguy
You can go web service route, but I'd just like to comment, xml web services, are not always the best solution. Web services xml have a performance overhead, especially Serializing / de-serializing to xml. Sometimes it is better a custom interfaces, or other remote method such as DCOM, corba,

CFSchedule question

2003-01-21 Thread Luis Lebron
How do I schedule a one time task with cfschedule. I get I can set the start and end date to the same one or is there a better way? thanks, Luis R. Lebron Project Manager Sigmatech, Inc ~| Archives:

Re: Deleting a row from a query?

2003-01-21 Thread Stephen Moretti
The question was How can I delete a row from a query? Answer, a query is a struct of associative arrays, find the array row and delete rows for each of the struct keys. Simon quite rightly pointed out that there is a UDF to do this on cflib, as I also had previously mentioned. How funny the

RE: Integrating C#

2003-01-21 Thread Aaron Johnson
Hi Brad, I've got an application written in C# that I need to integrate into our CF app. The C# app makes a HTTP request, grabs a WDDX packet (a query with about 15,000 records), does some intense calculations, and returns just a few variables. Unfortunately, I know nothing about C#, and

CF to MS Word or PDF - setting Margins and page size?

2003-01-21 Thread Rafael Alan Bleiweiss
Has anyone worked with creating an MS Word or PDF doc where you control the margins? I have a site that will need to generate a 100 page document in book format - with a predefined paper size, margin settings and page numbering - especially opposing page margins : Left pages right

TEST: is the list down?

2003-01-21 Thread Moneymaker, Jon S CONT (WPNSTA Yorktown)
no messages in quite some time now very unusual. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: TEST: is the list down?

2003-01-21 Thread Moneymaker, Jon S CONT (WPNSTA Yorktown)
Belay my last...operator difficulty... geez, I need another pot of coffee -Original Message- From: Moneymaker, Jon S CONT (WPNSTA Yorktown) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 9:47 AM To: CF-Talk Subject: TEST: is the list down? no messages in quite some time

Re: CFC's and people management

2003-01-21 Thread Gyrus
- Original Message - From: Cutter (CF_Talk) [EMAIL PROTECTED] I'm working on a site for a school district's adult ed program. They are requiring no less than 4 different access areas with multiple levels of control. After a little research I'm expanding upon a roles based security

What am I doing WRONG!?!?!

2003-01-21 Thread Ernie Pena
I'm no stranger to writing CF code and updataing a database is a snap, however I'm dumbfounded by this bug. Here is the setup Compaq server with CFMX running (upgraded from CF5) 1GIG or ram and 40gig of free space. The server processes istn even hitting 2% utilization yet. Ok here is the

RE: CF to MS Word or PDF - setting Margins and page size?

2003-01-21 Thread webguy
Hi Rafael, From: Rafael Alan Bleiweiss [mailto:[EMAIL PROTECTED]] Has anyone worked with creating an MS Word or PDF doc where you control the margins? I have a site that will need to generate a 100 page document in book format - with a predefined paper size, margin settings and page

CFMX Com Question

2003-01-21 Thread Frank Mamone
I'm having a problem where CFMX takes too long to release a COM object from memory. Being a single threaded-object it gets stuck in my error trap from a few seconds to a couple of minutes unitil it's released. It's a third party object and cannot change it's threading model. Will setting the

UPS Live Feed Problem

2003-01-21 Thread Rafael Alan Bleiweiss
I've been using CF_UPSPrice to pull live UPS fees for shipping on a site for a couple years and recently anyone choosing Ground Commercial has been getting an error message back - does anyone know what happened with that method of shipping?

RE: CFMX Com Question

2003-01-21 Thread webguy
Not usually. FYI COM in MX is based on j-integra www.intrinsyc.com/products/j-integra/ As a matter of interest, try wrapping the COM in a cfc and see if that improves things. It has help some other memory release issues with cfhttp / cfftp. If it works, please let us know! WG -Original

Re: CFMail Controlling Whitespace (was Best Practice) ARRGH!

2003-01-21 Thread Ewok
hmm it got cut off, anyway heres the rest (if it doesnt get stripped out again) cfmail to=#to# from= subject=#inquiry# ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: reconnecting to MySQL

2003-01-21 Thread Thomas Chiverton
On Tuesday 21 Jan 2003 14:05 pm, Rahmin Pavlovic wrote: [TCX][MyODBC]Lost connection to MySQL server during query Can someone suggest a painless way to reconnect to MySQL in this case? Wrap the call in a try/catch block that retrys till it works. -- Tom C Space Core Directive 68250:

RE: What am I doing WRONG!?!?!

2003-01-21 Thread Tangorre, Michael
check your ODBC drivers. make sure you have the latest ones... especially since you upgraded to MX where JDBC is now an issue. hth, mike -Original Message- From: Ernie Pena [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 10:01 AM To: CF-Talk Subject: What am I doing

RE: What am I doing WRONG!?!?!

2003-01-21 Thread Craig Dudley
It is most likely long text retrieval option in the data source setup. Go into cf administrator and edit the data source. I had this issue the 1st time I upgraded a Cf5 box to MX, none of them access data sources would retrieve memo text fields. Fortunately, it only takes 2 seconds to fix.

QofQ Joins

2003-01-21 Thread Sean Daniels
Is it possible to do an outer join in a query of queries? I can't find any good documentation that explains QofQ's capabilities/limitations. It seems to support inner joins, but I haven't come up with an outer join syntax that doesn't throw an error. Thanks, - Sean ~~

Re: What am I doing WRONG!?!?!

2003-01-21 Thread Ernie Pena
WHOOHOO!!! that did the trick Thanks a bunch! EP! - Original Message - From: Craig Dudley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 9:41 AM Subject: RE: What am I doing WRONG!?!?! It is most likely long text retrieval option in the data source

RE: QofQ Joins

2003-01-21 Thread Robertson-Ravo, Neil (RX)
ColdFusion does not support OUTER JOIN or INNER JOIN syntax, as the following example shows it does however support INNER JOINs between two tables : SELECT product_ID, shipping_ID FROM product, shipping WHERE product.product_ID = shipping.shipping_ID -Original Message- From: Sean

Selecting First/Last Record in query

2003-01-21 Thread Thane Sherrington
How to I get the first or last record in a query? T ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: QofQ Joins

2003-01-21 Thread Denny Sheridan
I'm pretty sure that an outer join expects to find two 'tables' to work with. The QofQ returns a singular result set (probably viewed by CF as a single table). So, in theory, an outer join wouldn't work on a OofQ. thanx Denny -Original Message- From: Sean Daniels [mailto:[EMAIL

RE: Selecting First/Last Record in query

2003-01-21 Thread Robertson-Ravo, Neil (RX)
count the number of records / array : then reference them using Array Syntax or using a row count procedure. job done. -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:01 To: CF-Talk Subject: Selecting First/Last Record in query How to I

Re: Selecting First/Last Record in query

2003-01-21 Thread Bruce Sorge
For the first: Select TOP 1 * From Table For the last: Select MAX (FieldName) AS Alias From Table - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 10:01 AM Subject: Selecting First/Last Record in query How to

RE: QofQ Joins

2003-01-21 Thread Scott Brady
-- Original Message -- From: Robertson-Ravo, Neil (RX) Neil.Robertson- ColdFusion does not support OUTER JOIN or INNER JOIN syntax, as the following example shows it does however support INNER JOINs between two tables : SELECT product_ID, shipping_ID

RE: Selecting First/Last Record in query

2003-01-21 Thread Tony Weeg
from sql, or once it has already been returned to cf? from sql: select min(whateverColumn) from foo where foo = foo from cf: a bit trickier, however, I would start with query.recordCount as a number that will be important to you, and something that would help you. I know the query is returned

Re: Selecting First/Last Record in query - Solved

2003-01-21 Thread Thane Sherrington
At 12:01 PM 01/21/03 -0400, Thane Sherrington wrote: How to I get the first or last record in a query? I got it. I used the SQL First and Last functions. They appear to do what I want. T ~| Archives:

RE: QofQ Joins

2003-01-21 Thread Robertson-Ravo, Neil (RX)
only with Query of Queries.ColdFusion doesn't give a stuff what SQL you use as long as its valid for the DB or ODBC (etc) driver. -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:08 To: CF-Talk Subject: RE: QofQ Joins -- Original

RE: QofQ Joins

2003-01-21 Thread Robertson-Ravo, Neil (RX)
SELECT product_ID, shipping_ID FROM product, shipping WHERE product.product_ID = shipping.shipping_ID This is a commonly referred to as JOIN between tables -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:08 To: CF-Talk Subject: RE: QofQ Joins

DHTML menu and select boxes

2003-01-21 Thread Bosky, Dave
I've created a dhtml menu system using Fireworks but the dropdown menu doesn't appear on top of a form select box. Is this not possible? I know you can change settings in Flash and Java applets. Thank You, Dave Bosky ~Sr. Multimedia Web Designer ~HTC Web Services ~[EMAIL PROTECTED] ~office:

Re: Selecting First/Last Record in query

2003-01-21 Thread Tyler Silcox
Or you can do it the CF way: first record: #myQuery.ColumnName# (outside of a loop) OR #myQuery.ColumnName[1]# last record: #myQuery.ColumnName[myQuery.RecordCount]# Tyler - Original Message - From: Bruce Sorge [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21,

Re: Selecting First/Last Record in query

2003-01-21 Thread Jeff Garza
You can access the query as a array as follows: First Record : #myquery.myfield[1]#, #myquery.myfield2[1]#, etc... Last Record : #myquery.myfield[myquery.recordcount]#, etc... HTH, Jeff Garza - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: reconnecting to MySQL

2003-01-21 Thread Rahmin Pavlovic
[TCX][MyODBC]Lost connection to MySQL server during query Can someone suggest a painless way to reconnect to MySQL in this case? Wrap the call in a try/catch block that retrys till it works. Ugh, so I'd have to do that for all my queries? Lame. I was hoping for something more along the

RE: DHTML menu and select boxes

2003-01-21 Thread Tangorre, Michael
it is my understanding that the form elements will always appear on top.. i have not found a way around this... so i switched to flash menus :-) mike -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 11:15 AM To: CF-Talk Subject: DHTML menu

RE: QofQ Joins

2003-01-21 Thread Scott Brady
-- Original Message -- From: Robertson-Ravo, Neil (RX) This is a commonly referred to as JOIN between tables Yeah, but I've never seen it in action with QoQ, so I wasn't sure if that's what you were demonstrating. Thanks for clarifying.

RE: DHTML menu and select boxes

2003-01-21 Thread Bosky, Dave
yep. that's what I thought, I guess it's back to Flash :) Thank You, Dave Bosky ~Sr. Multimedia Web Designer ~HTC Web Services ~[EMAIL PROTECTED] ~office: 843.369.8613 -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 11:22 AM To:

Re: DHTML menu and select boxes

2003-01-21 Thread Rahmin Pavlovic
Form elements always rise to the top.. You have to do something tricky like make the form field disappear and/or replace it with a screenshot of the form field - just when the menu is over it.. Or redesign your HTML - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk

RE: QofQ Joins

2003-01-21 Thread Robertson-Ravo, Neil (RX)
:-) it does work in QoQ -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:22 To: CF-Talk Subject: RE: QofQ Joins -- Original Message -- From: Robertson-Ravo, Neil (RX) This is a commonly referred to as JOIN

RE: Selecting First/Last Record in query

2003-01-21 Thread webguy
Just the first and last? you chould do it in sql select TOP 1 * from whatever order by x select TOP 1 * from whatever order by x desc WG -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:01 To: CF-Talk Subject: Selecting First/Last

Flash Data Grid

2003-01-21 Thread brook
I'm curious about the flash data grid (is that what it's called?). Does any one have any examples of one of these grids? Could it be a practical replacement for cfgrid? Brook Davies maracasmedia inc ~| Archives:

Re: DHTML menu and select boxes

2003-01-21 Thread Matt Robertson
The only dhtml menu that I have seen that has gotten around this cross-browser seamlessly is Milonic (http://milonic.com) . Their faq explains the poblem bugt is out of date as they've fixed it using some sleight of hand. Cheers, --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com

Re: reconnecting to MySQL

2003-01-21 Thread Stephen Moretti
I don't have any problems with lost connections and mySQL. Do you have the datasource set to maintain connections under the CF Administrator? Even if you don't, you shouldn't be losing the connection during the query. I'd suggest that you have a network issue, if your db is on a seperate

Re: DHTML menu and select boxes

2003-01-21 Thread Thomas Chiverton
On Tuesday 21 Jan 2003 16:14 pm, Bosky, Dave wrote: I've created a dhtml menu system using Fireworks but the dropdown menu doesn't appear on top of a form select box. Is this not possible? I know you can change settings in Flash and Java applets. Have you tried setting the z-index of your

Re: reconnecting to MySQL

2003-01-21 Thread Thomas Chiverton
On Tuesday 21 Jan 2003 16:18 pm, Rahmin Pavlovic wrote: Hrmph. There isn't a more elegant way to regain lost connections to MySQL? Well, you could find out why MySQL is dropping the link ? Are you using maintain connections ? Is the timout on that longer than the timeout in MySQL, or something

RE: DHTML menu and select boxes

2003-01-21 Thread Robertson-Ravo, Neil (RX)
This is a know 'bug' and the ways I have seen it fixed before is to disable the form box when the menu is activatedwhat you are seeing is expected behaviour and not a bug per say -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:43 To:

RE: reconnecting to MySQL

2003-01-21 Thread Roberson, Jeff, Mr (Contractor) ACI
Are you inserting large blobs by any chance? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 11:44 AM To: CF-Talk Subject: Re: reconnecting to MySQL On Tuesday 21 Jan 2003 16:18 pm, Rahmin Pavlovic wrote: Hrmph. There isn't a more

Re: Goodbye cruel world

2003-01-21 Thread Matt Brown
At 02:11 PM 1/20/2003 -0500, you wrote: I forgot about that. I did have several problems when using norton securities, then I switched to zone alarm (which was a mistake) then finally found that sygates personal firewall worked the best. Defiantly leave the virus protection on though. 5000 files

RE: Goodbye cruel world

2003-01-21 Thread Matt Brown
At 05:53 PM 1/20/2003 -0500, you wrote: I'm using a cable service. I'm getting Norton anti-virus put on here. I don't know if I'll have to reinitialize my computer yet but will figure it out I guess :) Bad thread there Mike. Hope it is not a worm or a trojan as you suspect. If you do have

RE: Goodbye cruel world

2003-01-21 Thread Matt Brown
Mike, what intrigues me is that the problem started and grew over time. That is pretty weird. Most software problems are there or not. (Sometimes only in some rare circumstances, but generally problems don't get worse with regular use.) If you would like to contact me off line. I can see if I

RE: Goodbye cruel world

2003-01-21 Thread Robertson-Ravo, Neil (RX)
I use BlackICE with no complaints...its really secure. -Original Message- From: Matt Brown [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 16:30 To: CF-Talk Subject: Re: Goodbye cruel world At 02:11 PM 1/20/2003 -0500, you wrote: I forgot about that. I did have several problems when

Re: DHTML menu and select boxes

2003-01-21 Thread Thomas Chiverton
On Tuesday 21 Jan 2003 16:44 pm, Robertson-Ravo, Neil (RX) wrote: This is a know 'bug' and the ways I have seen it fixed before is to disable the form box when the menu is activatedwhat you are seeing is expected behaviour and not a bug per say . Have you tried setting the z-index of

Re: CFMX Com Question

2003-01-21 Thread Samuel R. Neff
If WG's CFC recommendation doesn't fix the problem, then you can create a new VB COM object that is just a lightweight wrapper for your other COM object, but which provides a release() method to set the object to nothing. Of course your COM object will still be in memory, but at least the

Re: Goodbye cruel world

2003-01-21 Thread Thomas Chiverton
On Tuesday 21 Jan 2003 16:53 pm, Robertson-Ravo, Neil (RX) wrote: I use BlackICE with no complaints...its really secure. Software firewalls, on Windows, are pointless: http://tooleaky.zensoft.com/ (exec. summ. : any process on Windows can script IE, and IE you will have allowed outbound, so any

Re: reconnecting to MySQL

2003-01-21 Thread Rahmin Pavlovic
Are you inserting large blobs by any chance? I'm not, but I do think the problem is somewhere in the CF administrator since the mySQL server is on the same machine. Maybe the CF server is on a remote machine, but either way I'm looking into this. Thanks for the tips.

Web Page -- PDF -- Labels?

2003-01-21 Thread Bob Haroche
Sorry to re-cycle what has to be a newbie question but google didn't turn up anything particularly helpful. My client wants to be able to print labels from her browser. The application is built with CF 5 and Access. I think the notion of printing web pages for use as labels is pretty dubious

replacement for obsolete function

2003-01-21 Thread Steve Dworman
Does CFMX have an alternative function to cfusion_settings_refresh()? Thanks, Steven D Dworman Macromedia Certified Developer - Web Consultant Systems Administrator ComSpec International - http://www.comspecinternational.com

Re: replacement for obsolete function

2003-01-21 Thread Jochem van Dieten
Steve Dworman wrote: Does CFMX have an alternative function to cfusion_settings_refresh()? No. But many of the things that required the use of cfusion_settings_refresh() do not require any action at all anymore. And you can restart some of the subservices, i.e. restart just the

RE: Flash Data Grid

2003-01-21 Thread Mike Chambers
you can view a couple of examples here: http://www.markme.com/mesh/drk/dg_1.html mike chambers [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 11:36 AM To: CF-Talk Subject: Flash Data Grid I'm curious

Training

2003-01-21 Thread Scott Wilhelm
Does anyone know of any good training options for Cold Fusion location in Central/Northern NY? (already checked out Ikon/CESC...they offer next to nothing)... Thanks! Scott ~| Archives:

RE: Web Page -- PDF -- Labels?

2003-01-21 Thread webguy
There is Avery label tag on macromedia.com that should do what u want. WG -Original Message- From: Bob Haroche [mailto:[EMAIL PROTECTED]] Sent: 21 January 2003 17:13 To: CF-Talk Subject: Web Page -- PDF -- Labels? Sorry to re-cycle what has to be a newbie question but google

SQL 2000 sp3

2003-01-21 Thread Zac Spitzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 http://www.microsoft.com/sql/downloads/2000/sp3.asp z -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.0 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQE+LYPM1lRHdy8ASusRAofVAJ0Zz+wl/Rqa3wOuqXKE4oX+JLxWfACgrT/c

Re: QofQ Joins

2003-01-21 Thread Dave Carabetta
Is it possible to do an outer join in a query of queries? I can't find any good documentation that explains QofQ's capabilities/limitations. It seems to support inner joins, but I haven't come up with an outer join syntax that doesn't throw an error. I found this article to be extremely helpful

RE: Goodbye cruel world

2003-01-21 Thread Mark W. Breneman
I would not say Software firewalls, on Windows, are pointless by any means. Maybe for outbound filtering but, this is assuming that someone has already taken control of a process in windows. If someone (or a virus) has done that, the fight is already lost. Mark W. Breneman -Macromedia Certified

multi homed sever, 443 will not display

2003-01-21 Thread Smith, Matthew P -CONT(DYN)
We've just migrated our production web server to a new box. We have several virtual sites set up in iis. The default web site will display via both port 80 and 443, however the virtual sites will only display over post 80. We are getting a network connection refused when trying to access the

Application.cfm

2003-01-21 Thread Scott Wilhelm
Do I have to include application.cfm in all my cfm pages, or is that automatically done for you? Scott ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Application.cfm

2003-01-21 Thread Stephen Moretti
Do I have to include application.cfm in all my cfm pages, or is that automatically done for you? Its done automatically for you. Just make sure that if you're on *nix that application.cfm is name with a capital A, otherwise it won't be included. Stephen

Re: Application.cfm

2003-01-21 Thread Cutter (CF_Talk)
If an Application.cfm file exists it will automatically be loaded prior to loading the called .cfm page, even if the file called is within a subdirectory (unless the subdirectory has it's own Application.cfm) Cutter Scott Wilhelm wrote: Do I have to include application.cfm in all my cfm

Re: Application.cfm

2003-01-21 Thread Jeff Garza
your coldfusion templates will look for an application.cfm file recursively up the directory tree automatically. If your template is in c:\inetpub\wwwroot\mydirectory\ ColdFusion will search in c:\inetpub\wwwroot\mydirectory\, then c:\inetpub\wwwroot\, then c:\inetpub\, then c:\ HTH, Jeff

RE: Application.cfm

2003-01-21 Thread Lee Fuller
Application.cfm is read on the load of each and every CFM page within the same directory as the Application.cfm page, and below that directory. Upon running a CFM page, CF looks for an application.cfm page in the same dir. If it doesn't find one, it traverses up to the next level of dir and

RE: multi homed sever, 443 will not display

2003-01-21 Thread Smith, Matthew P -CONT(DYN)
After a little research, it seems that at least one user has run into the same problem. Unfortunately, it appears that it was not resolved. Perhaps a rollback to updater 1? ~| Archives:

RE: multi homed sever, 443 will not display

2003-01-21 Thread Mark A. Kruger - CFG
Matt, Each SSL Certificate must be applied to a separate IP address. You cannot do virtuals that each have their own cert. How will the web server know which certificate to serve without looking at the header (which it cannot access until it establishes a secure socket). -Mark -Original

  1   2   >