RE: Doc to HTML with basic tags

2002-08-15 Thread Hugo Ahlenius
I saw a thing on CFCOMET, using an MS Word control (obviously on a Win server) opening a doc and saving it as a html. Then you would get MS Word's nightmare-html -- but don't fear. I think there is a mode for the program tidy that cleans up that mess. (Alternatively, save it as text?) /Hugo

RE: CFMX variable issues

2002-08-15 Thread mark brinkworth
It doesn't appear to be. Also #structKeyExists(CGI,"Referer")# outputs YES. Cheers >Maybe CGI.REFERER is actually > variables[CGI.REFERER] > > > > > There is something a little unusual about the CGI scope in > > CFMX. Consider > > the following piece of code, it outputs the variable > > CG

RE: Office XP SQL server

2002-08-15 Thread John Beynon
Best thing to do is to install the full blown SQL Server MMC admin console on your PC and point it at the MSDE - it's the easiest way to administer it...it was on microsoft.com once but I can't find it anymore HTH, Jb. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent

RE: How to administer CFMX's built in web server?

2002-08-15 Thread John Beynon
I've found it: "http://devex.macromedia.com/developer/gallery/info.cfm?ID=B2DDA339-850B-11D 6-84508B94F85A&method=Full" Careful with the wrap Jb. -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: 14 August 2002 14:32 To: CF-Talk Subject: How to administer

Re: Best Practices

2002-08-15 Thread Douglas Brown
>Somebody brought up previously that there shouldn't be a central 'best >practices' document, as it may be intimidating to beginners (if i understood >correctly). I can see that... I really cannot see that. If a person is taught "The best practice" to begin with, then he has nothing to fear. Fol

Re: Best Practices

2002-08-15 Thread Charlie Griefer
Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 15, 2002 1:00 AM Subject: Re: Best Practices > >Somebody brought up previously that there shouldn't be a central 'best > >practices' document, as it may be intimidating

IIS / CFServer Problem

2002-08-15 Thread Britta
I've WinXP with IIS installed with Cold Fusion Server 5, default website IP all unassigned, CF administrator shows up http://127.0.0.1/CFIDE/Administrator/index.cfm. I can view html & CFM pages on the sites on my computer just fine as long as my cable modem is not hooked up to the internet. The m

Microsoft Excel under MX

2002-08-15 Thread James Smith
I think I have nearly got this MX thing under control ;-) Have I missed something or does MX not take any notice of DSN's set up from the system ODBC manager anymore, and if not how can I set up an Excel file as a datasource? -- Jay [EMAIL PROTECTED] "Computer games don't affect kids, I mean if

Problem with embed and proxy server

2002-08-15 Thread John McCosker
Hi, sorry about the ugly code here, I am experiencing a problem where some customers can successfully use an active X graphing tool called TeeChart, and others cannot, all customers who cannot are being relayed by a proxy server, customers who can view it are not, This a more generalised quest

Re: OT: Another CSS Issue

2002-08-15 Thread James Smith
I have tried a lot of things, from adding the element to existing styles to creating a custom class just for the page break (i.e.: .PBAfter { page-break-after : always}). I have also tried implementing it in several ways but I would have thought a simple or   would have done it. What simple lit

Re: Microsoft Excel under MX

2002-08-15 Thread James Smith
Damn it, sorry people, found it, that whole ODBC Socket thing threw me. I should know better than to do things like this before 10am ;-) -- Jay [EMAIL PROTECTED] "Computer games don't affect kids, I mean if Pac Man affected us as kids, we'd all be running around in darkened rooms, munching pill

Survey Launching

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Hi, I have been asked to investigate the possibility of adding the functionality of an on_close survey to all our sites. It would be a generic survey across them all. This should behave as follows. 1) activate when the user leaves the domain - i.e. clicks some where else. 2) activate when the

RE: IIS / CFServer Problem

2002-08-15 Thread John Beynon
http://127.0.0.1 should work - do you have any proxy server setup or are you proxying requests? You might try ticking the box in IE under connections > LAN Settings - Bypass proxy server for local addresses. How about via http://localhost does that do the same? Jb. -Original Message- Fro

RE: Problem with embed and proxy server

