Battle of the Gurus (Re: Blatant advertising (you have been warned))

2001-07-26 Thread stas
So now that the new WROX CF5 book is out as well, can somebody provide a review? That other books is a thick $60 monster... and while I could scrape some cash to buy both, I certainly don't have to read both. Which book has more advanced stuff and none of the beginner material? BTW, one thing I li

Re: Connecting to the SQL server remotely

2001-07-25 Thread stas
Never mind... I was trying to connect to a server set-up to do Windows authentification only. - Original Message - From: "stas" <[EMAIL PROTECTED]> Hello, I am trying to connect to my SQL box remotely - it works fine when the server is sitting on a private (192.168.x.x

Connecting to the SQL server remotely

2001-07-25 Thread stas
Hello, I am trying to connect to my SQL box remotely - it works fine when the server is sitting on a private (192.168.x.x) IP, but when I switch the box to be visible on the net, I get a message ("not associated with a trusted SQL connection...") when trying to register the server in the EM. Than

RE: PHP Nuke...CF alternative?

2001-07-24 Thread stas
Well... it can be done, but it is definitely a programming job to redo the theme.php. The code is ugly as hell. -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 7:35 PM To: CF-Talk Subject: RE: PHP Nuke...CF alternative? > Can users create thei

Re: PHP Nuke...CF alternative?

2001-07-24 Thread stas
It's great until you start modifying it. A complete mess under the hood - everything is so inline, and the way all HTML is "echoed" in the source code is a major eye strain. No white space though :D - Original Message - From: "Angél Stewart" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTE

RE: Macromedia Community Manager Introduction

2001-07-23 Thread stas
He he... well, I'm from the former USSR. I believe achieving ColdFusion was Korolev's next project... what was it... the 8th "pyateeletka"? Oh well, Allaire did it first! -Original Message- From: Matt Brown [mailto:[EMAIL PROTECTED]] My actual degree is in Soviet East European Studies,

Re: SQL Server Export

2001-07-23 Thread stas
This is what I resorted to doing. CF is extremely slow at this though... time to learn some PERL. - Original Message - From: "Philip Arnold - ASP" <[EMAIL PROTECTED]> > I have a table with 90,000 recs that I need to export into text files of > 1,000 records each (our Quark extension won

OT:SQL Server Export

2001-07-23 Thread stas
Hello, I have a table with 90,000 recs that I need to export into text files of 1,000 records each (our Quark extension won't take more records). Is there a way to automate this procedure as opposed to me editing and executing a DTS 90 times? Thanks!

Re: SQL color-highlighting

2001-07-18 Thread stas
That only works if you open an *.sql file. What I'd like is to have SQL reserved words color-coded between tags in my *.cfm files. - Original Message - From: "Mike Connolly" <[EMAIL PROTECTED]> IN CF Studio... goto Options Menu, Settings, Editor, then select Colour Coding. ~~

SQL color-highlighting

2001-07-18 Thread stas
Is there a way to hack the Studio to color-code both CFML and SQL? Thanks. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffu

Re: IIS hack (was: CF Hack)

2001-07-17 Thread stas
Dave, do you know of a recipe to harden IIS on NT4/W2K? - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> Perhaps, but there are things one can do something about, and things that one can't do anything about. If you're configuring a server, and you want it to be secure, you ca

RE: view source tag

2001-07-12 Thread stas
Cold Fusion install is a HUGE security hole. I would suggest that you put any code you want to view like that in a database and not use CFFILE to read the code from a disk. A bad guy could pretty easily pull your registry from your windows server (if that is your OS). Russel > -----Original

view source tag

2001-07-12 Thread stas
Hello all, I would like to make an on-demand view-source tag... basically something to include in a footer for debugging - a link that will reprocess the page with all the parameters that were passed to it and output HTML (not interpreted) to the window. The reason I want it is that a regular vie

Debug output

2001-07-10 Thread stas
Is there a way to capture CFAS's debug output and format it? My problem is that if I develop a site that has a dark background, I can't see any debug information because the text is dark too. I am mainly interested in looking at SQL statements, I know you can see most other information (passed var

Temporarily disabling DB constraints

2001-07-10 Thread stas
Hello, I'm using MS SQL2000 and need to replicate data from one box to another. The process is failing because of certain constraints. Is there a non-hack workaround to this issue? Thanks. ~~ Structure your ColdFusion code with Fusebox. Get the o

RE: Ordering query results

2001-06-30 Thread stas
Not sure what you mean by dynamically, but here is a cool IE only tag that I _think_ does what you need: http://www.activefeedback.com/af/products/activerecordset/userhelp/ActiveRec ordSetTest.cfm -Original Message- From: Carlo van Wyk [mailto:[EMAIL PROTECTED]] I have a query from wic

RE: Application Variables

2001-06-29 Thread stas
There are several benefits to Application metrics, unfortunately I don't know about any metrics. Maybe some of the gurus here can help you in that department. Application vars are shared. So as soon as you have more than one user, you shoud start reaping some performance benefits. You can set an

Re: Lists

2001-06-28 Thread stas
You could do this in a loop: SELECT myValueOne FROM tblOne SELECT myValueTwo FROM tblTwo WHERE myValueTwo = #i# - Original Message - From: "David Clay" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL

Re: Can't restart IIS server

2001-06-26 Thread stas
Why don't you try to connect to the loopback address ( http://127.0.0.1 or http://localhost ) and see if anything comes up. - Original Message - From: "Dave Hannum" <[EMAIL PROTECTED]> Just the one site on the server. Dave - Original Message - From: "Don Vawter" <[EMAIL PROTEC

Re: Problem dealing with hashes

2001-06-26 Thread stas
Hi, try this: VALUE="#PremAddress#_#ThisIter#" - Original Message - From: <[EMAIL PROTECTED]> hi, hi. i'm modifying a form i've built, to allow field names to be dynamically altered during each iteration of a loop. as it was originally, one of its input clauses might look like this:

Fusebox list

2001-06-25 Thread stas
Could anybody pleas post the information on where the Fusebox list moved. House of Fusion still lists it as [EMAIL PROTECTED], but it's been dead for a while. Thank you. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http

Re: Dropping Null fields from a Query

2001-06-25 Thread stas
You can ignore the rows with NULL or blank values from your query recordset. . WHERE Color1 IS NOT NULL AND Color1 <> '' If you need the records with NULL or blank values for some other purposes on the same page, you could use the SQL function ISNULL to substitues NULLs with other values, li

Re: help using sql sum function

2001-06-25 Thread stas
You need to alias the result of the aggregate function. SELECT SUM(racedaylunch) as LunchSum FROM thelist #LunchSum# - Original Message - From: "Jeff Fongemie" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, June 25, 2001 12:09 PM Subject: help using

Re: Session problem with IE

2001-06-15 Thread stas
Thank you. After much experimentation yesterday, I found out the hard way what you describe below. Although I'm wondering if it was doing that because I was also doing on the same page. No problems under Netscape though, but same symptoms with Opera 5. - Original Message - From: "Sandy C

Re: Barcode generation

2001-06-15 Thread stas
Thank you - Original Message - From: "Howarth, Craig (IBK-NY)" <[EMAIL PROTECTED]> Here is a list of resources for you: http://www.adams1.com/pub/russadam/webapps.html You're sure to find something here that will help you out. Craig

Barcode generation

2001-06-15 Thread stas
Hello, Could anyone recommend a tool to generate PostNet barcodes? There is a tag in the gallery that does it, but it creates a series of gifs, not one image, and that's what I need. Thanks for any pointers. ~~ Structure your ColdFusion code w

Session problem with IE

2001-06-14 Thread stas
Hello, I have a strange problem with session variables being auto-incremented in IE 5.5. My login scheme uses session vars, and I can't get it working because of this. Basically, under IE with every page hit within the same session CFID and CFTOKEN get incremented. No problem with Netscape 4.76.

How much code into CFLOCK?

2001-06-12 Thread stas
If I need to set about 6 session vats with some conditional logic around them, is it okay to do this all in the same CFLOCK or use a separate one for each? Thanks ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www

Re: Suggestion for Print This Page...

2001-06-12 Thread stas
You can use the cf_bodycontent tag from fusebox.org. It lets you stuff any page content (that you surrounded with block) into a named variable. Then I guess you could just cfoutput it in any page. - Original Message - From: "Brandon Wood" <> Suggestions, Please: I am having a little

Re: Easy question I think:

2001-06-12 Thread stas
SQL Server supports a modulo operator ( % ), not sure about other DBMSs. You could get all even numbers like this: SELECT * FROM tblValues WHERE aValue % 2 = 0 To get the odd ones, just replace the equal sign with <>. - Original Message - From: <[EMAIL PROTECTED]> Can anyone give me

RE: UI question

2001-06-06 Thread stas
Hi, It's a simple JavaScript task (the code below works, I just tested it): test function checkSelection() { //alert(document.job.position.options[document.job.position.selectedIndex].v alue); if (document.job.position.options[document.job.position.selectedIndex].value == "other")

Re: Request vs application scope

2001-05-29 Thread stas
Isn't it a bit illogical to use request scope for storing constants if they can be overwritten? I understand that there is no sense in doing as the variable will be destroyed no matter what, so you have to always re-initialize it. Does that carry more or less penalty than checking for existence o

Re: whitespace

2001-05-29 Thread stas
Nate Weiss's CF_StripWhiteSpace can compact all of the code on one line, more dramatically than Bjork's tag... or it can left-adjust everything. With proper using of cfinclude you could eliminate all white space, but I've noticed it slows down pages quite a bit. http://www.nateweiss.com/taggaller

Re: SLightly OT - a time formula

2001-05-22 Thread stas
#hours# hours and #minutes# minutes. - Original Message - From: "Will Swain" Hi all, This is slightly OT, but refers to a cf project so I guess it is relevant in a way. Does anyone know a formula for calculating time. I have numbers of minutes, and need to calculate the time in

Re: "Harpoon" Release is Final & Available

2001-05-14 Thread stas
I've trying to configure Harpoon for the last 2 hours... I just can't figure out the settings for paths... even tried using absolute mappings. Still getting 404s after a page half-loads. Help!!! Thanks - Original Message - From: "Steve Drucker" <[EMAIL PROTECTED]> It's gone...the Harp

Re: Access database question: how to structure a link between tw o tables

2001-05-14 Thread stas
Also, don't confuse a "safe type" - such as a model designation, with a safe "serial number." You would use a safe's serial number as a primary key in the safe table, as well as a foreign key in the intersection table Dave described below. To figure out what type of safe it is, you would need anot

Re: Connecting MySQL on UNIX box to CF Server on Wintel box

2001-05-08 Thread stas
Yes. The CF server's hostname (as in IP, or machine name), has to be "attached" to the username in MySQL with which you are trying to connect from CF server. If you list the users table in MySQL you will see that by default "root" is set up to connect only from "localhost." MySQL documentation des

Re: Finding the last item in a loop

2001-05-03 Thread stas
Yea, #EventSponserName#, - Original Message - From: "Chris Martin" <[EMAIL PROTECTED]> IS it possible to find the last item in a loop? Right now I have this: #EventSponserName#, Is it possible to check if the #EventSponsorName# is the last item in the record set, and then no

Re: question using IIf

2001-05-01 Thread stas
Latest CFDJ states that iif takes 4 times as long to execute as . The provide a snippet of code to test. - Original Message - From: "David Baskin" <[EMAIL PROTECTED]> I've been told that we should never use IIF and i just took that on blind faith. I've seen everyone using it for their c

Re: javascript and document questions

2001-04-30 Thread stas
Use the onClick handler to submit the form qryBoxUpdate.cfm - onclick = "return form.submit();" or write a function that will do som processing and then submits. Your second questions, what types of documents are you talking about? - Original Message - From: "Richard Kern" <[EMAIL PROTEC

Re: NumberFormat woes

2001-04-30 Thread stas
This gives you a string though, so do any calculations before output. - Original Message - From: "Evan Lavidor" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 30, 2001 11:36 AM Subject: NumberFormat woes I feel a little silly about not being able to figure t

Re: Arrays and Structures storing query values

2001-04-30 Thread stas
It looks like you have to do StructNew within the loop for every iteration. In your code you are only doing that once, for the first array element. - Original Message - From: "Darren Adams" <[EMAIL PROTECTED]> select * from pressreleasetable ORDER by pressreleasedate DESC

Re: cf ezedit and word processing solutions

2001-04-29 Thread stas
Hi, I just started playing with Ezedit myself. Basically, it just provides you with means to send HTML code to whatever destination you need, so all you need to do is embed it in within a form. When the form is submitted, it is your responsibility to handle the output. If you want to store it in

Modifying CF Studio behavior

2001-04-24 Thread stas
There are some things that annoy me in Studio, for example I expect that triple-click a line should select a line, or that double-clicking a word surrounded by single-quotes will have the same effect as double-clicking a word surrounded by double-quotes... Is there a way to modify these things, wi

Re: CSS

2001-04-17 Thread stas
Go here: http://www.dansteinman.com/dynduo/ Look under Widgets on the left bottom. - Original Message - From: "Neil H." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 17, 2001 8:54 AM Subject: CSS I want to make "flat" select boxes, radio buttons, and check

cftry/cfcatch wrapper?

2001-03-28 Thread stas
Hello, Has anybody written a custom tag that makes using cftry/cfcatch less cumbersome while still providing good error reporting? Thanks ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com

OT: SQL 2000 help anybody?

2001-03-27 Thread stas
be causing such behavior and how can the problem can be diagnosed. Thanks for any help! Stas Newdel ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-arch

RE: CF Review

2001-03-21 Thread stas
http://www.hotscripts.com - not just CF, other scripting languages too. -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 5:03 AM To: CF-Talk Subject: CF Review Got a question, does anyone know of a web site that offers a review of popula

RE: CF Generator applications

2001-03-09 Thread stas
This one is the best I had seen: http://www.codecharge.com It generates code in ASP, ColdFusion, JSP, PHP, Perl. I can't believe nobody had posted it yet. stas -Original Message- From: Ing. Luis J. Ramirez Flores [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 2:30

RE: Multiple submit buttons on a form

2001-02-20 Thread stas
It's quite easy if you use images as submit buttons because you can do a switch based on the name passed with the form variable. -Original Message- From: Les Irvin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 7:15 PM To: CF-Talk Subject: Multiple submit buttons on a form

list of page queries

2001-02-08 Thread stas
Hello, does CF create a list of queries that are run on a page? I am using for debugging like this: I would like not to have to add queries to #scopelist# explicitly if I can avoid it. Thanks! ~~ Structure your ColdFusion code with F

Re: HTML/OS

2001-02-07 Thread stas
I don't know any developers using it... I remember running into that product before. The promis miracle on their site, but there is no demo, you have to buy it, and return it if you don't like it. - Original Message - From: "sebastian palmigiani" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL

Re: Trapping Errors from CFLocation

2001-02-06 Thread stas
Why don't you check for the URL existence first - maybe with CFHTTP, set a variable, and do a CFTHROW if the var doesn't contain what you expect? - Original Message - From: "Duane Boudreau" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, February 06, 2001 10:08 AM Sub

Re: Got PDFlib?

2001-02-05 Thread stas
If you have $35K lying around and know a bit of FrameMaker, there is a great product called DLFormatter from http://www.datalogics.com - Original Message - From: "Daye, Marianne" <[EMAIL PROTECTED]> > Originally we were using Crystal Reports and CFX_CRWTOPDF which no longer > works, and

Dell Power.App and CF

2001-02-01 Thread stas
Hello, Is anybody running CF on a Dell Power.App 110/120 servers under Win2K? If so, I'd like to hear comments, as we are interested in purchasing this box. Thanks! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://

Re: SQL Question

2001-01-31 Thread stas
Also this: where x IN (#valuelist(anotherquery.id)#) is simpler than this: where x = #anotherquery.id# OR - Original Message - From: "Christopher Olive, CIO"

list delay (again)

2001-01-24 Thread stas
If I don't understand it correctly, delays may be caused by mail routers and such. But if I am using an SMPT server running on my box (the one that comes with Win2K/IIS5), I shouldn't be seeing a 4hour delay for my own posts, right? ~~ Struct

Re: Triggering the Find Dialog

2001-01-24 Thread stas
Duane, this might help: http://www.dynamicdrive.com/dynamicindex11/findpage.htm - Original Message - From: "Duane Boudreau" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, January 23, 2001 11:33 PM Subject: Triggering the Find Dialog > Does anyone know if there is

Re: CF Site: Deerfield.com

2001-01-24 Thread stas
Also: http://www.palmgear.com/ http://www.logitech.com - Original Message - From: "Martin Sutton" <[EMAIL PROTECTED]> > I just noticed that deerfield use CF. This is quite an important site imho. ~~ Structure your ColdFusion code w

Re: Syntax error (missing operator) or blank screen

2001-01-04 Thread stas
The column name has to be on the left side of that equal joint. http://www.ofah.org/" & url.url> SELECT DocumentLocation FROM DocumentSearch WHERE AssociatedHTMDoc = 'curr_url' - Original Message - From: "Guy J. McDowell" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTE

HostCentric feedback

2001-01-03 Thread stas
Hello, I noticed that VirtualScape is now under the umbrella of HostCentric. Both sites offer same rates, but HostCentric's site is more informative. Are there any reasons to choose HostCentric over VirtualScape (of which all heard good things). This is for a dedicated server in NYC. Thanks

Re: One step method to check then increment a value in db?

2000-12-28 Thread stas
Okay, thanks for the tip! - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> > > Why do you to check first? Just do an update: > > > > > > > > UPDATE pagecount > > SETpagecount = pagecount + 1 > > where pageid = #thispage# > > > > > >

Re: One step method to check then increment a value in db?

2000-12-28 Thread stas
Why do you to check first? Just do an update: UPDATE pagecount SETpagecount = pagecount + 1 where pageid = #thispage# - Original Message - From: "Paul Sinclair" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 28, 2000

OT: JS/CSS question

2000-12-28 Thread stas
Hello, How can I swap a style on an a mousover even? I know I can do this: but I'd like to just change to a different style class definition instead of explicitaly listing ever property. Thanks! ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant

Re: it wont loop back!....

2000-12-27 Thread stas
This should help: - Original Message - From: "Jay Patton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, December 27, 2000 11:48 AM Subject: it wont loop back! > here is my problem, when the code below gets ran it runs fine all accept when it gets to

iiframework

2000-12-26 Thread stas
Hello, Has anybody used the framework, if so, I'd like to hearn an unbiased review. Thanks! ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD / 24/7/365 Tech Support

interface widgets

2000-12-19 Thread stas
Hello, I am creating an intranet, in a pretty controlled environment. I decided to use DHTML (under IE 5) for interface presentation. I'm trying to create a more or less Windows looking interface, so tags like CF_ActiveTable are quite helpful. I would appreciate any pointers to similar DHTML w

Re: Another debate

2000-12-13 Thread stas
That kind of attitude is completely lame. How is he going to account for the cost of learning PHP? I would take this opportunity and learn PHP while getting paid for it, and see how the new boss works out. The e-mail doesn't make sense, what does "...some other strengths in our department for th

Re: division

2000-12-13 Thread stas
Try this: "/" strips the decimal part stas - Original Message - From: "Rick Lamb" <[EMAIL PROTECTED]> > This was suppose to be easy... > > I'm trying to divide a recordcount by 100 and then round up. Currently my > recordcount is 162 and

Re: Unlimited Line Item Subform functionality in a

2000-12-13 Thread stas
Rick, I think he is looking for an interface widget. - Original Message - From: "Rick Lamb" <[EMAIL PROTECTED]> > Bob, > > Sounds to me like your talking about an everyday shopping cart. I would use > a associative array (structure) to store all the items names and values for > each ite

Re: Big companies using CF

2000-12-05 Thread stas
http://sunglasshut.com - Original Message - From: "Nick Betts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 05, 2000 8:48 AM Subject: RE: Big companies using CF > www.footlocker.com use it for their huge site > ~

advanced coldfusion tutorials

2000-11-27 Thread stas
Hello, I am looking for examples that illustrate the use of COM objects, Java servlets/applets, and XML. Thanks for any links! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Arch

RE: Anyplace to pick up outdated browser versions for testing

2000-11-22 Thread Stas Newdel
Or you could use VMware to create a virtual PC on your box. It's very cool. -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] > >I need to get some older versions of MSIE and Netscape in order to test out >style sheets that will be dynamically assigned based on browser v

Modeling tools

2000-11-20 Thread stas
Hello, I was wondering if anybody here using modeling tools would solicit an opinion. I'm trying to learn UML, but the tools I found (Rational, GD Pro) seem to be cost-prohibitive. Does anybody know if a less expensive tool that may have support for WAE? Thanks much. ~~~

RE: Speeding up a multi table query

2000-11-17 Thread Stas Newdel
Don't know about whether this is going to be faster, as I can't test your database: select vhs.*, p.price, s.studio, s.ID as sID, s.studioID, pr.videoID from vhs,pricing p,studios s, performersRel pr where p.priceID = vhs.price and s.ID = vhs.studio and vhs.ID = pr.videoID and pr.performerID = 1

2 instances of Studio

2000-11-15 Thread stas
Hello, Does anybody know how I can I have two CF Studio Windows open at the same time? I'd love to take advantage of my duel monitor setup. Thanks! Archives: http://www.mail-archive.com/cf-talk@house

Re: form generator?

2000-11-13 Thread stas
o www.commerceblocks.com > > Arden Weiss > 410-757-3487 > > -Original Message- > From: stas [SMTP:[EMAIL PROTECTED]] > Sent: Monday, November 13, 2000 2:24 PM > To: CF-Talk > Subject: form generator? > > Hello, > > I remember a few months ago there was

form generator?

2000-11-13 Thread stas
Hello, I remember a few months ago there was a product announcment about a form generator for CF. Does anybody recall that information? Thanks much. Archives: http://www.mail-archive.com/cf-talk@ho

Re: re-configuring CF server for a different web server

2000-11-10 Thread stas
b server > Reinstall CF Server > > > -Original Message- > > From: stas [mailto:[EMAIL PROTECTED]] > > Hello, > > > > Could anybody please point to an articles that explains how to = > > re-configure ColdFusion to use a web-server other the one used = &

Re: Truly bizarre situation.

2000-11-10 Thread stas
This is a shot in the dark, but see what you have for Numbers in the Regional Settings conrol panel, under the Numbers tab. There is an option there - "Display leading zeros". - Original Message - From: "Sandra Clark" <[EMAIL PROTECTED]> > Using Number 0: > 0 Places - . > 1 Place - .0 > 2

re-configuring CF server for a different web server

2000-11-10 Thread stas
This is a multi-part message in MIME format. --=_NextPart_000_002A_01C04AA2.61C59530 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, Could anybody please point to an articles that explains how to = re-configure ColdFusion to use a we

Quark integration

2000-11-09 Thread stas
Hello, Let's say that I have a Quark file that I'd like to populate with information based on user choices and create an on-line proof for them, as well as a high-quality version that can be sent to a printer. We are thinking of using on the fly PDF to do the both low-rez proof and the final hi-r

intranet apps

2000-11-09 Thread stas
Hello, Does anybody know of a good un-encrypted intranet app (employee dir, time clock, news, etc)? I couldn't find anything worth downloading in the gallery. Thanks Archives: http://www.mail-archiv

Re: Capitalize First Letter of Each Word

2000-10-26 Thread Stas Newdel
There's a very powerful custom tag in the gallery, that will capitalize any string and is very customizable. I think the author is Nat Weisse. I used it to properly capitalize news headlines. - Original Message - From: "John McKown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Se

RE: Authors wanted

2000-10-19 Thread stas
Would that be "Business Intelligence with ColdFusion, 2nd Edition"? The current edition is quite superficial. Maybe the guys over at http://onproject.com can help you out, that'd be really cool. -Original Message- From: Jody Kennen [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 19, 2

RE: Dynamic Form value

2000-10-17 Thread stas
I do it this way, easier to read ( I am assuming you're doing this to "remember" form field values): -Original Message- From: David [mailto:[EMAIL PROTECTED]] Sent: Monday, October 16, 2000 11:33 PM To: CF-Talk Subject: Dynamic Form value Hi all, I have tried the following and it

RE: RDS stopped working

2000-10-04 Thread stas
Try stopping and re-starting the RDS service in the Services control panel. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 04, 2000 6:40 AM To: CF-Talk Subject: RDS stopped working I must be having a brain dead moment... Our Intranet se

RE: Using a TARGET in a URL

2000-09-25 Thread stas
Do you mean target or anchor? But in either case, you have to do some post-processing based on your URL parameters in the target action file. -Original Message- From: Mary Fowler [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 7:57 PM To: CF-Talk Cc: Mary Fowler Subject: Using

ColdFusion for Linux on Sparc?

2000-09-18 Thread Stas Newdel
Does anybody know if ColdFusion Pro for Linux will run on Sun hardware running Linux? Thanks! -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cf

RE: MS SQL 7 Varchar

2000-09-17 Thread stas
I believe this happens when you upsize from Access and the original Access field is Text (255). -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 15, 2000 10:19 AM To: [EMAIL PROTECTED] Subject: MS SQL 7 Varchar I've got a MS SQL 7 table with some fi

RE: dynamic variable label creation

2000-09-14 Thread Stas Newdel
I got it to work like this: -Original Message- From: Charles A. Lee [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 4:42 PM To: [EMAIL PROTECTED] Subject: Re: dynamic variable label creation At 10:55

dynamic variable label creation

2000-09-14 Thread Stas Newdel
Hello, I am creating a form on the fly, and on the action page I am trying to create session variables like this: so if three form vars were passed: priority_rush, priority_standard, priority_economy, I want to create three session variables

RE: Hotel Booking Engine up

2000-09-11 Thread stas
Hi Bob, I am not in the market for this type of software, but I agree with your sentiment - as far as "don't want it, don't buy it." I love hearing about new CF-enabled solutions out there. Is there a list like cf-announcements, or something along those lines. I find Allaire's tag gallery quite f

MS SQL Eval

2000-09-08 Thread Stas Newdel
Hello, Does anybody have a link to the SQL 7 Evaluation? The link on MS doesn't work :( Thanks! -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/inde

RE: logon problems

2000-09-07 Thread Stas Newdel
Well, you don't have to worry about emailverify, as I don't need that everywhere. It just checks if an email addresses is properly formatted, and it is not part of FB. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 07, 2000 1:02 PM To: [EMAIL P

OT: "lower" SQL function

2000-09-07 Thread Stas Newdel
Hello, Apologies for an OT question, but what are the equivalents of the Lower function in Access, MS SQL, Sybase? I know it's LOWER in Oracle, but I can't get that to work in Access. Thank you -- Archives: http://www.

Client storage (RE: ColdFusion 4.0.1/SPARC/Solaris help sought - registry corruption and cf scheduler problems)

2000-09-06 Thread stas
So why not store the client vars in a datasource? -Original Message- From: Ed Toon [mailto:[EMAIL PROTECTED]] What we ended up doing was regularly pulling one machine out, replacing the registry, rebooting... crappy? Yes! But it at least keeps up the appearance of functioning servers. G

Problem with CF location

2000-09-05 Thread Stas Newdel
Hello, I am trying to do this from a child fuse app, in its index.cfm As you can see, in the first "case" clause, I am breaking out of the current sub app and am trying to redirect to another app through the parent index.cf

StructClear

2000-08-31 Thread Stas Newdel
Does StructClear reset keys in a structure to be blank, or does it remove the keys? Also, what's a function to get rid of a structure altogether? Thank you -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.

can you store a structure in a client var?

2000-08-31 Thread Stas Newdel
I remember that you can't store a structure in either a session or a client var, could anybody please refresh my memory? Thank you -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

<    1   2   3   4   >