RE: AOL? (Resolved?)

2002-12-19 Thread Lee Fuller
Has anyone resolved the issue with AOL? We are still completely unable to send email to any AOL addresses. Our servers are not on any lists that we can find, and we RDNS perfectly. ~| Archives: http://www.houseoffusion.com/cf_l

OT: javascript popup window

2002-12-19 Thread S . Isaac Dealey
I'm working with a named popup window ( and yes, I know ) ... so if the popup is still open and it's opened a second time, it doesn't open another window, it just reuses the existing window. The problem I'm having is that in Netscape, I can't seem to get the onload event to fire when the window is

RE: ColdFusion and DDE

2002-12-19 Thread Jacob
I am lost also... Dynamic Data Exchange. So ColdFusion can communicate with other programs. Want I know about DDE is what I just read in the last 10 minutes. At 02:22 PM 12/19/2002 -0500, you wrote: >Um... >Are you referring to Windows Drag'n'drop? If so, that's going to be >browser-dependent

RE: AOL? (Resolved?)

2002-12-19 Thread Kris Pilles
I am clueless about it I called AOL and their tech advised me to make RDNS entries for every domain then wait 24 hours and try again -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 2:26 PM To: CF-Talk Subject: RE: AOL? (Resolved?

RE: CFMX / JVM

2002-12-19 Thread Mark Johnson
As an additional addendum to this. I would avoid anything higher then 1.4.0 as many on this list who have tried 1.4.1 have had various issues. Mark -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 10:18 AM To: CF-Talk Subject: Re: CFMX

Re: ColdFusion and DDE

2002-12-19 Thread Jeff Garza
DDE stands for Dynamic Data Exchane across Office Applications. Jeff - Original Message - From: "Ben Doom" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 19, 2002 12:22 PM Subject: RE: ColdFusion and DDE Um... Are you referring to Windows Drag'n'drop? If

RE: javascript popup window

2002-12-19 Thread Matthew Small
On the page that opens up your popup, have a function that knows whether or not the page is opened, then close it if it is, every time. Call this function to open your popup. var up; up = false; function windowopener(num) { if (up) userpage.close();

RE: javascript popup window

2002-12-19 Thread James Ang
Uh.. Shouldn't this: window.onload = showThisAlert(); Be: window.onload = showThisAlert; ??? And window.open() by defaults searches the window name space for a window with the name and return the object handle for that window. If it fails, only then does it create a new window and return the obj

RE: javascript popup window

2002-12-19 Thread Ben Doom
An (untested) idea: In your calling window's javascript, check to see if the window is open. If not, open it and let the onload handler run the function. If the window is open, focus on it and run the function from the parent window. --Ben Doom Programmer & General Lackey Moonbow Sof

Re: CFMX / JVM

2002-12-19 Thread Frank Mamone
Where can I find the procedure to change the JVM used by CFMX? - Original Message - From: "Mark Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 19, 2002 2:31 PM Subject: RE: CFMX / JVM > As an additional addendum to this. I would avoid anything h

RE: AOL? (Resolved?)

2002-12-19 Thread Lee Fuller
Did they say that they had implemented a change, or what they're doing? This is completely irresponsible of a network administration to simply implement something that could effect millions, without so much as a warning, URL as to where we could find info... SOMEthing. Completely insane | ---

Re: ColdFusion and DDE

2002-12-19 Thread Jacob
Exactly.. Doable in ColdFusion? This will not be an office application. At 12:32 PM 12/19/2002 -0700, you wrote: >DDE stands for Dynamic Data Exchane across Office Applications. > >Jeff > >- Original Message - >From: "Ben Doom" <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent:

RE: AOL? (Resolved?)

2002-12-19 Thread Mark W. Breneman
Is this a new issue? I remember an AOL issue almost a year ago about cfmail being blocked by AOL due to CF could be used as a Spam engine. I did not verify that actually happened or if it was just a rumor. >From what I remember you could use a mailto:[EMAIL PROTECTED]] Sent: Thursday, December

RE: javascript popup window

2002-12-19 Thread S . Isaac Dealey
> Uh.. Shouldn't this: > window.onload = showThisAlert(); > Be: > window.onload = showThisAlert; Yea, it was before and then I goofed it up -- put it back, but that's not what's causing the problem apparently... I was getting an error in Netscape of "arg has no properties" that's changed, it no

One More Question Re: Is there a Better Way to do this?

2002-12-19 Thread Kelly Matthews
ok right now i am doing this SELECT DISTINCT DJ_Dictionary.Word FROM DJ_Dictionary WHERE '#dreamtext#' LIKE '% ' + DJ_Dictionary.Word + ' %' ORDER BY DJ_Dictionary.Word Works great and is very speedy. I implement the spaces then just find the words and the results come back very fast

RE: AOL? (Resolved?)

2002-12-19 Thread Matt Robertson
One of my client just mailed to their association membership. The list contains about 4000 AOL addresses, and this isn't the first time they've done that. While I add some cfmailparams to make the mailpiece more standards-compliant, I don't change the mailer name. Deliveries went thru fine. I

Figured it out

2002-12-19 Thread Kelly Matthews
this works OR '#dreamtext#' LIKE '% ' + DJ_Dictionary.Word2 + 's %' ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4

Re: How to do this without the subselect?

2002-12-19 Thread Jochem van Dieten
Rick Faircloth wrote: > > You may be right...perhaps I should got back to Access... > at least it was *advanced* enough to handle sub-selects... :o) There are other very nice free databases that have a HISTORY that reads like MySQL's TODO :-) Jochem ~~~