2002-08-15 Thread John McCosker
Just thought I'd reply to myself, problem fixed, IE browser, tools / internet options / advanced / http 1.1 settings / user http 1.1 through proxy connections j -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:50 AM To: CF-Talk Subject

Re: Survey Launching

2002-08-15 Thread Dave Hannum
Give each site an ID, then in the URL string that opens the window, include the ID in the URL string. Have your page that produces the form parce out the ID and put it in a hidden form field. Should be very easy to do. Dave - Original Message - From: "Robertson-Ravo, Neil (REC)" <[EM

SQL Problem

2002-08-15 Thread Andy Ewings
For you SQL guys out there. Do you know if there is an easy way to combine values from multiple rows? e.g. If I have a select from a table that brings back 1 column of names say... id Name 1 Andy 2 Steve 3 Ian 4 James Is there a way of combining these into a list w

Re: OT: Another CSS Issue

2002-08-15 Thread Jochem van Dieten
James Smith wrote: > I have tried a lot of things, from adding the element to existing styles to > creating a custom class just for the page break (i.e.: .PBAfter { > page-break-after : always}). I have also tried implementing it in several > ways but I would have thought a simple or class="PBA

RE: SQL Problem

2002-08-15 Thread Ken Wilson
How about ValueList(QueryName.FieldName) -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 7:28 AM To: CF-Talk Subject: SQL Problem For you SQL guys out there. Do you know if there is an easy way to combine values from multiple rows? e.g

RE: Automated FTP

2002-08-15 Thread Everett, Al
> This will be running on a box that doesn't have codfusion on it. Sounds fishy to me. __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.c

RE: CF Express

2002-08-15 Thread Vince Bonfanti
John, You might want to take a look at BlueDragon Server. It's priced at $249 per server, and is CF5-compatible: http://www.newatlanta.com/products/bluedragon/index.jsp Vince Bonfanti New Atlanta Communications, LLC > -Original Message- > From: John Wilker [mailto:[EMAIL PROTECTED]

RE: SQL Problem

2002-08-15 Thread Tony Weeg
select name+', '+id as Name_Concat from MyTable is this what u where looking for? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sen

RE: CF Express

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Shameless I like it :-) -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 13:24 To: CF-Talk Subject: RE: CF Express John, You might want to take a look at BlueDragon Server. It's priced at $249 per server, and is CF5-compatible: http:/

Re: OT: Another CSS Issue

2002-08-15 Thread James Smith
ok, would someone please shoot me now! I read this one and thought "no, I am using media="all" which should work but no harm in trying I suppose." So I loaded up the page and wouldn't you know it, like an complete twonk I am using this on the only page on the entire site that doesn't load the lin

RE: MS Exchange and CFMAIL

2002-08-15 Thread Robert Everland
In order to let CF relay, Exchange has to allow everyone relay, or CF has to be on the same box as Exchange, neither of these are good options. I just use the built in SMTP that comes with IIS, works pretty good. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://ww

RE: Best Practices

