Re: Is it possible to send attach with cfmail ?

2001-05-21 Thread another programmer
yep, though the links may be damaged (eg. images no longer appear) due to the location of the html file changing. Use absolute links to fix this (eg. instead of /my.gif use http://mysite.com/my.gif) If you want, the mail can be html (check cfmail docs and look at 'type' attribute) - Origin

RE: Is it possible to send attach with cfmail ?

2001-05-21 Thread Teng-Yan Loke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Is it possible to send attach with cfmail ? > for example send email with PDF file, Image file , Word files , Text > files Can I attach a web page? Maybe I have to do a CFHTTP to save it to a file first, then use MIMEATTACH to include into the C

Re: VTML "edit tag" dialogs: attributes with no value?

2001-05-21 Thread robrusher
In CF Studio: Select the tag selector tab in the resources area. (Next to the help tab) Then select the little yellow gear with the hint "Edit Tag Definition". (Half way up on the gray separation bar) Use this to edit all your VTMs, it's a breeze. Rob Rusher Flare Networks Inc. 233 Linden Street

Re: Is it possible to send attach with cfmail ?

2001-05-21 Thread another programmer
again, from the docs Please read the text file and view the new logo, and let us know what you think. - Original Message - From: "Chiraporn" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, May 22, 2001 2:28 PM Subject: RE: Is it possible to s

RE: Randomizing a Query Result or List

2001-05-21 Thread Javier Woodhouse
Once you've used your cfquery - in a loop run some code that will select 2 randaom rows and swap the values... just a quick thought... never tested it out... you should be able to swap the rows like this: query_name.column_01[row number], you'd have to swap every column individually though... W

Re: Randomizing a Query Result or List

2001-05-21 Thread Jim McAtee
Use the Rnd() function. SELECT * FROM stuff ORDER BY Rnd(stuff_id) Jim - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 10:45 PM Subject: Randomizing a Query Result or List > I do a complex query and currently the results are

Randomizing a Query Result or List

2001-05-21 Thread neverlive
I do a complex query and currently the results are returned based on the order they appear in the db. What I need to do is have the order they are returned as random. Is there a ORDER BY RANDOM type of syntax that will work with my Access database? Alternatively, the results are stored in a list

RE: Is it possible to send attach with cfmail ?

2001-05-21 Thread Chiraporn
Is it possible to send multiple file ? Thank you -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 11:03 AM To: CF-Talk Subject: RE: Is it possible to send attach with cfmail ? right from the docs: MIMEATTACH="path" as in: -Original

RE: Is it possible to send attach with cfmail ?

2001-05-21 Thread Dylan Bromby
right from the docs: MIMEATTACH="path" as in: -Original Message- From: Chiraporn [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 9:02 PM To: CF-Talk Subject: Is it possible to send attach with cfmail ? Hi Is it possible to send attach with cfmail ? for example send email wi

Is it possible to send attach with cfmail ?

2001-05-21 Thread Chiraporn
Hi Is it possible to send attach with cfmail ? for example send email with PDF file, Image file , Word files , Text files Is it possible ? Please give me suggestion Thank you Phim ~~ Structure your ColdFusion code with Fusebox. Get the officia

Re: VTML "edit tag" dialogs: attributes with no value?

2001-05-21 Thread Kay Smoljak
On Mon, 21 May 2001 08:23:08 -0400, "Raymond Camden" <[EMAIL PROTECTED]> wrote: >You can do a conditional output by using So, your VTML portion of >the portion can do this: > > >TEXT_BOLD = 1> > >This way it would only show up if true, not false or not selected at all. Thanks, but is there an

cfcatch and email

2001-05-21 Thread sebastian palmigiani
I want to send an email with database error info using cftry/cfcatch. But it is not working. Am I trying to do something that can't be done within a cfcatch block? Sebastian --- Select * from members Date: #DateFormat(Now(), "MM D

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Steven A. del Sol
Why you are correct. Thanks. At 04:48 PM 5/21/2001 -0700, you wrote: >FYI the correct url is http://www.cfhacker.com > >-Original Message- >From: Steven A. del Sol [mailto:[EMAIL PROTECTED]] >Sent: Monday, May 21, 2001 3:21 PM >To: CF-Talk >Subject: RE: Create-edit-delete in Access - T

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Paul Mone
FYI the correct url is http://www.cfhacker.com -Original Message- From: Steven A. del Sol [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 3:21 PM To: CF-Talk Subject: RE: Create-edit-delete in Access - TAG I don't know of any tag off hand but you could do the following steps to ac

RE: need some ideas

2001-05-21 Thread Owens, Howard
You could try something like this: CONTENT OF THE PAGE GOES HERE ERROR: An error was encountered on this page. In many cases, these types of errors are temporary glitches, but if this problem persists, please click the button below to generate an error report for the Web site administ

RE: fearing the failing scheduler

2001-05-21 Thread Bryan Love
TID stands for TRANSACTION ID if I remember right. It doesn't really mean anything, it's just the ID number of the transaction that generated the error. Bryan Love ACP Internet Application Developer [EMAIL PROTECTED]

Re: Page Refreshing

2001-05-21 Thread Andy
I use the following: Andy - Original Message - From: "Joshua Tipton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 11:15 AM Subject: RE: Page Refreshing > Meta tags > > > -Original Message- > > From: Kate Hillier [mailto:[EMAIL PROTEC

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Steven A. del Sol
I don't know of any tag off hand but you could do the following steps to accomplish your goal: 1. Get Rob Munn's CF SQL TAG http://www.cf-hacker.com. 2. Get results of tables in datasource - Output list 3. Make list click-able to a multiple select form. -Nate Weiss wrote some good tags to do thi

Re: need some ideas

2001-05-21 Thread Tony Schreiber
> So what I want to do is have the errors emailed to me when something > breaks. I know that you cant use cfmail in an error page so is there > any other way to do this to make sure I get an email? I was thinking > of making the error page use a meta refresh to a page I can use cfmail > on but I'm

Re: need some ideas

2001-05-21 Thread Zac
Art Broussard wrote: > So what I want to do is have the errors emailed to me when something breaks. I > know that you cant use cfmail in an error page so is there any other way to do > this to make sure I get an email? I was thinking of making the error page use > a meta refresh to a page I can u

Re: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Willy Ray
Thanks. That did it. Willy >>> [EMAIL PROTECTED] 5/21/01 1:34:58 PM >>> In ColdFusion Studio, under Options\Settings\File Settings tab there is a Format when saving selection. Select Unix format. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread John Anderson
There is an app that will allow that sort of thing. check out sqlgendb This allows the ability to edit a db through a web page on the fly...actually you can edit records etc. the free trial version can be downloaded here: http://www.aloha-webdesign.com/ -Original Message- From: Owen

RE: need some ideas

2001-05-21 Thread Steve Cohen
Art, Check out tutorial 3 on www.FlashCFM.com. This is one way to do it. Steve -Original Message- From: Art Broussard [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 5:04 PM To: CF-Talk Subject: need some ideas There are some major problems with a site we have. We gave t

RE: the big export...ColdFusion.NET?

2001-05-21 Thread Steven A. del Sol
Not to sound like I am on the MS bandwagon I got to admit everything I have built on C# seems to work on Java platforms the only difference is there is additional functionality on C# that does not exist in Java. MS has great support for Java programers who care to make the switch. http://msd

RE: Problems with inserting a date fields (Using Native Driver, AS/400)

2001-05-21 Thread Bill Simpson
Don't put quotes around the CreateODBCDate function -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 9:58 AM To: CF-Talk Subject: Problems with inserting a date fields (Using Native Driver, AS/400) Can anybody tell me why I am getting this erro

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Owens, Howard
Um, works real well with Access. Use it all the time. Have created all kinds of interfaces for clients allowing them to add, edit and delete files. It's just like any other ... um, you run a SQL query to select rows, insert rows, update rows, delete rows. In other words, I'm not sure what

RE: Database Design Question

2001-05-21 Thread Pete Freitag
The technique I was alluding to is called the Entity-Relationship (ER) model. Do a search at your favorite book site, and you will find a bunch of books on it. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusio

Re: CFLOCK with CF 5.0

2001-05-21 Thread Edward Smith
Is there a reason a shared hosting setup wouldn't turn on the Administrator setting to throw errors on unlocked reads and writes? Then you couldn't write unlocked code, right? I guess it would be a problem if they already had a bunch of bad code on there.. Jim McAtee wrote: > > So it sounds li

need some ideas

2001-05-21 Thread Art Broussard
There are some major problems with a site we have. We gave the job to some one outside of the company and MAN that was a mistake. It's slow and only works most the time. We are constantly getting email about the site not working in one way or another from the users browsing the site. They give

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Mark W. Breneman
Ah, I see now. I doubt you will find a Custom tag to do that. Way too may vars like field type and length. Your best is to make custom admin pages for the client. Sorry, Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608

Re: Create-edit-delete in Access - TAG

2001-05-21 Thread Dave
I'm lost. Isn't a browser "some type of interface" - Original Message - From: "CF Crazy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 3:56 PM Subject: Re: Create-edit-delete in Access - TAG > Well, I am aware of that! > I do not want to teach my clien

RE: Beta version of Cold Fusion for Linux

2001-05-21 Thread Saidi; Marwan
Don't know what you mean be "Beta version", but CF Linux 4.5.1 *does* come with MySQL support built in, including in the Administrator. However, it is buggy, so you must install SP2 to get the most stable drivers. HTH, Marwan -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED

RE: Problem with cf_uicalender

2001-05-21 Thread Craig Fisher
did we ever get an answer to this? I can not seem to find one and have noted the same behavior (although it works great if you run it in pop-up mode). Craig Fisher Alta Interactive, Inc. http://www.altainteractive.com/ [EMAIL PROTECTED] 801-791-8251 -Original Message- From: Thomas Chive

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread CF Crazy
So many comedians! ;-) At 11:58 AM 5/21/2001 -0700, you wrote: >You mean other than ? :-) > >Sorry just had to ask. > >J. > >John Wilker >Web Applications Consultant >Macromedia Certified ColdFusion Developer > >www.red-omega.com > >"Losing - If at first you don't s

Re: Create-edit-delete in Access - TAG

2001-05-21 Thread CF Crazy
Well, I am aware of that! I do not want to teach my client Cold Fusion or they will no longer need me. I was hoping for some kind of interface. I have seen a couple that worked with SQL but I was looking for one to work well with Access. Steph At 02:45 PM 5/21/2001 -0400, you wrote: >Not to

FW: Beta version of Cold Fusion for Linux

2001-05-21 Thread Arden Weiss
Whoops a bit of a brain cramp -- I was referring to version 5 for Linux. The Allaire site only shows 4.5 stuff... ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Arden Weiss [SMTP:[EMAIL PROTECTED]] Sent: Monday, May

RE: fearing the failing scheduler

2001-05-21 Thread Akbar Pasha
hi tim, we are running, CF server 4.5.1 without SP1 or SP2. does SP1 or SP2 fix this weird behaviour? plz let me know as i need to present a good draft to convince my company so that they upgrade. thanx ::akbar -Original Message- From: Tim Painter [mailto:[EMAIL PROTECTED]] Sent: Monda

Re: Database Design Question

2001-05-21 Thread G
Generally speaking, this is not a good database design. It's tempting because of the myriad of string functions in Cold Fusion that make manipulating strings like this fairly easy. But from a pure database standpoint, storing multiple information like this in one field is frowned upon. I think

Re: Create-edit-delete in Access - TAG

2001-05-21 Thread Larry C. Lyons
Correct me if I'm wrong about this but isn't CFQuery a good tag for this? This is really basic stuff. regards, larry -- Larry C. Lyons ColdFusion/Web Developer EBStor.com 8870 Rixlew Lane, Suite 201 Manassas, Virginia 20109-3795 tel: (703) 393-7930 x253 fax: (703) 393-2659 http://www.ebstor

RE: the big export...ColdFusion.NET?

2001-05-21 Thread Paul Mone
Yuck. I would certianly hope that Macromedia doesn't consider using C# over Java. One of the most exciting prospects of CF6 is it's ability to run on any platform. I am willing to bet that the "Common Language Runtime" will _not_ run on any platform. It seems that Microsoft is taking an

Beta version of Cold Fusion for Linux

2001-05-21 Thread Arden Weiss
Last night I listened to the WebMonkey Radio interview of the MySQL developers at: http://hotwired.lycos.com/webmonkey/radio/monty_widenius.html If I heard them correctly, they said the Linux version of Cold Fusion has ODBC access to MySQL Server built in -- guess that means included in the OD

Re: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Marius Milosav
In ColdFusion Studio, under Options\Settings\File Settings tab there is a Format when saving selection. Select Unix format. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosoft.com/vhd/login.cfm - Original Message -

RE: quotes in text

2001-05-21 Thread Bob Silverberg
Try using the HTMLEditFormat function on your string. Bob -Original Message- From: Bobby Olsen [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 1:19 PM To: CF-Talk Subject: quotes in text When quotes are entered into a varchar column, the data gets stored properly. However, upon

RE: quotes in text

2001-05-21 Thread John Wilker
One method would be to replace the quotes when they are inserted with the corresponding ASCII char. J. John Wilker Web Applications Consultant Macromedia Certified ColdFusion Developer www.red-omega.com "Losing - If at first you don't succeed, failure may be your sty

Re: CFLOCK with CF 5.0

2001-05-21 Thread Jim McAtee
So it sounds like CF 5 promises to be just as unstable when used in an environment with inexperienced developers. Most notably, shared hosting setups. Jim > AFAIK the same locking principle apply to cf5 as 4 so you must lock all > application/session/server scoped variables > > HTH > > Mik

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread John Wilker
You mean other than ? :-) Sorry just had to ask. J. John Wilker Web Applications Consultant Macromedia Certified ColdFusion Developer www.red-omega.com "Losing - If at first you don't succeed, failure may be your style." ~despair.com -Original Message- Fr

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Akbar Pasha
try this http://devex.allaire.com/developer/gallery/info.cfm?ID=44C495D9-35E9-11D 4-83D700508B94F85A&method=Full the custom tag name is "CF_ListTable" ::akbar -Original Message- From: CF Crazy [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 1:54 PM To: CF-Talk Subject: Create-e

Re: Missing Line Numbers

2001-05-21 Thread Tim Painter
Kevin, By chance, did you run the beta of service pack 2 of studio? I would see that all the time in the beta, but it cleared itself up when they released the final. If you don't have the final release of svc pack 2 installed, try that. HTH, Tim P. - Original Message - From: "Kevin

Re: Create-edit-delete in Access - TAG

2001-05-21 Thread Tim Painter
Not to sound like a smart-aleck, but that's what is for. You can run any sql statment there. Tim P. - Original Message - From: "CF Crazy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 1:54 PM Subject: Create-edit-delete in Access - TAG > > Does anyo

Re: fearing the failing scheduler

2001-05-21 Thread Zac
Akbar Pasha wrote: > i am running, win2k server with SQL 2000 as backend. > > any ideas. thanx in advance. Have you considered using something like Cron to schedule the tasks instead? I use it on a remote machine to trigger CF pages. I haven't used it to do a page every single minute but it mi

Re: fearing the failing scheduler

2001-05-21 Thread Tim Painter
Akbar, Which version are you running? The scheduler uses cfhttp and there were a number of fixes to cfhttp in service pack 2 of 4.5.1. If you are not running it now, you may want to consider installing this. Tim P. - Original Message - From: "Akbar Pasha" <[EMAIL PROTECTED]> To: "CF-Ta

RE: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Nathan Nelson
Are you saving to a UNIX box? If so go to the "Options" menu in Studio, click on "Settings" then go to "File Setting" and there is an option under "Format when saving" you can select "UNIX" to keep this from happening. Thanks, Nathan Nelson ColdFusion Developer ..::[CFDynamics]::. www.cfdynamic

Re: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Zac
Willy Ray wrote: > I'm running the eval of Cold Fusion Server 4.5 Enterprise on Redhat 7.1. When > I save a template through RDS, for every carriage return I enter as I code, I > get two carriage returns on the saved document. Example: > Big problem. I've got a template with only about 20 li

Re: Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Bryan LaPlante
There is an option in studio's settings under tools (F8) that will allow you to choose your file settings so that a saved document uses the OS type of document structure. Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.com Web Development - Original Message - From: "W

quotes in text

2001-05-21 Thread Bobby Olsen
When quotes are entered into a varchar column, the data gets stored properly. However, upon *re-displaying* the data is truncated at the quotes. Can some share the technique, please? Thanks, Bobby ~~ Structure your ColdFusion code with Fusebox.

RE: Database Design Question

2001-05-21 Thread Pooh Bear
Oh, you see, this project does not display the choices for the question, nor does it displays the question. And there's only 1 answer for each question. so I think 2 tables is the best way to handle it. but I might consider putting the answers in one row for each exam like ABBCCCBBDDEEBDD,

RE: CFLOCK with CF 5.0

2001-05-21 Thread Mike Townend
AFAIK the same locking principle apply to cf5 as 4 so you must lock all application/session/server scoped variables HTH Mike -Original Message- From: Hamid Hossain [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 18:14 To: CF-Talk Subject: CFLOCK with CF 5.0 is it important

RE: Missing Line Numbers

2001-05-21 Thread Jay Jennings
> Do you see the gray bar on the left? If not, that means that you > have the gutter toggled off. Press the button above the line > number toggle to turn the gutter back on. Wow, I feel like a newbie. Really, I'm not! =:) I guess I forgot the gutter was seperate from the vertical control bar. T

Create-edit-delete in Access - TAG

2001-05-21 Thread CF Crazy
Does anyone know have a good tag that gives control to create, edit and delete rows and fields using an access database. Steph ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm A

RE: with CF 5.0

2001-05-21 Thread Dave Watts
> is it important to use in CF 5.0 ? As far as I can tell, there haven't been any changes to how memory variables are handled in CF 5. So, the answer would be "yes". Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~

fearing the failing scheduler

2001-05-21 Thread Akbar Pasha
hi all, we have a scheduler which is configured to run every 60 mins. it was working fine until one fine day it decided to run every minute! we had to reboot the server to fix it. but even now, after looking thru all the forums and web sites i am not able to get hold of any good info regarding th

RE: Missing Line Numbers

2001-05-21 Thread Kevin Mansel
Haven't seen that one yet, but have you seen the one where your folder explorer to the left displays each file two times? That happens from time to time for me... ~ Kevin Mansel Web Developer Fox Communications [EMAIL PROTECTED] DL : 425-649-1321 C : 425-346-7221 -Origina

Bizarre Error: Server/Studio Duplicating Carriage Returns

2001-05-21 Thread Willy Ray
I'm running the eval of Cold Fusion Server 4.5 Enterprise on Redhat 7.1. When I save a template through RDS, for every carriage return I enter as I code, I get two carriage returns on the saved document. Example: I write: Hello When I re-open the file it looks like this:

CFLOCK with CF 5.0

2001-05-21 Thread Hamid Hossain
is it important to use in CF 5.0 ? Hamid Hossain ~~ 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@houseoffusion.com/ Unsubscribe: http

CFLOCK with CF 5.0

2001-05-21 Thread Hamid Hossain
is it important to use in CF 5.0 ? Hamid Hossain ~~ 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@houseoffusion.com/ Unsubscribe: http

CFLOCK with CF 5.0

2001-05-21 Thread Hamid Hossain
is it important to use in CF 5.0 ? Hamid Hossain ~~ 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@houseoffusion.com/ Unsubscribe: http

with CF 5.0

2001-05-21 Thread Hamid Hossain
is it important to use in CF 5.0 ? Hamid Hossain ~~ 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@houseoffusion.com/ Unsubscribe: http

RE: Missing Line Numbers

2001-05-21 Thread Howarth, Craig (IBK-NY)
Do you see the gray bar on the left? If not, that means that you have the gutter toggled off. Press the button above the line number toggle to turn the gutter back on. Craig > -Original Message- > From: Jay Jennings [SMTP:[EMAIL PROTECTED]] > Sent: Monday, May 21, 2001 12:35 PM > To:

RE: File Maker

2001-05-21 Thread Owens, Howard
Another option for working with FM is Lasso. See http://www.blueworld.com/blueworld/default.html Any CF programmer should be able to pick up Lasso pretty quickly, if needed. H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 ~~

RE: Database Design Question

2001-05-21 Thread Pete Freitag
Your DB can "probably" handle that many rows as long as its properly indexed, but you should look at some database normalization techniques. A fully normalized design might have a table for... exams questions choices the correct answer should be a foreign key in questions table to the choices t

odbc error connecting to datasource

2001-05-21 Thread Burba, William
Greetings We are attempting to move the username/password from the cfadministrator and place it in application variables. When this is done, we are getting the following message ODBC Error Code = 08001 (Unable to connect to data source) [IBM][CLI Driver] SQL30082N Attempt to establish con

RE: Database Design Question

2001-05-21 Thread Bob Silverberg
If you want to store all of the answers (not just the correct one) for each question, I think you're actually looking at 3 tables: tblExam - ExamId(PK), ExamName, ExamDate, etc. tblQuestion - QuestionID(PK), ExamId(FK), QuestionText, etc. tblAnswer - AnswerId(PK), QuestionID(FK), AnswerText, IsCo

RE: Database Design Question

2001-05-21 Thread Russ Conway
First 12.5k rows is not very many. I've worked on SQL Server apps with closer to 1 million rows. If you index the tables correctly and run reasonable queries, I'd be surprised if you taxed the server too much. As an alternate strategy though, you could do this with one table. Just create a field

Missing Line Numbers

2001-05-21 Thread Jay Jennings
The line numbers in my copy of CFStudio 4.5.2 (under Win2K) have disappeared sometime recently. Toggling them in the control bar doesn't do anything. I figured I'd check here before I reinstall or whatever. Is this familiar to anyone? Thanks. ..jj.. - - - - - Get your free email account: [EMA

RE: Best way to limit access to a specific template from "only" the previous template?

2001-05-21 Thread Tony Schreiber
Just as a precaution, though I'm sure many of you know this... Using "CONTAIN" when testing url strings is almost worthless - since a url like http://www.crackers.com/hackattempt/haha.html?fool=template1.cfm is completely valid... > > Unauthorized host detected! Access denied! >

RE: Cfhttp

2001-05-21 Thread Top-Link Tech (John Ceci)
Well, If you used CFHTTP to call a CFM file on a remote server that executed a script to delete a file, then yes you could... HTH, John -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 10:59 AM To: CF-Talk Subject: Cfhttp Can a text file be

RE: Page Refreshing

2001-05-21 Thread Joshua Tipton
Meta tags > -Original Message- > From: Kate Hillier [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 21, 2001 11:59 AM > To: CF-Talk > Subject: Page Refreshing > > > I need to force a refresh on a page when I return to it after doing a > postcode lookup routine. I was wondering if there

RE: Cfhttp

2001-05-21 Thread Dave Watts
> Can a text file be deleted from a server via cfhttp? Not directly. CFHTTP only supports GET and POST requests. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~ Structure your ColdFusion code

RE: Setting Dynamic Variables

2001-05-21 Thread Dave Watts
> Eh? Is it marked for deprecation? If so, it's news to me. > (Not saying your wrong, just wondering why you think this.) I don't know whether it's marked for deprecation - for that to happen, it would have to be part of the documented, desired behavior of the language in the first place. To the

RE: Stripping wrapper quotes from all fields

2001-05-21 Thread Adkins, Randy
-Original Message- From: Marc Garrett [mailto:[EMAIL PROTECTED]] Sent: Monday, May 21, 2001 11:55 AM To: CF-Talk Subject: Stripping wrapper quotes from all fields I have a database in which all fields are wrapped by double quotes. I'd like to write a CF template that will strip all le

Database Design Question

2001-05-21 Thread Pooh Bear
hey yall, I'm workin on this project where you can get answers to a certain exam (like if you're a teacher or instructor, u can use it to show to your students). All of the answers are multiple choices. Each exam has anywhere between 25 and 70 questions. I want to know the best way to store

RE: Page Refreshing

2001-05-21 Thread Stephen Galligan
Hello, You may wish to try using this snippet of code hth Stephen -Original Message- From: Kate Hillier [mailto:[EMAIL PROTECTED]] Sent: 21 May 2001 16:59 To: CF-Talk Subject: Page Refreshing I need to force a refresh on a page when I return to it after doing a post

Cfhttp

2001-05-21 Thread Joshua Tipton
Can a text file be deleted from a server via cfhttp? Joshua Tipton ~~ 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@houseoffusion.com/

RE: Stripping wrapper quotes from all fields

2001-05-21 Thread Raymond Camden
I would probably consider changing the database first. Outside of that, you can use regex: This uses ^" to find a quote at the beginning, and "$ to match at the end. This will keep the "quotes" in the middle of the string safe. If you are _sure_ that every string has "..", you could also do:

Another Problem with cf_uicalender

2001-05-21 Thread Thomas Chiverton
The left most arrow (previous month) is ~one pixel lower than the month box. Anyone else seeing these problems ? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://w

Page Refreshing

2001-05-21 Thread Kate Hillier
I need to force a refresh on a page when I return to it after doing a postcode lookup routine. I was wondering if there was a CF solution to this as I have tried JavaScript and using meta tags and they don't seem to work. Forgive me if this is an easy one for the list. TIA Kate ~~

Stripping wrapper quotes from all fields

2001-05-21 Thread Marc Garrett
I have a database in which all fields are wrapped by double quotes. I'd like to write a CF template that will strip all leading and ending quotes from all fields in the table; i.e., "Hardwood Tile" should become Hardwood Tile Any guidance? Thanks, Marc Garrett

Re: Adobe Acrobat - Batch HTML Thumbnails

2001-05-21 Thread Michael Lugassy
Thanks for the nfo about Adobe Acrobat 5.0, but after looking into the features list I'm still not positive that this can help me out. Adobe Acrobat can capture the data alright, but as a PDF file. that's about the same as getting the HTML with CFHTTP and storing it locally on a html file. the tr

Slightly OT: UK Extended Fusebox Training

2001-05-21 Thread alistair . davidson
Hi, Sorry for the OT post, but I just wondered if any of you guys (and gals) were going to Hal Helms' Extended Fusebox Training Course in the UK on 16th July? Please mail me off-list if you are! Cheers Alistair Davidson Senior Web Developer Rocom New Media www.rocomx.net ~

RE: rebuild laptop :: save cf server dsn's

2001-05-21 Thread Bernd VanSkiver
Do you have the option to put windows 2000 on it? If so, I would highly suggest you do that. IR and USB work great in 2000 and it is far more stable than Win9x and NT even. --- Paul Ihrig <[EMAIL PROTECTED]> wrote: > oh i don't know. > perhaps being able to use the ir port or the usb > port wou

Re: Admin Fail ???

2001-05-21 Thread Tim Painter
I had this message before -- I think you can get the error if you install a service pack or update and the cfide\administrator directory was changed during the install. Try reinstalling cf (or in my case, I installed the latest service pack 2) and that should fix it. Tim Painter - Original M

RE: Best way to limit access to a specific template from "only" the previous template?

2001-05-21 Thread Jerre Hale
Thanks! I used Craig's suggestion and it works fine. Unauthorized host detected! Access denied! I also augmented the header line with an back to the login screen. Unauthorized access method detected? http://129.174.xx.xxx/ssh/index.cfm";> Please login ~~

Adobe Acrobat - Batch HTML Thumbnails

2001-05-21 Thread Eric Root
Michael Lugassy was looking for a solution to batch processing thumbnails of web pages. Adobe Acrobat Version 5.0 appears to have many ways of doing this. It has automatic batch process run command, lots of file export options including JPG, HTML page conversion to PDF using URL or other methods

RE: QOT: Message Board Questions

2001-05-21 Thread C. Hatton Humphrey
> Would that work? From a functional standpoint, it's a > solution. However, politics may trash it. I can imagine people being > offended that their discussion group is listed on the same page > as another > section's discussion group. (Corporate America--or > wherever--gotta love it) Tell

RE: What a task!

2001-05-21 Thread Matthew Fusfield
What about Windows? In explorer, under the view menu, there is an option called "Thumbnails". Perhaps whatever is generating these thumbnails (an activex control?) could be called on the server to generate the thumbnail? Not sure if this is at all feasible, but just a thought. Matt -Origina

Re: Setting Dynamic Variables

2001-05-21 Thread Jon Hall
I'm just going by what I've seen posted here. I've never seen any documentation saying dynamic variables should be named this way, and there is a function to do specifically this. A little deduction leads me to believe that this is an unintended way to go about it. So if it goes away because the u

Re: QOT: Message Board Questions

2001-05-21 Thread Jeffry Houser
I suppose this may or may not work for your particular situation, it seems to be a switch from what you have implemented (or was planning on implementing) Build it all as one application. And build a security scheme into the database, with users and groups (tables). Turn off (or on) nav

Re: What a task!

2001-05-21 Thread Rey Bango
Call girafa.com and see if they'll license the code to you or allow you to use their service in some type of ASP mode. Rey... Team Allaire... - Original Message - From: "Michael Lugassy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 10:14 AM Subject: Re

RE: Duplicate() ?

2001-05-21 Thread Raymond Camden
> I've heard somewhere that by assigning a structure varialbe (or > another complex variable) to > a diffrent variable by using something like: > > I'm just assigning a pointer for that structure > and To "FULLY" copy this variable I need to use some Duplicate() function. Correct. To see this in

RE: rebuild laptop :: save cf server dsn's

2001-05-21 Thread Pete Freitag
In regedit you can export your registry export: HKLM\Software\Allaire\ColdFusion\CurrentVersion and HKLM\Software\ODBC\ODBC.INI to save your datasources. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusiona

  1   2   >