Re: AOL? (Resolved?)

2002-12-19 Thread JLH All Turbo
Aol just won over $7 million from a spamming company.. they are cracking down.. I wouldn't be surprised ... http://news.com.com/2100-1023-978019.html Don't know if this has anything to do with this topic at all. Jacob. - Original Message - From: "Mark W. Breneman" <[EMAIL PROTECTED]> To:

Re: ColdFusion and DDE

2002-12-19 Thread Samuel R. Neff
At 11:02 AM 12/19/2002, you wrote: >Is it possible to use DDE links in ColdFusion? > >Jacob You're talking about server side, right? Not possible natively but it is possible if you write (or find) a DDE wrapper COM object. On client side, can probably do it with ActiveX. Isn't DDE a really old

Re: How to do this without the subselect?

2002-12-19 Thread Jochem van Dieten
Rick Faircloth wrote: > > I've just always found the joins, especially left, outer, inner, etc., to be > unintuitive when looking at the code. I guess I just haven't worked with > them enough. > I've always worked around them with subselects, which mySQL won't do. (Until > 4.2) Some first form o

RE: How to do this without the subselect?

2002-12-19 Thread Rob Rohan
I dig PostgreSQL http://www14.us.postgresql.org/ (though I still can't pronounce it) (non us www.postgresql.org) Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursd

Re: Self Join Question

2002-12-19 Thread Samuel R. Neff
select B1.Branch_Name, B2.Branch_Name FROM Branches B1 LEFT JOIN Branches B2 ON B1.branch_id = B2.sub_branch Might have to play with the join a little bit, but that's the basic concept. This only does branches and sub-branches. It gets significantly more complex when your sub branches hav

Re: Self Join Question

2002-12-19 Thread Jochem van Dieten
Les Mizzell wrote: > > I've got a table of Office Branches. Some of them are MAIN BRANCHES (value > "main" under "sub_branch" in table). > Others are SUB BRANCHES and would have the branch_ID of the main branch > listed in the "sub_branch" cell. > > So, I need a self join to get this to work, cor

CFMX for JRun startup issue

2002-12-19 Thread Dave Carabetta
I've followed all the JRun SP1a (Build 54102) instructions as far as coordinating file changes for CFMX integration, and the CFMX service starts up seemingly OK. However, whenever I try and navigate to the CF Administrator, I've constantly getting this error: 500 coldfusion/compiler/ASTruntimeC

RE: Self Join Question

2002-12-19 Thread Les Mizzell
Thanks... At some point, the client has *got* to stop adding features! I've pretty much figured a way to PREVENT sub branches from having their own subs, so at least that part of the problem is licked! Les :> select B1.Branch_Name, B2.Branch_Name :> FROM :>Branches B1 :> LEFT JOIN :>Bra

Re: One More Question Re: Is there a Better Way to do this?

2002-12-19 Thread S . Isaac Dealey
> ok right now i am doing this > [:alpha:]])","\1 > \2","ALL")> > [:alpha:]])([[:alpha:]])","\1 > \2","ALL")> > > SELECT DISTINCT DJ_Dictionary.Word > FROM DJ_Dictionary > WHERE '#dreamtext#' LIKE '% ' + DJ_Dictionary.Word + ' %' > ORDER BY DJ_Dictionary.Word > > Works great and is ve

Re: One More Question Re: Is there a Better Way to do this?