2002-08-15 Thread Everett, Al
I'm all for a "Generally Accepted Best Practices" document, as long as it has the following to bits of informaton: 1. >Why< is it a 'Best Practice?' I've seen too many things that say "do it this way" without an explanation as to why. (I will refer the reader to the parable of 'The Chimpanzees an

RE: Best Practices

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Have you got the CF Best Practice doc from MM? -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 13:39 To: CF-Talk Subject: RE: Best Practices I'm all for a "Generally Accepted Best Practices" document, as long as it has the following to bits of

Grammar Police (was RE: Best Practices)

2002-08-15 Thread Everett, Al
(Let he without sin yadda yadda) > I'm all for a "Generally Accepted Best Practices" document, as long as it > has the following to bits of informaton: That's "*two* bits of information" (Decaffienated syndrome) __ Your ad coul

RE: IIS / CFServer Problem

2002-08-15 Thread Turetsky, Seth
Is this possibly due to the fact that most cable modems block port 80, since they don't want home users running web servers? At home, I set IIS to run on port 8080 and then specify it in the url. -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15,

RE: Best Practices

2002-08-15 Thread Everett, Al
> Have you got the CF Best Practice doc from MM? Somewhere around here probably. I've got (or had) something from a presentation by Uncle Ben a month or two ago, but that was a previous job and was for CFMX. Since we're still using 4.5 'round here (*cough*) some of it won't apply. If you can poi

RE: SQL Problem

2002-08-15 Thread Adrian Lynch
While Andy's out to lunch, I'll answer for him. He needs to get the names into one field. So from. id Name 1 Andy 2 Steve 3 Ian 4 James We need to get in to another table. AllNames Andy, Steve, Ian, James And in SQL if possible Ade -Original M

Re: OT: Another CSS Issue

2002-08-15 Thread Jochem van Dieten
James Smith wrote: > ok, would someone please shoot me now! BOOM!! > I read this one and thought "no, I am using media="all" which should work > but no harm in trying I suppose." > So I loaded up the page and wouldn't you know it, like an complete twonk I > am using this on the only page on the

RE: Best Practices

2002-08-15 Thread Robertson-Ravo, Neil (REC)
here ya go fella : http://www.corfield.org/coldfusion/codingStandards.htm it is geared toward CFMX a little, but prob 90% of it is still CFX.X.X specific. Neil -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 13:48 To: CF-Talk Subject: RE: Best Pra

RE: Best Practices

2002-08-15 Thread Everett, Al
Ah. Already have that one. > -Original Message- > From: Robertson-Ravo, Neil (REC) > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 15, 2002 8:46 AM > To: CF-Talk > Subject: RE: Best Practices > > > here ya go fella : > > http://www.corfield.org/coldfusion/codingStandards.htm >

RE: Best Practices

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Thats enough then... it tells ya what not to do and why not to do it... Jobs a a good 'un nuff said. -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 13:55 To: CF-Talk Subject: RE: Best Practices Ah. Already have that one. > -Original Mes

RE: IIS / CFServer Problem

2002-08-15 Thread Hugo Ahlenius
It shouldn't go out over the cable modem to request it, if you are using localhost or 127.0.0.1 then it should just loop back, right? /Hugo __ Signup for the Fusion Authority news alert and keep up with the latest news in C

RE: IIS / CFServer Problem

2002-08-15 Thread Robertson-Ravo, Neil (REC)
yeap. -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 13:59 To: CF-Talk Subject: RE: IIS / CFServer Problem It shouldn't go out over the cable modem to request it, if you are using localhost or 127.0.0.1 then it should just loop back, right? /Hugo

Doc to HTML with basic tags

2002-08-15 Thread Robert Everland
I am looking for a doc to html converter that will convert a doc to a decent html document, no crazy tags, no crazy css, just straight text with placement. Anyone have anything out there? Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com _

VSS

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Nah, its simply far far too unpredictable I cant seem to switch projects without it asking if I want to save changes to the APF file... if I click Yes, it loses all reference to the files within VSS, if I click No, it loses all reference to files within VSS... I have 2 projects and I want to

REGEX

2002-08-15 Thread Mark Smyth
> Anyone got a regex hanging around which would search a comma delimited > file e.g. > > 1,f,g,h,4,56,"lk,lk,re,tr,yt,",2,3,4,"er,re,tr," > > locate text within the speech marks and replace the commas with another > character (e.g "¬"), thereby producing > > 1,f,g,h,4,56,"lk¬k¬re¬tr¬yt",2,3,4,"

http=cgi

2002-08-15 Thread Raymond Camden
So, I checked with one of the engineers and the thing with HTTP being the same as CGI is old behavior. I never ran into this before - but now you know. Another interesting thing you may not know about cgi - you can output ANY cgi variable, even if it doesn't exist: #cgi.raycanttype# #structkey

Re: Exclude pages from Verity collection

2002-08-15 Thread Zac Spitzer
Al Musella, DPM wrote: >I may do things the hard way, but the approach I take is to put a > comment in the files that I do not want indexed, like: > > Then, when indexing them, I use cffile to list the files in the > directories, and cfhttp to read them. I look for that comment, and if not

RE: REGEX

2002-08-15 Thread Adrian Lynch
I don't think you need a regex, although it might be faster. Using double quotes as the delimiter, all the even numbered elements will be the ones you want to convert. Grab these then replace all the commas. Ade -Original Message- From: Mark Smyth [mailto:[EMAIL PROTECTED]] Sent: 15 Aug

RE: http=cgi

2002-08-15 Thread Raymond Camden
FYI, it is a bug in CFMX that you can do: . We should throw an error on any assignment to it. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : cfjedimaster "My ally is the Force, and

RE: access db

2002-08-15 Thread Bryan F. Hogan
Yes, and make the changes needed. But unless it gets unlocked a can't replace it with the correct db. -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 6:33 PM To: CF-Talk Subject: RE: access db can't you just take a copy of the database

RE: access db

2002-08-15 Thread Bryan F. Hogan
Access is not locked, but it is locked as someone has it open or it is being used by CF. -Original Message- From: Sam Roach [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 6:28 PM To: CF-Talk Subject: RE: access db Can you edit that table using only access? or is it locked

RE: access db

2002-08-15 Thread Robertson-Ravo, Neil (REC)
unlock it then! -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 14:22 To: CF-Talk Subject: RE: access db Yes, and make the changes needed. But unless it gets unlocked a can't replace it with the correct db. -Original Message- From: Matthe

RE: Exclude pages from Verity collection

2002-08-15 Thread Hugo Ahlenius
I tried that, but Verity (at least with 4.5.2) seems to ignore it. __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FA

RE: access db

2002-08-15 Thread Bryan F. Hogan
Read my post. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:20 AM To: CF-Talk Subject: RE: access db unlock it then! -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 14:22

Re: Best Practices

2002-08-15 Thread Paul Giesenhagen
Charlie, I think this is a great idea, I have no formal background in any language, but picking things up here and there has made my life easier. I think your idea of a place for tips would be great... and since this list has provide such a great service, maybe it should be here on HoF! It woul

Joining tables across 2 DB2 databases

2002-08-15 Thread Bhandari, Sona
Thanks but the database names are in the query: MSHAREA and MCASA. Date: Wed, 14 Aug 2002 13:36:27 -0700 From: Tim Do <[EMAIL PROTECTED]> To: Subject: RE: Joining tables across 2 DB2 databases Message-ID: <[EMAIL PROTECTED]> try putting dbname..table name -Original Message- From: Bha

RE: access db

2002-08-15 Thread Robertson-Ravo, Neil (REC)
ah :-) That said, if none of these things unlock your file then there is something seriously wrong...try this : 1. Uncheck "Maintain Database Connections" within CF Admin 2. Stop CF 3. Start CF 4. Try and get file If that doesnt work 1. Stop CF 2. Stop IIS 3. Check Security Permissions on

RE: REGEX

2002-08-15 Thread Mark Smyth
good thinking that man thanks -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 14:18 To: CF-Talk Subject: RE: REGEX I don't think you need a regex, although it might be faster. Using double quotes as the delimiter, all the even numbered elements wi

RE: access db

2002-08-15 Thread Bryan F. Hogan
YUP already did that. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:30 AM To: CF-Talk Subject: RE: access db ah :-) That said, if none of these things unlock your file then there is something seriously wrong...try this

