RE: Setting Margins in a .DOC file

2000-06-11 Thread Dave Watts
> I am trying to format a document for printing. I am > especially concerned with controlling the margins. I > thought the easiest way to get control of printing in > general would be to open it in MS Word using CFCONTENT: > > > > > The trouble is that this opens the document with the default >

Re: Newsgroups?

2000-06-11 Thread Howie Hamlin
There is one already. news.fuseware.com Regards, Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com Please vote for iMS in the Most Innovative category here: *** http://www.sys-con.

RE: CF and IIS on Separate Boxes

2000-06-11 Thread Dave Watts
> We wish to install coldfusion and iis server on separate > boxes. Can somebody point in the right direction as to how > to install it? You can do this using CFDIST.EXE; there are instructions for setting this up in the CF documentation under "Administering the ColdFusion Server". However, I'd

RE: ISAPI

2000-06-11 Thread Dave Watts
> Does Cold Fusion run as an ISAPI? Or just as a stand alone web > server (CFServer.EXE)? If it runs as an ISAPI... shweee, that > would be nice... :-) Yes, it does under IIS, more or less. CFSERVER.EXE is a separate service, which actually does all the work. With IIS, an ISAPI stub (ISCF.D

IIS and CFUSION on separate boxes

2000-06-11 Thread Bob Smith
Hi, We wish to install coldfusion and iis server on separate boxes. Can somebody point in the right direction as to how to install it? Thanks, Bob Smith Thanks, Bob Get free email and a permanent address at http://www.amexmai

Re: How to make 100.00 as 100

2000-06-11 Thread David Hannum
Several way. One is #ListFirst("#FORM.Number#", ".")# It treats the number as a period delimited list and just takes what comes before the period. Dave - Original Message - From: aslam bajaria <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 08, 2000 12:31 PM Subject:

RE: Variable help needed!!

2000-06-11 Thread Dave Watts
> I keep getting a 'Just in time compilation' error when I run > the code below. It doesn't like the way I am referring to my > array in terms of the 'LoopCount' Variable. I'm just trying > to make that variable dynamic. > > I can't figure out how to make this work. I have the loopcount = 5>

RE: Exploded Benchmarking on Solaris

2000-06-11 Thread Dave Watts
> Could someone give me the appropriate registry settings to > get the exploded benchmarking stats with debugging on a Solaris > box? I'm talking about the millisecond info that is listed breaking > down template execution time. I have the settings for NT already. To the best of my knowledge, thi

RE: Allaire Spectra E-Business Construction Kit

2000-06-11 Thread Dave Watts
I've installed Spectra on Windows 2000, although I haven't done much with it yet, so I'll take a stab at your questions. > I was browsing through this at a bookstore last night and had > a question about the installation process. It said that you can > install Spectra under NT, Windows 2000, or S

Re: PRINTING with Page Breaks

2000-06-11 Thread Phil Cruz
I've used the following code to generate page breaks in html: -Phil -- Date: Fri, 9 Jun 2000 09:57:09 -0500 From: "sam komolafe" To: Subject: PRINTING with Page Breaks Message-ID: <007301bfd222$fc6f5920$[EMAIL PROTECTED]> Hi guys, Is there any way in ColdF

RE: Question...

2000-06-11 Thread Duane Boudreau
Use the left function. ex: Left(storystring, 50) Duane Boudreau CFExperts.Com > Ok can this be done. Say I have small database of news stories and > on the front page of the website we want to include say the first > sentence or 2 of the story which then links to the full story. How > do

Re: User email addresses as user login names any concerns ????

2000-06-11 Thread AOusterhou
Claude: I think the only concern is the level of security your application requires. If the user name password is really only for personalization or other low security type application, this will work fine and I've seen a number of web sites take this route. However, if you are righting a f

Re: Studio 4.5 Install

2000-06-11 Thread Al Musella, DPM
I had that happen on a laptop once also. It was a bad video driver. Go to the website of your computer's manufacturer, and check for the latest video driver. If that doesn't fix it, in your display setting, turn off hardware acceleration. Al a1webs.com >Greetings! > >I have a strange thing h

Making a java applet a link

2000-06-11 Thread Robert Flesher
I'm having a problem figuring out how to make a java applet I have a link as well. The applet is for a ticker and I need the whole ticker to link to another site. I tried putting the entire applet tag in between the and tags, but didn't work. Can anyone help me out? Rob ___

Re: [Re: Password Verification]

2000-06-11 Thread double-down
something like onsubmit() if document.form.pass1.value != document.form.pass2.value alert (passwds dont match) "Jeff" <[EMAIL PROTECTED]> wrote: steve, :~~ : From: Steve Pierce <[EMAIL PROTECTED]> : : Double password login is not any more secure : than sin

RE: Scheduling Pages and CFSCHEDULE

2000-06-11 Thread Adrian Cesana
You can use NT's AT to schedule jobs as well, Ive been using this method for quite some time and works well for me. To execute CFML from a CMD or BAT file use this little piece of code. SET CF_TEMPLATE_PATH=E:\path_to_yourfile\your_template_name.cfm d:\path_to_your_cfml_program\cfml.exe There i

RE: CF vs ASP

2000-06-11 Thread Dave Watts
> Well another thing I found out this weekend reading through > my ASP 3.0 book is two things I think are a little slow in CF. > First is that you can program functions in ASP ie > > sub Calculate() > code here > end sub > > I dont know what the CF response to this is, perhaps the > custom templ

RE: Help with single quotes

2000-06-11 Thread Dave Watts
> I have a list of cities in a form with multiple enabled. > Selected list is submitted (as form.by_city) to a template > with the following query: > > > SELECT ID, sale_price,Address, City > FROM properties > WHERE City IN ('#PreserveSingleQuotes(form.by_city)#') > > > If only one city is se

RE: CFHTTP doesn't know Client/Session vars exist. Please help.

2000-06-11 Thread Dave Watts
> I have an app. where when a user logs in, it goes out and fetches > user preferences, news, weather etc. Calls to news/weather are > CFHTTP, and the intention is to send the location_id of the user > to the weather module and it sends the weather based on that id. > When the user logs in, the ap

RE: CFCONTENT... set the filename?

2000-06-11 Thread Dave Watts
> I need to push a file to the user via file download. However, > I would like to be able to set the filename so that when the > user goes to save the file, it's not "processingFile.cfm". Try this: http://www.figleaf.com/demo/mimetest/ Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com

Re: Replacing list values from a query?

2000-06-11 Thread Dick Applebaum
Before you go any further, it would be wise to normalize your db design each field in the db should be atomic - it should contain a single value (not a list of values)... Assuming your table is a realtor table, you need another table to associate the list of realtors with the list of prope

what happened to this list??

2000-06-11 Thread Joseph Eugene
Hello all, Is there something wrong with this list? or is this me?? Thanks Joe -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body

Re: CFUG in CT

2000-06-11 Thread johnpatterson
Hi there, There is no other group in Connecticut. I did speak with Allaire and they said there was a possibility of one beginning in Hartford area. I haven't followed up on the query. John On Sun, 04 June 2000, "Jay Sudowski" wrote: > > This is a multi-part message in MIME format. > > --

Re: OT: ASP!

2000-06-11 Thread Heather Haindel
It'll puke if they put in an invalid user name and password. Check for rs.eof before you display their name and color. --- David Shadovitz <[EMAIL PROTECTED]> wrote: > Can any of you ASP programmers tell me whether the > following code will > work? > > It is the action page of a login form. It s

RE: Studio 4.5 Install

2000-06-11 Thread Gregory Gooden (Annex)
I used to get this all the time (with OTHER apps too), until I upgraded my video drivers. :) Gregory --- annex.com, Inc. - http://www.annex.com/ --- - If you EcoBuild it, they will come. - - http://www.ecobuild