2002-12-19 Thread Kelly Matthews
for now im not going to do verity BUT it is full text indexed would using CONTAIN instead of like make any difference? > >Well, the easy way is to just add 'bats' to your words table -- this also >will help with plurals for which the trailing s doesn't necessarily apply, >i.e. gooss, octopuss or

RE: javascript popup window

2002-12-19 Thread S . Isaac Dealey
I remember now the big reason I didn't want to try to close the open window from the parent window. If the user refreshes the parent window, the pointer to the popup disappears, so if a user gets the popup, leaves it up, hits another link, goes to another page, the function still exists, but the po

OT importing excel spreadsheet into access Database with web form

2002-12-19 Thread Jones, Becky
does anyone have an example of code that would allow you to import an excel spreadsheet into an access database? thanks! bec. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseo

RE: javascript popup window

2002-12-19 Thread Matthew Small
What would happen if you always tried to close it, even before it is open? How about closing it every time it loses focus? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original M

Re: One More Question Re: Is there a Better Way to do this?

2002-12-19 Thread S . Isaac Dealey
I wouldn't expect it to make a difference -- checking for plurals is a "semantic" (may not be the right technical term) search criteria -- it's not something that can be easily defined, even with a regular expression because the rules are often specific to an individual word, so it requires its own

RE: Self Join Question

2002-12-19 Thread Rob Rohan
>At some point, the client has *got* to stop adding features! I've pretty no they don't, and if you don't stop them they will keep adding features forever. ("I heard about this new do dad at a cocktail party Flushus an I went to, If you could just go ahead and add that in that'd be great. Just put

Re: How to do this without the subselect?

2002-12-19 Thread Jochem van Dieten
Rick Faircloth wrote: > > Notes: > > This query works to select UtilityWaivers that were issued within a given > month and which were issued without an accompanying RentalWaiver. > > The part of the query before the "where" clause selects all UtilityWaivers > which were issued within the specifi

RE: javascript popup window

2002-12-19 Thread S . Isaac Dealey
> What would happen if you always tried to > close it, even before it is open? > How about closing it every time it loses focus? There's a thought ... In the past if I tried to close a window that wasn't open, I've just gotten js errors... the onblur() idea I hadn't thought of and I may wind up us

Re: MX Support # 44972 (FIX)

2002-12-19 Thread Jesse Houwing
Robertson-Ravo, Neil (RX) wrote: >This one is really getting me down. Macromedia has identified issue #44972 >: The ColdFusion MX Application Server service does not start automatically >following a Windows startup or reboot. > >There seems to be no fix with it in Updater 1 or 2, and at present i

writing to Excel

2002-12-19 Thread nick
Anyone have any good resources or documentation for writing to Excel spreadsheets with CF? Thanks. Nick ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/

RE: How to do this without the subselect?

2002-12-19 Thread Ryan Kime
>(though I still can't pronounce it) Pronounce the first section as it looks then add Q-L on the end. Postgres-Q-L -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 2:32 PM To: CF-Talk Subject: RE: How to do this without the subselect? I di

RE: Self Join Question

2002-12-19 Thread Ryan Kime
>At some point, the client has *got* to stop adding features! That's easy to resolve...raise your quoted hourly rate. :) -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 2:27 PM To: CF-Talk Subject: RE: Self Join Question Thanks... At

WOT: Web Based Collaboration System

2002-12-19 Thread Jeff D. Chastain
This is way off topic, but I am running into a wall here. I am looking for an off-the shelf web based project collaboration tool. Basically, an online system where members of a project can go and share documents, post calendar events, engage in discussions, track issues, etc. I have searched eve

RE: writing to Excel

2002-12-19 Thread Matthew Small
Ray Thompson on CFDJ-List has written an article about accessing Excel via ODBC. Join that list at sys-con.com and write to him for it. I would give it to you except he has requested that it not be distributed. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy

RE: Web Based Collaboration System

2002-12-19 Thread Rob Rohan
www.sourceforge.net :) Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 1:27 PM To: CF-Talk Subject: WOT: Web Based Collaboration System Th

debug code on top

2002-12-19 Thread Tim Do
I remember seeing this posted before but don't remember if it was ever answered. I get a couple of lines of debug code on top of my page once in a while. Anybody know why? ~| Archives: http://www.houseoffusion.com/cf_lists/index.

Re: Web Based Collaboration System

2002-12-19 Thread Pete Ruckelshaus
http://www.viecon.com/ - Original Message - From: "Jeff D. Chastain" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 19, 2002 4:27 PM Subject: WOT: Web Based Collaboration System > This is way off topic, but I am running into a wall here. I am looking > fo