RE: access db

2002-08-15 Thread Bryan F. Hogan
P.S. Left site stopped all last night. (this is not a live site, but dev) But still is locked. Lifes a Bitch :| -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:30 AM To: CF-Talk Subject: RE: access db ah :-) That said, i

RE: Best Practices

2002-08-15 Thread Benoit Hediard
Most of CF best practices only talk about simple naming conventions and code layout (which is already very good). But, there isn't many things about patterns/frameworks/methodology (except Fusebox) to build complete "Enterprise class" web applications (with caching, internationalization, configura

any javascripters

2002-08-15 Thread John McCosker
I know its not CF and apologise in advance, I,ve got a hidden frame, there is a timeout set and it will make a http request to check for a new instance of data, If there is a new instance, I want to write the new data to a table in the visible frame, I can do this successfully, code- f

Query of Query Oddness

2002-08-15 Thread Joshua Miller
This is really odd, this is a very simple Query of Query and the function keeps crapping out on me in CFMX ... any ideas? I did a cfdump of the query myQuery and it contains all the fields I'd expect: HELPDOC (string) SECTION (string) TITLE (string) Here's the Query: SELECT * FROM myQuery

RE: access db

2002-08-15 Thread Janine Jakim
Look for the ldb file- as per info below. Is there one defined? When you open an Access database file (.mdb) in shared mode, Microsoft Access also creates a locking information file (.ldb) with the same file name (for example, Northwind.ldb) and in the same folder as the database file. This loc

CF5: Query A Query migration trouble