Re: Newsgroups?

2000-06-11 Thread Chris Giminez
Please, someone start a CF newsgroup. (anyone know how that's done?) It would much easier to sift through messages than this list. I love the info I can get on this list, but the reliability lately is terrible. I posted a message a few days ago never saw it. Who knows if this will make it o

RE: OT: Remote SQL Server access

2000-06-11 Thread Robert M. Saxon, Jr.
Thanks to all who responded. The TCP/IP configuration in the Client Network utility did the trick. ___ Robert M. Saxon, Jr. (Rob), Senior Web Developer Mercer University Department of Web Management -Original Message- From: Robert M. Saxon, Jr. [m

Variable help needed!!

2000-06-11 Thread S R
Hi everyone, I keep getting a 'Just in time compilation' error when I run the code below. It doesn't like the way I am referring to my array in terms of the 'LoopCount' Variable. I'm just trying to make that variable dynamic. I can't figure out how to make this work. I have the there just fo

How to make 100.00 as 100

2000-06-11 Thread aslam bajaria
If the user inputs 100.00 as the amount he wants to pay, How do I make it 100 even. In other words, how do I ignore anything after the '.' For example: 100.00 should be 100 100.93 should be 100 Appreciate. A.B. __ Do You Yahoo!? Yahoo! Photos -- n

Access, Memo fields, and DISTINCT

2000-06-11 Thread Steve Bernard
Is it considered normal for Access 2000 to only return the first 255 characters of a memo field when the DISTINCT argument is used? Here's what I'm seeing ... SELECT DISTINCT a.RecID, a.RecInfo, a.PriCode FROM Master a, Info b WHERE a.MasterID = #FORM.Id# AND a.IdxNum = b.IdxNum ORDER BY

Question...

2000-06-11 Thread Kelly Matthews
Ok can this be done. Say I have small database of news stories and on the front page of the website we want to include say the first sentence or 2 of the story which then links to the full story. How do I, for the front page, limit it to only pull and display the first so many characters of t

RE: Email authentication

2000-06-11 Thread Steve Bernard
It sounds like you pretty much know what to do already :) In pseudo code ... 1. Client submits reg. form 2. Input is validated 3. Information is stored in a temp db along with a unique ID string 4. Email is sent to client provided email address with a link to your activation page that includes th

Scheduling Pages and CFSCHEDULE

2000-06-11 Thread Nick Slay
Hi, I wonder if anyone might be able to give me some pointers. I have a site in development, running under CF 4.5.1, and using SQL Server 7 as the backend database. I'd like to be able to schedule events, mainly the sending of email messages, to happen at specific times. I thought that CFS

Re: CF Training?

2000-06-11 Thread Michael Channing Wilson
Hi, Anyone know where I can take these classes in Charlotte, NC? Thanks, Mike Wilson Leo Schuman wrote: > > Hi all, > > In the interest of full disclosure, I'll state up front that I'm an > Allaire Certified Instructor, and am V.P. of Technical Services for > DevTech, an Allaire Authorized T

News: CFUN-2K registrations jump 73% in one day to 277

2000-06-11 Thread Michael Smith
--565DF6AD3AE0452A8163175D Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi CFUN-2k registrations jumped 73% yesterday to 277 people registered thanks to help from many friends in the CFUG community. Thanks!! The event is 36% full at seven weeks out. So

Re: [Re: [Re: [Re: personal oracle 8i]]]

2000-06-11 Thread Irwan Sampurna
OK, I am using Windows 98 and Personal Oracle 8i. I already have the NT machine with CF and Oracle 8i enterprise edition. I want to migrate the configuration from NT machine to the windows 98 machine, but the CF server can not connect to the personal oracle 8i. Do you use personal oracle or enterp

OT: Drag and Drop

2000-06-11 Thread Helge Hetland
Is it possible with DHTML / JS / CF to drag a graphic from the desktop to the browser window to automatically fetch the image and save it on the server? The user probably should be able to insert comments / filename to the image in the same operation. Anyone? Helge Hetland -

Exploded Benchmarking on Solaris

2000-06-11 Thread Dave Carabetta
Could someone give me the appropriate registry settings to get the exploded benchmarking stats with debugging on a Solaris box? I'm talking about the millisecond info that is listed breaking down template execution time. I have the settings for NT already. Thanks, Dave. ___

OT: Drag and Drop

2000-06-11 Thread Helge Hetland
Is it possible with DHTML / JS / CF to drag a graphic from the desktop to the browser window to automatically fetch the image and save it on the server? The user probably should be able to insert comments / filename to the image in the same operation. Anyone? Helge Hetland -

User email addresses as user login names any concerns ????

2000-06-11 Thread AustralianAccommodation.com Pty. Ltd.
This is a multi-part message in MIME format. --=_NextPart_000_0017_01BEB3F8.7EB672A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am thinking of modifying my membership application pages to my website = so that the users login name is t

is this list still working ??????

2000-06-11 Thread AustralianAccommodation.com Pty. Ltd.
This is a multi-part message in MIME format. --=_NextPart_000_0007_01BEB42F.125E8700 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Kind Regards Claude Raiola (Director) AustralianAccommodation.com Pty. Ltd. Website: www.AustralianAccom

RE: NT to Solaris

2000-06-11 Thread lsellers
> > Is there a utility or guide to convert .dll cfx tags into > > unix friendly files? > > You'll need to recompile them on the target platform, and make > sure that the > original code will work on that platform. This is why you don't find many > CFX tags for Unix platforms. > > Dave Watts, CTO,

Re: UPS Shipping Costs

2000-06-11 Thread WBB
Don't feel too bad...I'm up to 7 on many and climbing :( > How many times are you going to send the exact same message? We're up to > four at the moment. > > Michael J. Sheldon > Internet Applications Developer > Phone: 480.699.1084 > http://www.desertraven.com/ > PGP Key Available on Request >

testtesttest

2000-06-11 Thread pan
do-dah -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body

Re: Can CF generate a Pop-up Window w/o Javascript?????

2000-06-11 Thread Jenny Anderson
-Original Message- > From: Richard Fascianella [SMTP:[EMAIL PROTECTED]] > Hello, > > I joined this list with the hope someone can help me with an issue I am > having. > > I need to find out if CF can be used to generate a pop-up browser window > WITHOUT the use of javascript. > >

Re: HTML Text Editor

2000-06-11 Thread Jenny Anderson
Bridget: You can go to http://www.tucows.com/UnitedStates.html (choose your region, OS) and take a look at their HTML text editors. There they have quite a few freeware editors and reviews for each. HTH! Jenny >Date: Mon, 5 Jun 2000 11:45:33 -0400 >From: Bridget Corkery <[EMAIL PROTECTED]>

Re: Killing Session & Back Button

2000-06-11 Thread Joseph Eugene
Raymond, Could you please explain, how i can set a safe environment to log a user into the application and log the user out.. I tried the structClear(Session) and it messed things up.. how else can i use structClear(Session) safely, were you referring to som

Re: CF and IIS on Separate Boxes

2000-06-11 Thread Adam Cantrell
Whatever directory your 'cfdocs' are in - go to /Administering_ColdFusion_Server/03_Configuring_ColdFusion_Server/admin0325. htm#1052402 and it will explain 'distributed cold fusion'. I messed with it once, and I know you have to run an extra service 'cfdist.exe' that listens for cold fusion 'tr

inserting a character between elements of a string

2000-06-11 Thread Jonathan R. Karlen
This is a multi-part message in MIME format. --=_NextPart_000__01BFD237.7F1CEEA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by onyx.he.net id OAA01903 Greetings =96 I want to inse

RE: Allaire Spectra E-Business Construction Kit

2000-06-11 Thread Bruce Altner
I was browsing through this at a bookstore last night and had a question about the installation process. It said that you can install Spectra under NT, Windows 2000, or Solaris and then gave details for NT and Solaris installations, warning that yoy need CF 4.5 or higher for these. But it gave no

RE: CF-Talk V1 #3

2000-06-11 Thread Reed Powell
Lee, what is the ODBC command you are trying to execute? Are you reading or writing or updating? According to the Microsoft ODBC manual, if you are writing, then this sounds like the database field is shorter than the data you are trying to store. I don't think this is a problem with quotes aro

RE: CFCONTENT... set the filename?

2000-06-11 Thread Bill Killillay
Mike, I don't know if you got an answer to this or not, per David Watts, there are two ways, and they both do work. I can tell you that from experience. The first is just to name the processingFile.cfm what you want the downloaded file name to be. The second is to pass it to it like so. In you

RE: Nesting possible?

2000-06-11 Thread Bill Killillay
Yes! > -Original Message- > From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 08, 2000 1:06 PM > To: Cf-Talk@Houseoffusion. Com > Subject: Nesting possible? > > > Is it possible to nest tags? > > Cyrill Vatomsky > LinguaCom >

Re: Newsgroups?

2000-06-11 Thread Joseph Christina
Larry, a HUGE "Thank You" for pointing this out. I love reading CF-Talk but hate the problems I encounter with the list itself. I'm sending this from the comfort of my news reader. Thanks also to Fuseware. Joseph Christina, RN Web Programmer Children's Hospital of Philadelphia "We have enough

Re: Can CF generate a Pop-up Window w/o Javascript?????

2000-06-11 Thread Angel Stewart
Uh oh.. err..could you try it with Internet Explorer and see if you get the same error? Also could you try sending to USER: me message : test email [EMAIL PROTECTED] (should display user not found etc. etc. in the pop up window) I'd like to know if for some reason having spaces in those fields

The query below will return a match without regard to the case

2000-06-11 Thread Chris Giminez
This is my third attempt to post this question. Hopefully it will show up this time. ** The query below will return a match without regard to the case "password" in the database returns a record when matched with "PASSWORD" or "PaSSwORd" when

Studio 4.5 Install

2000-06-11 Thread Mary Fowler
Greetings! I have a strange thing happening after installing Studio 4.5. More than 1/2 of the function buttons are blacked out, meaning there is a solid black square where a button should be. I have uninstalled and reinstalled and it remains the same. I have installed Studio on quite a number o

PRINTING with Page Breaks

2000-06-11 Thread sam komolafe
Hi guys, Is there any way in ColdFusion or any product out there I can use to print a 3 to 4 page report that has page breaks and page headers. I really need the page breaking option. thanks sam -- Archives: http://www

Re: Weird

2000-06-11 Thread Eric A. Griff
Check that ur emailer isn't crashing and not deleting the messages at the end of the pop connection.. OE4 could get in that state, and occasionally OE5.. I wouldn't be surprised if Netscape Messenger could do the same think if the POP doesn't complete. Eric - Original Message - From: "Be

next 5 records

2000-06-11 Thread Robert Orlini
Hello, I followed a coded example from QUE's CF Web App Construction Kit 2nd ed. book. It displays 5 records at a time and then displays a button which a user can click to display the next 5 records and so on. The code given, however, displays the first set of 5 records and when I click the "Nex

Setting Margins in a .DOC file

2000-06-11 Thread Eron Cohen
Hi Folks, I am trying to format a document for printing. I am especially concerned with controlling the margins. I thought the easiest way to get control of printing in general would be to open it in MS Word using CFCONTENT: The trouble is that this opens the document with the default MS W

RE: Easy way to get a random record

2000-06-11 Thread Bill Killillay
I would first run the query and get the total record count. SELECT ID FROM MyTable I would then do a Then I would run another query this time I would use my select as with the myVar from the above step. You could scope the first query so your not running it each time and that way you just cr

CF, ODBC & Mainframe DB2

2000-06-11 Thread Gerry Pauline
CF experts: I know some of you are connecting to mainframe DB2 with CF, what are you using as an ODBC driver/gateway ? Joe Hoffman, a regular contributor to this list, told me that he uses the driver from Neon Data Systems, but I can't seem to locate them on the web any more. I've c

Test, please delete right away

2000-06-11 Thread Nathan Chen
Test -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

RE: Help with single quotes

2000-06-11 Thread Cyrill Vatomsky
Thanks, David > > > > > > SELECT ID, sale_price,Address, City > > FROM properties > > WHERE City IN ('#PreserveSingleQuotes(form.by_city)#') > > > > > > If only one city is selected in the form, the processing > > template works fine, displaying all properties for a selected > > city. But if