RE: Web Based Collaboration System

2002-12-19 Thread Boardwine, David L.
Check out Virtual Project 3.0 http://www.fusionauthority.com/Article.cfm?ArticleID=1998 -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 4:32 PM To: CF-Talk Subject: RE: Web Based Collaboration System www.sourceforge.net :) Rob http://tr

RE: Web Based Collaboration System

2002-12-19 Thread Ryan Kime
http://www.groove.net/ Haven't it in a while...trial is feature-limited http://www.groove.net/products/workspace/comparison.html -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 3:27 PM To: CF-Talk Subject: WOT: Web Based Collabor

Interesting CF 5 bug or convention

2002-12-19 Thread Mark A. Kruger - CFG
Note - this is CF 5. I'm not sure if you would call this an undocumented feature but I have a Q of a Q that pulls data from a cached and rather lengthy stored procedure. Because the columns in the Q of a q are determined by the user, I chose to build a string and pass it into the q of a q us

?RequestTimeout - MM's offical stance?

2002-12-19 Thread Oliver Cookson
Hi, I have found 2 conflicting pieces of offical MM doc with regards to over- riding the RequestTimeout in the URL using "?RequestTimeout=120". I was under the impression it didn't work in MX and you had to use . This first link clearly shows that it IS still a option. Please view the below li

RE: Self Join Question

2002-12-19 Thread Les Mizzell
:> ("I heard about this new do dad at a cocktail party Flushus an I :> went to, If :> you could just go ahead and add that in that'd be great. Just :> put it under :> that button.") "Feature Creep" - gets billed at 1 1/2 the usual rate if it starts before the site is finished to the original spec

Re: debug code on top

2002-12-19 Thread Gyrus
- Original Message - From: "Tim Do" <[EMAIL PROTECTED]> > I remember seeing this posted before but don't remember if it was ever > answered. I get a couple of lines of debug code on top of my page once in a > while. Anybody know why? --- Debug code as in CF server

Web Based CD key

2002-12-19 Thread Luis Lebron
We have a customer that has asked us to create a CD that would only "unlock" if a person was logged in to a particular web site. Any ideas on how this could be done. I'm thinking that the CD could check for the existence of a particular cookie. Anyone have any ideas? thanks, Luis ~~

Another Disturbing MX Error

2002-12-19 Thread Steven Erat
While you may or may not be on Linux, I think that if you check out this article that some parts of it may be useful for you regardless of your OS. http://www.macromedia.com/v1/handlers/index.cfm?ID=23524&Method=Full&PageCall=/support/index.cfm Specifically, this part: Hotspot crash or out

Re: ?RequestTimeout - MM's offical stance?

2002-12-19 Thread Jerry Johnson
I don't know the answer to the question you asked, but I have a question in response. What makes a PPT presented by Sandra Clark at CFFUN-02 an official MM stance on anything? (Truly curious) Jerry Johnson >>> [EMAIL PROTECTED] 12/19/02 05:00PM >>> Hi, I have found 2 conflicting pieces of off

RE: javascript popup window (SOLVED)

2002-12-19 Thread S . Isaac Dealey
Woohoo!! I figured it out. :) Instead of trying to set mypopup.window.dialogArguments = myobject; from the parent window the way I had been, to simulate the behavior of the IE showModelessDialog() function, I set a variable as an attribute of the parent window top and then reference that from th

Re: Self Join Question

2002-12-19 Thread Jochem van Dieten
Les Mizzell wrote: > Thanks... Don't forget to mark post Samual's answer (it is better than mine) in the thread you opened on the CF Forums. Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscrip

RE: Web Based CD key

2002-12-19 Thread Ben Doom
Not sure how successful that would be. You'd have to take into account the different versions of the different browsers on the different platforms (assuming this is x-platform) and that could be a serious pain. It might be better to write in a little doohicky that asks them for login information

Re: Web Based CD key

2002-12-19 Thread Jochem van Dieten
Luis Lebron wrote: > We have a customer that has asked us to create a CD that would only "unlock" > if a person was logged in to a particular web site. Any ideas on how this > could be done. I'm thinking that the CD could check for the existence of a > particular cookie. Anyone have any ideas? Wha

RE: Self Join Question - what worked...