2002-08-15 Thread douglas . kronenberger
I'm trying to migrate over to CFMX and I'm having some trouble. I'm using this Query Statement: SELECT EmpID, FirstName, LastName, OfficeAbrv, SubOfficeAbrv, ArchiveStatus FROMGetAllUsers WHEREOfficeFilterID = #ListLast(localOfficeID)# AND ( Low

RE: Query of Query Oddness

2002-08-15 Thread Raymond Camden
Section is a reserved word. I checked the docs and it _wasnt_ on the list, so I'm going to add it to livedocs. To correct, just change "section" to "[section]". === Raymond Camden, ColdFusion Jedi Master for Hire Email: [E

RE: access db

2002-08-15 Thread cftalk
You have probably tried this, but have you rebooted (do you have access to the machine)? Chuck Rodgers At 09:37 AM 8/15/02 -0400, you wrote: >P.S. Left site stopped all last night. (this is not a live site, but dev) >But still is locked. Lifes a Bitch :| > >-Original Message- >From: Rob

RE: Query of Query Oddness

2002-08-15 Thread Raymond Camden
Actually, it WAS in the table of reserved words - I was just reading the table wrong. As a general warning - CFMX QofQ has a large number of reserved words to watch out for (although QofQ in CFMX is a heck of a lot better, so it's not a big deal ;) ===

RE: Query of Query Oddness

2002-08-15 Thread Mark A. Kruger - CFG
Josh, Try putting the search string in parenthasis - i.e. WHERE SECTION LIKE ('%Membership%') -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 8:43 AM To: CF-Talk Subject: Query of Query Oddness This is really odd, this is a very simp

RE: access db

2002-08-15 Thread Bryan F. Hogan
Yes, this is true...mostly. But in my case, when the last person closes the db it does not unlock. -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:39 AM To: CF-Talk Subject: RE: access db Look for the ldb file- as per info below. Is th

RE: access db

2002-08-15 Thread Will Swain
Try adding a new datasource for the new db...then delete the old one. Its a pain, but if you set the datasource name in your Application.cfm it should be relatively easy to change. Or restart the server? w -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: 15 August

RE: CF5: Query A Query migration trouble

2002-08-15 Thread Raymond Camden
When doing a QofQ, you do not pass datasource="...". Remove that part from your cfquery tag. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : cfjedimaster "My ally is the Force, and a

RE: access db

2002-08-15 Thread Bryan F. Hogan
Full access to the machine, I have. -Original Message- From: cftalk [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:50 AM To: CF-Talk Subject: RE: access db You have probably tried this, but have you rebooted (do you have access to the machine)? Chuck Rodgers At 09:37 AM

RE: Query of Query Oddness

2002-08-15 Thread Mark A. Kruger - CFG
Ray, If section is reserved, do you know what it is reserved for? Where is it used? -mk -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 8:52 AM To: CF-Talk Subject: RE: Query of Query Oddness Section is a reserved word. I checked the

WYSIWYG html editor applet?

2002-08-15 Thread Chris Edwards
Anyone know of a free and decent java applet that will do simple html editing for a client who wants to create simple html documents for email. this would go in place of a standard textarea. thanks. -- Chris Edwards Web Application Developer Outer Banks Internet, Inc. 252-441-6698 [EMAIL PROTECT

RE: Replacement for CFX_fMAKETREE

2002-08-15 Thread Robert Everland
So where you putting the new tag up so we may look at? Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 1:59 PM To: CF-Talk Subject: Re:

RE: Query of Query Oddness

2002-08-15 Thread Raymond Camden
To steal from the docs: ColdFusion has a list of reserved keywords, which are typically part of the SQL language and are not normally used for names of columns or tables. To escape a reserved keyword for a column name or table name, enclose it in brackets. Caution: Earlier versions of ColdFusi

RE: access db

2002-08-15 Thread Robertson-Ravo, Neil (REC)
Reboot Machine, you will problem fix, will it. -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 14:56 To: CF-Talk Subject: RE: access db Full access to the machine, I have. -Original Message- From: cftalk [mailto:[EMAIL PROTECTED]] Sen

RE: WYSIWYG html editor applet?

2002-08-15 Thread Robertson-Ravo, Neil (REC)
loadsa them.. SiteObjects (my fave!) : www.siteobjects.com Ektron Editor : www.ektron.com Active Edit : www.cfdev.com Neil -Original Message- From: Chris Edwards [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 15:08 To: CF-Talk Subject: WYSIWYG html editor applet? Anyone know

Re: access db

2002-08-15 Thread Jocelyn Isidro
Here is what my host, www.HostMySite.com, recommends to unlock an Access db. (I have not tried this). "FAQ: How to Overwrite an Existing Database I would like to upload an updated version of my access database. When I attempt to overwrite the existing database I am unable to. As a normal part o

Re: any javascripters

2002-08-15 Thread Jon Hall
What is the actual error though? Double click on the question mark. That would be very helpful. Thursday, August 15, 2002, 9:41:15 AM, you wrote: JM> code- JM> function writeNewData(){ JM> // assign long reference to shorter var name JM> var delay = 1400, blinks = 3; JM> v

Re: Joining tables across 2 DB2 databases

2002-08-15 Thread Jon Hall
CF doesn't have any problem joining multiple databases, it's more likely that the problem is with the ODBC driver. Could be a lot of things though. What is the error that CF throws? -- jon mailto:[EMAIL PROTECTED] Thursday, August 15, 2002, 9:29:51 AM, you wrote: BS> Thanks but the database n

RE: WYSIWYG html editor applet?

2002-08-15 Thread Benoit Hediard
Perhaps you should use the MSHTML capabilities of Internet Explorer : http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/editing/ mshtmleditor.asp http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnaredcom/h tml/dhtmledit.asp http://msdn.microsoft.com/archive/defau

RE: access db

2002-08-15 Thread Bryan F. Hogan
thank you, but have already done this. -Original Message- From: Jocelyn Isidro [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 10:12 AM To: CF-Talk Subject: Re: access db Here is what my host, www.HostMySite.com, recommends to unlock an Access db. (I have not tried this). "F

Re: WYSIWYG html editor applet?

2002-08-15 Thread Joel Firestone
Chris: I like soEditor Lite. Check it out here: http://www.siteobjects.com/pages/soeditoroverview.cfm You can download an encrypted free trial. HTH! Joel - Original Message - From: "Chris Edwards" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 15, 2002 1

RE: access db

2002-08-15 Thread Bryan F. Hogan
thanks, already tried that. I'm just going to eat the cost and make it SQL 2000. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 10:05 AM To: CF-Talk Subject: RE: access db Reboot Machine, you will problem fix, will it.

Re: WYSIWYG html editor applet?

2002-08-15 Thread Paul Hastings
any idea how i18n these are? > Perhaps you should use the MSHTML capabilities of Internet Explorer : __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.f

RE: WYSIWYG html editor applet?

2002-08-15 Thread Pete Freitag
The next version of ActivEdit will include a WYSIWYG HTML editor applet. It will be released very soon. It however is not free, I don't think you will find an applet that does this for free. _ Pete Freitag CTO, CFDEV.COM http://www.cfdev.com/ -Or

RE: access db

2002-08-15 Thread Janine Jakim
Did you run a repair and compact on the database. Is it the whole database or maybe one corrupt table? can you open the tables individually? I've seen lots of access databases where one table corrupts but it looks like the whole thing is whacked out. -Original Message- From: Bryan F. Ho

RE: WYSIWYG html editor applet?

2002-08-15 Thread James Johnson
Very cool. Thanks for the URL *** James Johnson SMB-Studios Innovative Online Learning for Spirit, Mind and Body www.smb-studios.com [EMAIL PROTECTED] -Original Message- From: Benoit Hediard [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2

Re: Scheduled Tasks On MX

2002-08-15 Thread Frank Mamone
Excellent. Although I don't understand why it works with a Unix "plug-in" I'll try it out. Thanks Dave. - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 14, 2002 9:53 PM Subject: RE: Scheduled Tasks On MX > > 1. Is

RE: access db

2002-08-15 Thread Bryan F. Hogan
Yes, can open tables but changes will not be reflected because I don't have exclusive access to it because of the ldb. -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 10:14 AM To: CF-Talk Subject: RE: access db Did you run a repair and co

RE: WYSIWYG html editor applet?

2002-08-15 Thread Bryan F. Hogan
Although CFDev's is great, I personally use soeditor, but I think there is one on the dreamweaver exchange built in JScript. It might work for you. It doesn't have all of the features that ActivEdit or soeditor does though. -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]]

RE: MS Exchange and CFMAIL

2002-08-15 Thread Christopher Olive
Actually, you can allow "Only the IPs below" on the relay tab in exchange, and enter the IP of the web server. i also usually use SMTP on IIS, however, if the web box is in a domain with the Exchange box, exchange likes to grab the mail instead of letting IIS handle it. it's strange, but i've no

RE: CF5: Query A Query migration trouble

2002-08-15 Thread douglas . kronenberger
Thanxs, that was it. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 9:57 AM To: CF-Talk Subject: RE: CF5: Query A Query migration trouble When doing a QofQ, you do not pass datasource="...". Remove that part from your cfquery tag. ===

Re: WYSIWYG html editor applet?

2002-08-15 Thread Jon Hall
If you are interested in rolling your own, here is a nice tutorial to supplement the MSDN articles. http://webfx.eae.net/dhtml/richedit/richedit.html These guys have one that works in Mozilla as well as IE, although it is planned to be integrated into the browser soon. http://www.xopus.org/index.

RE: WYSIWYG html editor applet?

2002-08-15 Thread Benoit Hediard
I suppose that the i18n capabilities of MSHTML are the same as the IE ones. I use it with french locale and it works well. If anyone wants, I can send you a complete editor based on MSHTML (it would be better if I give the link, but I can't remember where I've downloaded it .. I think it was on M

RE: any javascripters

2002-08-15 Thread John McCosker
>>What is the actual error though? Line: 1 Char: 1 Error: 'ms_id127' is undefined Code: 0 >>Do an alert(theTable), you should get [object]. Yep, I do, ms_id127 is the uniqueid given for the row, it can successfully insert cells to the row and output within theTable, I removed, " + newRow.id +

Re: IIS / CFServer Problem

2002-08-15 Thread Britta
I found the solution! I had to go in and manually configure the LAN Settings -(Network Settings-Change Settings-Advanced-Change Settings, which brings you to Services) and checking "web server" and inputting my specific IP. Then I changed 127.0.0.1 to my IP in the IIS Site Manager as well, and c

RE: WYSIWYG html editor applet?

2002-08-15 Thread Robertson-Ravo, Neil (REC)
can you download and use for yourself. ? -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 15:47 To: CF-Talk Subject: Re: WYSIWYG html editor applet? If you are interested in rolling your own, here is a nice tutorial to supplement the MSDN article

RE: access db

2002-08-15 Thread Janine Jakim
With everyone out of the database is there still a ldb hanging around in the file?? If so here's a microsoft article... http://support.microsoft.com/default.aspx?scid=kb;en-us;Q136128 -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 10:40

RE: access db

2002-08-15 Thread Bryan F. Hogan
Yes everyone is out, I don't see anything in the article that explains why it would still be locked. It also stated at top that it was an article for access 95/97. I have 2000, thanks for the article link does explain a little more than what I didn't know. -Original Message- From: Janine

A place for queries?

2002-08-15 Thread Mark W. Breneman
Is there a "best practice place" to put queries on the cfm page? i.e. above the tag?, below the tag? I have seen where verity will grab SQL code in its "summary" is does the placing of the query effect this? (I expect it does) Thanks Mark W. Breneman __

Compare site files to cookie date?

2002-08-15 Thread Les Mizzell
Here's a weird request I just got. Is this sort of thing possible? 1. Set a "last time visited" date-value cookie when somebody comes to your site. 2. The next time they visit, a script would parse all the html/cfm files in a directory, and come up with a list of those "newer" than the cookie,

Re: WYSIWYG html editor applet?

2002-08-15 Thread Massimo, Tiziana e Federica
> Anyone know of a free and decent java applet that will do simple html > editing for a client who wants to create simple html documents for email. > this would go in place of a standard textarea. I have a free custom tag available here: http://www.cfmentor.com/code/index.cfm?action=zipped&id=11

Re: WYSIWYG html editor applet?

2002-08-15 Thread Paul Hastings
> I suppose that the i18n capabilities of MSHTML are the same as the IE ones. > I use it with french locale and it works well. i've got several versions (boatloads on sourceforge) with varying success/quirks with thai and/or unicode. _

  1   2   3   >