2002-12-19 Thread Les Mizzell
Here's the actual code used and now working The Query: select B1.br_name, B2.br_name as subname, B1.branchID, B2.branchID as subID, B1.br_contFName, B2.br_contFName as subFName, B1.br_contLName, B2.br_contLName as subLName, B1.br_contEmail, B2.br_contEmail as subEmail, B1.b

Humanclick Clone?

2002-12-19 Thread John McKown
I know this has been asked in the past, but I never saw an answer. Has anyone built a clone of Humanclick(LivePerson). I would love to have something like humanclick that uses CF/Flash. Thanks. John McKown ~| Archives: http:/

Netscape 4.7 squares galore

2002-12-19 Thread Rob Rohan
We just moved from 5 to MX and are cleaning up some final odds and ends. One of the last things we are checking is to see if the site is at least usable in 4.7 (I hate 4.7 I wish it would've been time bombed). When I hit any page on the site, the text turns to squares. Like it is using an unsuppo

Re: Humanclick Clone?

2002-12-19 Thread webmaster
I have one! Email me! >On Thu, 19 Dec 2002 16:52:41 -0500 John McKown <[EMAIL PROTECTED]> wrote. >I know this has been asked in the past, but I never saw >an answer. Has anyone built a clone of Humanclick(LivePerson). >I would love to have something like humanclick that uses CF/Flash. > >Than

RE: Web Based Collaboration System

2002-12-19 Thread Chris Kief
If you can go with php, I highly recommend this: http://www.phpcollab.com/website/index.php We've been using it for a while now with great success. I believe a new version was just released as well. chris -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]] Sent: Thurs

Re: Netscape 4.7 squares galore

2002-12-19 Thread Jochem van Dieten
Rob Rohan wrote: > We just moved from 5 to MX and are cleaning up some final odds and ends. One > of the last things we are checking is to see if the site is at least usable > in 4.7 (I hate 4.7 I wish it would've been time bombed). > > When I hit any page on the site, the text turns to squares.

Re: CFMX / JVM

2002-12-19 Thread Joe Eugene
I dont think there is a written procedure.. 1. Downloads J2SE 1.4.0. 2. Install. 3. In the admin point JVM to new install java runtime(jre). 4. Recycle CFMX service and u are good to go.. Try this.. write a loop time code or some.. and run it under different JVM's swtiching back and forth.. 1.4.0

RE: MX Support # 44972

2002-12-19 Thread Tilbrook, Peter
I was having a problem with the Verity K2 Server service under XP Pro (a work global upgrading, fun, fun, fun) but seem to have it sorted. == Peter Tilbrook Project Officer Strategic Development Australian Building Codes Board Department of Industry, Tourism and Resources GPO Box 9839 CANBERRA ACT

RE: Web Based CD key

2002-12-19 Thread Luis Lebron
A PowerPoint Presentation done with Microsoft Presenter? Luis -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 4:24 PM To: CF-Talk Subject: Re: Web Based CD key Luis Lebron wrote: > We have a customer that has asked us to create a C

Re: Web Based CD key

2002-12-19 Thread Joe Eugene
> We have a customer that has asked us to create > a CD that would only "unlock" Interesting... here are my thoughts.. The cdstart.. can be an applet that posts to webservice/url/form.. to login.. On login success.. start the *.exe app.. director or whatever.. Joe On Thu, 19 Dec 2002 15:41:52 -

RE: Netscape 4.7 squares galore

2002-12-19 Thread Rob Rohan
Groovy! thanks a lot Jochem. I did which failed miserably and caused the squares anyway (MX is utf-8 by default I think) However works like a charm. Joy :D Rob -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 2:42 PM To: CF-Talk S

Re: Web Based CD key

2002-12-19 Thread Jochem van Dieten
Luis Lebron wrote: > A PowerPoint Presentation done with Microsoft Presenter? Convert it to Flash (IIRC converters are commercialy available) and set up something with Flash Remoting. Jochem ~| Archives: http://www.houseoffusio

writing to Excel

2002-12-19 Thread Steven Erat
Try this: DYNAMIC DELIVERY OF CSV FILES EXAMPLE H3 {color: Red;} Dynamic CSV Demo

Re: Humanclick Clone?

2002-12-19 Thread Charlie Griefer
Original Message - From: "webmaster" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 19, 2002 3:38 PM Subject: Re: Humanclick Clone? > I have one! > > Email me! Oh c'mon! share with the whole class :) > > > > >On Thu, 19 Dec 2002 16:52:41 -0500 John M

OT: One more command line question

2002-12-19 Thread Casey C Cook
Ok peeps- I have been slaving over this problem for 3 days and it boils down to the following: Command line: bcp Salman_devl..Correctly_Assigned_Updates_Load in e: \Salman_devl\Upload\CorrectlyAssignedUpdates_USA.txt -t -c -S TXFTWDB3\DB -U abc -P abc Error message: DB-Library Error: Invalid p

Re: ODBC Data Source [Merant dBase/FoxPro Driver]

2002-12-19 Thread Keith
This is just a very wild guess, but try removing the semi-colon at the end of the SQL statement. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cf

Another Disturbing MX Error

2002-12-19 Thread Steven Erat
Ok, I may be off about the exact size of the perm and maxperm defaults in the jvm versions, but 1.4.1 definitely increased the maxpermsize over 1.3.1. Here's some refs I found on the topic: http://wireless.java.sun.com/midp/articles/garbagecollection2/ http://developer.java.sun.com/developer/co

RE: How to do this without the subselect?

2002-12-19 Thread Rick Faircloth
Thanks for the overview, Jochem. It's much appreciated. I'll file the info away for reference. >>The "where" clause then specifies that the joined group should be limited >>to those UtilityWaivers whose ClientID does match any RentalWaiver ClientID. >Yes. I got one part right! There's hope for

Cold Fusion forum

2002-12-19 Thread Michael T. Tangorre
I am attempting to to try some more advanced things with an idea I have. I am going to be building an online forum to tinker with.. can anyone point me to some database examples? The code side is what I am going to be playing with but need a good architecture to use.. anyone know of one I can do

CFML & Oracle SP

2002-12-19 Thread Anthony Wong
Does anyone have an insight on this? This executes and returns an error: "The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another name for undefined values. " Stored Procedures is written i

Print size for CF pages

2002-12-19 Thread Anthony Wong
I've noticed that when the content of a page goes beyond a certain browser width, the print out will cut off those extended areas. Is there a work around to ensure that all the contents in the browser are printed? Am using IE. Thanks. -Ant ~~~

Re: Print size for CF pages

2002-12-19 Thread Jason Miller
Sorry I can't be more specific - but there is a CSS style that helps control print versions. I know it specifically addresses fonts and some colors - maybe sizes too. I would check w3c.org for more specifics. I just got caught in a half hour black hole and couldn't find specifically what I was l

WOT: Page loads at bottom

2002-12-19 Thread Terry
Wierd! One page in my application loads at the bottom of the page and I have no idea why. All the others load at the top, but they are shorter. Any ideas on how to debug are greatly appreciated. The app is in FB3, if that makes any difference.

Another Disturbing MX Error

2002-12-19 Thread Steven Erat
Ok, here comes the polished version with a little more info: I've tracked down three categories of the java.lang.OutOfMemoryError. - java.lang.OutOfMemoryError <> - java.lang.OutOfMemoryError: unable to create new native thread - Exception in thread "CompileThread0" java.lang.OutOfMemoryError:

Re: Another Disturbing MX Error

2002-12-19 Thread Sean A Corfield
First off, thanx for this Steven - very helpful! I have a question: On Thursday, Dec 19, 2002, at 20:10 US/Pacific, Steven Erat wrote: > So the 1.3.1._03 VM has a maximum permanent generation size that > defaults to 64MB . Perm memory is a subset of the heap, so even though > the heap may be 51

RE: Web Based CD key

2002-12-19 Thread Mosh Teitelbaum
What's to stop the user from just launching the application manually? The only way that you can really secure the data on the CD would be to encrypt it somehow and require the user to access the data via a custom application that is included on the disk. The app could access the website, validate

RE: Web Based CD key

2002-12-19 Thread Mosh Teitelbaum
Good call. Just make sure the client knows that it still isn't completely protected. There are SWF decompilers available that would likely allow someone to bypass whatever security mechanisms are embedded in the SWF. You could include a Flash file that essentially downloads the real presentation

Re: Web Based CD key

2002-12-19 Thread Jason Miller
building on the last post - you can also toss it into director - either port it to flash and drop it on director or use the director import. Then you can ouput as shockwave to still allow it to be web enabled or compile it as a director movie - .dxr - The director movies lingo CAN NOT be hacked. T

Re: Print size for CF pages

2002-12-19 Thread S . Isaac Dealey
> I've noticed that when the content of a page goes beyond a > certain browser > width, the print out will cut off those extended areas. Is > there a work > around to ensure that all the contents in the browser are > printed? > Am using IE. > Thanks. Yea, something like .. or any of a number

<    1   2