How to expiry a crystal report session?

2001-12-20 Thread JAIME HOI
Does anybody know of a simple script to expiry a crystal report session? say upon report loaded , i will want to expiry the session so that more users can log into the system to view the report. Currently my report are mostly one-page basis. Any help will be greatly appreciated. _

Re: Text documents - funny characters

2001-12-20 Thread Howie Hamlin
That sequence is incorrect - it should be chr(13) chr(10) Howie - Original Message - From: "Kay Smoljak" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 11:54 PM Subject: Re: Text documents - funny characters > Hmmm... > > I was using chr(10) chr

Re: Text documents - funny characters

2001-12-20 Thread Kay Smoljak
Hmmm... I was using chr(10) chr(13) at first, but that was giving me two funny squares in Notepad. Someone here suggested that Notepad has trouble with that character sequence and only requires the carriage return. If I take them both out I get no funny characters, but no line breaks either :) It

Re: OT: RE: SQL SERVER 7 FOR SALE

2001-12-20 Thread Alex
ebay On Thu, 20 Dec 2001, Joseph DeVore wrote: > Just to clarify so the Microsoft police don't call me up. > > I bought a full version of SQL SERVER 2000 and I am selling my old full > version of SQL SERVER 7 > > (no upgrades involved) :) > > - Joseph > > > > > -Original Message-

RE: SQL SERVER 7 FOR SALE

2001-12-20 Thread Paris Lundis
I hear you phone ringing from the MS police now... just offer to donate something free to some school and maybe that will get u off the hook too :) -p -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 21:33 To: CF-Talk Subject: OT: SQL S

OT: RE: SQL SERVER 7 FOR SALE

2001-12-20 Thread Joseph DeVore
Just to clarify so the Microsoft police don't call me up. I bought a full version of SQL SERVER 2000 and I am selling my old full version of SQL SERVER 7 (no upgrades involved) :) - Joseph -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20

Re: OT: MPG Display

2001-12-20 Thread Michael Vinson
Quicktime Pro 5 (about $30) will strip out the 1st frame and let you save as... have fun! --mv webmaster wrote: > Sorry if this is way off topic - but here goes anyway. My Dab, God bles > him, has had all of his 8mm movies converted to mpgs. There's nearly 400 > of them ! For a sort of xmas pre

OT: SQL SERVER 7 FOR SALE

2001-12-20 Thread Joseph DeVore
Sorry for the OT. But I just bought MSSQL server 2000 and I want to sell my MSSQL server 7 10 cal for like half price. Any takers? Any offers? Joseph DeVore VeloxWeb Technologies __ Dedicated Windows 2000 Server PIII 800 /

debug udf

2001-12-20 Thread Jon Hall
My first attempt at a UDF, and it's a pretty cool one imo so I thought I'd share :). It's a cfdump type script that works in a cfscript block, but the nice thing is that the debug windows are draggable. So doing a dump wont mess up your display anymore. You can just move the debug window around...

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Keen
I had always followed the same practice as you until I saw this done in an CFDJ article and thought it was a pretty slick way to a handle the whole login process. Is there any reason that anyone has about why it should not be done this way? -Original Message- From: Tyler M. Fitch [mailto:

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Tyler M. Fitch
Ahh, Yeah I understand that. The only hit against that would be having the HTML code in your App.cfm. I do not know what the majority opinion of the CF developers, but we do not tend to have any HTML in the App.cfm - just define our vars - datasource, image paths, upload locations etc. Okay, g

RE: Survey

2001-12-20 Thread Ben Forta
:-) Next time. Right now I am more interested in versions of Windows than Windows versus other platforms. Plus, the Windows versus Unix is easier for MM to know - they can look at sales. -Original Message- From: Sicular, Alexander [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20,

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Keen
Tyler No I think you misunderstood what I said. There would be no login.cfm . the code is in the application.cfm You check for a session.userid, if it does not exist you then check for the existence of the form.login (the login form code is actually contained in the application.cfm). If th

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Tyler M. Fitch
That won't work out because if that code is in the Application.cfm it will produce an endless loop. The session isn't defined so go to login.cfm - when login.cfm loads it also loads the Application.cfm - the session isn't defined so go to the login.cfm - and so on. HTH, t **

RE: Survey

2001-12-20 Thread Costas Piliotis
Really? I'm using IIS 5.1 on Windows XP :-) -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 1:08 PM To: CF-Talk Subject: RE: Survey Windows XP running IIS 5 -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent

RE: dateadd problem

2001-12-20 Thread Eric J Hoffman
*sigh* Always helps to have another set, or 1000 sets, of eyes. Thanks! Eric J Hoffman Director of Internet Development Small Dog Design, LLC www.smalldogdesign.com Home of MN Vikings Fans Worldwide! www.purplepride.org -Original Message- From: Tyler M. Fitch [mailto:[EMAIL PROTECTED]

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Keen
Is the code below from the application.cfm? If so instead of using a cflocation why not just put the login logic as part of the application.cfm? If the session.userid does not exist the login logic is executed and if it exist the login logic is ignored. -Original Message- From: Jim McAte

RE: dateadd problem

2001-12-20 Thread Tyler M. Fitch
You'll want to put quotes "d" around the d. It's looking at d as a varialble without them. t ** Tyler M. Fitch Certified Advanced ColdFusion 5 Developer ISITE Design, Inc. 615 SW Broadway Ste. 200 Portland, OR 97205 503.221.9

OT:Formatting question

2001-12-20 Thread Douglas Brown
Sorry for the OT folks. I am inserting from a textarea in htmlCodeFormat() and have 2 questions. 1. Once I insert and then display the output ignores the style of the font and displays it like helvetica or something, instead of the fontI have specified. Is it something to do with the ? How ca

dateadd problem

2001-12-20 Thread Eric J Hoffman
ok, what obvious deal have I missed? #finaldate# I get an error resolving "d" it says...trying to find the datee two days from today and delete everything from the database later from that date back. Eric J Hoffman Director of Internet Development Small Dog Design, LLC www.smalldogdesign.co

Re: CFLOCK and CFLOCATION

2001-12-20 Thread Jim McAtee
Looks like that's right. I did a little testing and it appears that the lock is released immediately. That makes life a bit simpler. Thinking about it some more, a cflocation always ends the HTTP request. I imagine that CF may just release any locks set within a given request at the end of the

RE: CFLOCK and CFLOCATION

2001-12-20 Thread Bryan Love
Best guess: I'll bet that the lock is read first, then the variables are resolved, then the lock is released, then everything else happens (the cflocation would happen after the lock is released). +---+ Bryan Love Macromedia Certified Professional

RE: Allaire Partner upgrades...

2001-12-20 Thread John Dowdell
At 6:23 AM 12/20/1, Aaron Rouse wrote: > At least you got a link, we have recieved nothing... Personally I > think MM could care less about the Allaire Partners I'm sorry that something isn't smooth for you, and sorrier still that I don't know those details myself. But have you considered con

CFLOCK and CFLOCATION

2001-12-20 Thread Jim McAtee
Is it OK to do a from within a cflock? As in: Or does this leave the lock in place? If that's so, would the recommended workaround be to copy the session variable to a variables or request scope variable, something like this? Jim _

RE: cfsilent

2001-12-20 Thread David Schmidt
Thank you. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:09 PM To: CF-Talk Subject: Re: cfsilent David Schmidt wrote: > Has anyone noticed any ill effects from using cfsilent? speed reduction ? No. No. Jochem _

Re: How can I get a query's name?

2001-12-20 Thread Jon Hall
Dont let Ray hear you say that, and in a UDF too...heh :) This would work, but I was hoping there would be a cleaner way. jon - Original Message - From: "BILLY CRAVENS" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 6:08 PM Subject: Re: How can I g

RE: IP Address Blocking

2001-12-20 Thread Jim Taylor
-Original Message- From: Tom Forbes [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 2:59 PM To: CF-Talk Subject: Re: IP Address Blocking Ooooh, I wasn't thinking - Thanks! At 05:55 PM 12/20/01, you w

Re: How can I get a query's name?

2001-12-20 Thread Jennifer Larkin
You could either pass it as an argument (perhaps an optional argument) or test for a variable containing the name in the calling page. Since you will know the name of the query in the calling page, this shouldn't be a problem. At 05:38 PM 12/20/01 -0500, you wrote: >Just to explain, I am passi

Re: simple HTML ?

2001-12-20 Thread Douglas Brown
Ok, one more quick hopefully simple one. I have a textarea, and I am inserting it as htmlCodeFormat() What I want to do that I have not figure d out is 2 things 1. When someone types in a url into the textarea, I want it to display as a link and the same thing with an email address. 2. When I

Re: How can I get a query's name?

2001-12-20 Thread BILLY CRAVENS
Why not change your UDF to take the name of the query as a string, and when referencing your query, use evaluate(). --- Billy Cravens - Original Message - From: "Jon Hall" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 4:38 PM Subject: Re: How can

Re: cfsilent

2001-12-20 Thread Jochem van Dieten
David Schmidt wrote: > Has anyone noticed any ill effects from using cfsilent? speed reduction? No. No. Jochem __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activati

Re: Survey

2001-12-20 Thread Jochem van Dieten
Ben Forta wrote: > Hi all, need your help. I am trying to find out which versions of Windows > folks are running CF on. I need to know about all installations (not just > production servers) - I want to know about development machines, laptops > used for demos, testing and qa boxes, clusters mach

Re: simple HTML ?

2001-12-20 Thread BILLY CRAVENS
I like using "#" instead, since it keeps the browser from going to somewhere non-existent for those that have JS disabled. Plus, it's shorter to type. :-) --- Billy Cravens - Original Message - From: "Garza, Jeff" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, Dec

Re: IP Address Blocking

2001-12-20 Thread Tom Forbes
Ooooh, I wasn't thinking - Thanks! At 05:55 PM 12/20/01, you wrote: > >You are not allowed to view this page! > > > >HTH, > >Howie > >- Original Message - >From: "Tom Forbes" <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent: Thursday, December 20, 2001 5:49 PM >

RE: simple HTML ?

2001-12-20 Thread Garza, Jeff
You could replace the href="javascript:void();" with a href="javascript://" This should take care of it. I noticed in another post (to another group) that not all browsers recognize the void statement. You might also try putting a zero in the parentheses "(0)". Sorry about the bad function. Je

Re: IP Address Blocking

2001-12-20 Thread Howie Hamlin
You are not allowed to view this page! HTH, Howie - Original Message - From: "Tom Forbes" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 5:49 PM Subject: IP Address Blocking > I am unable to learn through any of my CF books if it is po

IP Address Blocking

2001-12-20 Thread Tom Forbes
I am unable to learn through any of my CF books if it is possible to block a specific IP address from viewing a .cfm page. Has anyone out there either done this before, or could possibly point me in the right direction? Happy Holidays! Tom *

Re: simple HTML ?

2001-12-20 Thread BILLY CRAVENS
change the javascript:void() to # (be sure to escape it as necessary) --- Billy Cravens - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 4:51 PM Subject: Re: simple HTML ? > I tried your code, but get an

Re: OT: simple HTML ?

2001-12-20 Thread Alex
javascript submit On Thu, 20 Dec 2001, Douglas Brown wrote: > I want to pass the values of some hidden fields, but I am not using a > submit button. I am using a text link. How would I pass the form and > hidden fields? > > > Thanks > >

OT: MPG Display

2001-12-20 Thread webmaster
Sorry if this is way off topic - but here goes anyway. My Dab, God bles him, has had all of his 8mm movies converted to mpgs. There's nearly 400 of them ! For a sort of xmas present I was going to put them up on a site for him. I did a simple cfdirectory query to list all of the mpgs and then

Re: simple HTML ?

2001-12-20 Thread Douglas Brown
I tried your code, but get an error in the javascript:void(); It seems li ke it wants something between the () or something Doug - Original Message - From: "Garza, Jeff" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 2:14 PM Subject: RE: simple H

Re: How can I get a query's name?

2001-12-20 Thread Jon Hall
Just to explain, I am passing a query to a UDF, not the name of the query. Since in passing the query as a parameter to the UDF, the reference to the query gets named as my parameter. In my UDF I am outputing the query using the queryname[column][row] notaion. For a certain part of code I would li

RE: How can I get a query's name?

2001-12-20 Thread Gregory Harris
Well, granted that a query name is the defining key for everything else about a query for example: query.recordcount query.thisfield etc... I don't think that there is a higher level field that give out the name of queries that are running such as query.listofqueriesthathave run. A query name

RE: simple HTML ?

2001-12-20 Thread Garza, Jeff
mylink Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:20 PM To: CF-Talk Subject: OT: simple HTML ? I want to pa

RE: simple HTML ?

2001-12-20 Thread Tyler M. Fitch
Use javascript. Change it below to match your DOM and you'll be good to go. Your text link Cheers, t ** Tyler M. Fitch Certified Advanced ColdFusi

OT: simple HTML ?

2001-12-20 Thread Douglas Brown
I want to pass the values of some hidden fields, but I am not using a submit button. I am using a text link. How would I pass the form and hidden fields? Thanks __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB R

Re: Source Control CVS

2001-12-20 Thread Alex
wincvs is the client. I am not so sure about the stability of CVS running as a server on NT. If all the programmers are on the same network you can map drives to a shared directory and use it as your source repository. CookBook => http://cvsbook.red-bean.com/ On Thu, 20 Dec 2001, David Brown w

RE: Returning IDs off a query...

2001-12-20 Thread Tyler M. Fitch
If you have no triggers being fired by your table on inserts then the SELECT @@IDENTITY will work just fine. You don't have to wrap it in either. Once a CFQUERY is executed in a page the connection is left open for more DB actions until the page is done processing, since it's a single connectio

Source Control CVS

2001-12-20 Thread David Brown
Ok, I have found that the only mac ver of VSS is 499.00. I think I will take a look at CVSnt. But after reading and reading I have not yet found a step by step instruction on how to install CVSnt server and configure the WINcvs client. Or is WINcvs a client? Could someone point me to a "cook b

Re: Survey

2001-12-20 Thread Dave Hannum
Ben, Do you want to include the Single User edition that comes with Studio? Dave - Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 3:45 PM Subject: Survey Hi all, need your help. I am trying to find out whic

Re: Returning IDs off a query...

2001-12-20 Thread corrigan
I always use SELECT MAX(id) FROM tbl_name after the insert. I do wrap it in cftransaction though just in case. That way, I can be confident that the last entry was mine and not someone else that submitted at the same time. HTH Michael Corrigan Programmer Endora Digital Solutions www

How can I get a query's name?

2001-12-20 Thread Jon Hall
Here is a good one. Is it possible to retrieve a queries name from the query itself? CF obviously knows lots of things about the query, since it spits out the queryname and the sql in the debug output. Is this stuff exposed in any way? Am I having a brainfart? This stuff should be available... j

RE: Survey

2001-12-20 Thread Adkins, Randy
Windows XP running IIS 5 -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:46 PM To: CF-Talk Subject: Survey Hi all, need your help. I am trying to find out which versions of Windows folks are running CF on. I need to know about all insta

RE: Survey

2001-12-20 Thread Sicular, Alexander
Noller is gonna be upset if ya don't put down unix/linux. Alexander Sicular Chief Technology Architect Neurological Institute of New York Columbia University as867 [at] columbia {dot} edu |-Original Message- |From: Ben Forta [mailto:[EMAIL PROTECTED]] |Sent: Thursday, December 20, 2001

RE: cfsilent

2001-12-20 Thread Joseph DeVore
I use CFSILENT all the time since it seriously suppresses whitespace. I personally have not seen any noticeable time difference, just cleaner code. If you hear otherwise please forward me the message - I'm interested in knowing. Thank you, Joseph DeVore VeloxWeb Technologies -Original Me

Re: Ad Servers Down

2001-12-20 Thread Jim McAtee
Probably a DNS resolver issue on your machine (or, if you notice this on more than one machine on network, possibly with the DNS server you use). Oddly enough, this just happened on my system with regard to _my_ ad server. I had to reboot my workstation to see the ads again. Usually you can clear

Re: domain registration problems

2001-12-20 Thread Lewis Sellers
On Thu, 20 Dec 2001 15:26:53 -0500, "Dan Phillips" <[EMAIL PROTECTED]> wrote: >Hrmmm...that is tricky then. I would contact Netsol (internic) and >see if they could help you out a bit. If I understand correctly, they do >have ultimate control over domains even if they did not sell them to

Survey

2001-12-20 Thread Ben Forta
Hi all, need your help. I am trying to find out which versions of Windows folks are running CF on. I need to know about all installations (not just production servers) - I want to know about development machines, laptops used for demos, testing and qa boxes, clusters machines, backup servers, ever

RE: Returning IDs off a query...

2001-12-20 Thread Garza, Jeff
If you are using sql server try this... SET NOCOUNT ON INSERT INTO [yourtable](field1, field2) VALUES ('text', 'text') SELECT @@Identity AS newID SET NOCOUNT OFF Should return the ID as #newID# /* This works on SQL Server 2000 */ HTH, Jeff Garza Lead Developer/Webmaster Spectrum Astro,

Re: ORDER BY (SQL Server)

2001-12-20 Thread ccook22
Or cast/convert the character as numeric/decimal so you dont have to ch ange table structure. CC jacob

Re: RE: domain registration problems

2001-12-20 Thread net_man
I think you are right, they are the domain police and if the registrar is no longer in business another registrar should have taken over their domains or they whould revert to Netsol. Thanks, /Robert [EMAIL PROTECTED] wrote: > Hrmmm...that is tricky then. I would contact Netsol (intern

Re: domain registration problems

2001-12-20 Thread Dave Hannum
Call the TLD Registrar (company the domain is registered with) and have t hem explain their policy in a case like this. They all have a procedure to handle this. Dave - Original Message - From: "Kris Pilles" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December

RE: domain registration problems

2001-12-20 Thread Larry Juncker
If you go to Network Solutions, they have form letter info you can download and have the Owner of the domain name (your client) send in on their own letterhead with the Presidents signature and you can get this done. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Th

RE: domain registration problems

2001-12-20 Thread Dan Phillips
Hrmmm...that is tricky then. I would contact Netsol (internic) and see if they could help you out a bit. If I understand correctly, they do have ultimate control over domains even if they did not sell them to you. Someone chime in if I'm wrong. Dan -Original Message- From: Kris P

Returning IDs off a query...

2001-12-20 Thread Tyler Silcox
I've been saving this question for a rainy day, and while it's not rainy, it could be getting a little stormy...what is the best way to return a freshly submitted ID from a cfquery? Should I use a getMax SQL function with cftransaction tag pair around the insert and select queries or should I ret

Re: Allaire Partner upgrades...

2001-12-20 Thread Bryan Stevenson
yup...we got it too..no problem...but I would love to get Studio 5 ;-) Bryan Stevenson VP & Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com

RE: domain registration problems

2001-12-20 Thread Kris Pilles
The registrar is the defunct party. Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:18 PM To: CF-Talk

RE: domain registration problems

2001-12-20 Thread Dan Phillips
Contact the registrar and find out if they can do a fax authorization. This may take just a little longer but it should work. Dan Phillips CFXHosting.com -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:14 PM To: CF-Talk Subject: OT: dom

OT: domain registration problems

2001-12-20 Thread Kris Pilles
Heres my situation: I just got handed a new website to manage. S... I want to transfer the site to our saervers so I looked up the whois on the name and it came back with a company that is no longer in operation. what I don't know how to do is to change the name servers of this domain wit

RE: Visual Source Safe

2001-12-20 Thread Zac Belado
> Is there a client for VSS for mac's? Yup. I beleive that its only version 5 so you need to create a version 5 DB to accommodate that user http://www.metrowerks.com/desktop/MWVSS/ __ Get Your Own Dedicated Windows 2000 Server

Ad Servers Down

2001-12-20 Thread Dave Hannum
Has anybody noticed that doubleclick and other ad servers are down today? Network problem or is there something somebody has heard? Or is it a content provider like Akami that is down, because I've noticed that Yahoo, CNN and others have images that are missing. Dave __

Re: ORDER BY (SQL Server)

2001-12-20 Thread Jacob
Use decimal or numeric for the data type. At 09:34 AM 12/20/2001 -0500, you wrote: >I have noticed when using an ORDER BY clause that my list sorts on first >digit of a number and not the whole number. Does the data type definition in >my database have any impact on the sort? > >Sorts like this

Re: cfsilent

2001-12-20 Thread Jeffry Houser
According to common knowledge, It is believed to be a fairly inefficient tag. However, common knowledge is not always correct and I cannot speak from experience. As a point of reference, it is also 'common knowledge' that using cfsetting (with enableCfOutputOnly = "yes") to suppress whit

RE: Inserting a Textfile into a DB

2001-12-20 Thread Adkins, Randy
Use CFFILE to read the file into a variable And use the QUERY INSERT function to put the Contents of the variable into the memo field. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 2:59 PM To: CF-Talk Subject: Inserting a Textfile int

RE: cfhhttp

2001-12-20 Thread Jerry Johnson
To answer your question about the 225 line limit, I have some legacy code reading in RTF files, some of which are 800K+, and it is handling it fine. Slow as heck, though. like 50 seconds or so. I am replaceing it with Perl as I go. Jerry Johnson >>> [EMAIL PROTECTED] 12/20/01 02:17PM >>> her

Inserting a Textfile into a DB

2001-12-20 Thread Kris Pilles
Can anyone tell me how to insert a text file into a memo field in an access db? __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http:

OT: Visual Source Safe

2001-12-20 Thread David Brown
We currently use VSS for source control and it works well with CF. But we also now need to include a mac user into the source control. Is there a client for VSS for mac's? __ Why Share? Dedicated Win 2000 Server · PIII 800 / 2

cfsilent

2001-12-20 Thread David Schmidt
Has anyone noticed any ill effects from using cfsilent? speed reduction? Thanks, __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http:/

OT: Oracle OCP DBA study guides

2001-12-20 Thread Kris Pilles
Any oracle people out there that can suggest a good source for studying for my sql/pl-sql exam? brain dumps etc... __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activatio

Re: SQL Question

2001-12-20 Thread corrigan
It looks like you need to add TravH_ID to the TravD table. That way you have the association between the header and its details: TravD_IDTravH_ID 11 21 31 etc. Then you can get it all with TravH_ID to include OP_ID HTH Michael

Studio subscr upgrade MIA. MACR?

2001-12-20 Thread Matt Robertson
Does anyone know who I can contact at Macromedia to ask about the status of my Studio subscription upgrade to 5.0? I still haven't heard or seen anything. Thx, --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com __ De

Re: single threaded sessions time out.

2001-12-20 Thread Chris Norloff
These should help: ColdFusion Server 4.5 and higher: "Unable to acquire lock for single thread ed sessions within timeout period" Error Occurs http://allaire.com/Handlers/index.cfm?ID=22317&Method=Full ColdFusion Timeouts and Unresponsive Requests http://allaire.com/handlers/index.cfm?ID=21641&M

Re: Disable form field based on select box

2001-12-20 Thread Sam Farmer
Another solution is to use a combination of onFocus=this.blur() or take the focus elsewhere with a function. Will be cross browser more than the nicer, easier disabled feature (IE only?). Thanks, Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer [EMAIL PROTECTED] INTE

Re: Reading header variables in Cold Fusion

2001-12-20 Thread BILLY CRAVENS
Nevermind - I'm wrong. Look at Joseph DeVore's post. :-) --- Billy Cravens - Original Message - From: "BILLY CRAVENS" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 1:21 PM Subject: Re: Reading header variables in Cold Fusion > Look at this fu

RE: cfhhttp

2001-12-20 Thread Joseph DeVore
What does your CFHTTP code look like? What does the file that you are fetching look like? -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 11:17 AM To: CF-Talk Subject: RE: cfhhttp heres the link to my entire text file: http://webmaste

Re: Disable form field based on select box

2001-12-20 Thread BILLY CRAVENS
In some browsers, you can set a text field to readonly. However, for a version that is cross-browser, I would look at hiding/showing layers based on what the value of the select box. --- Billy Cravens - Original Message - From: "Paul Ihrig" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROT

RE: Reading header variables in Cold Fusion

2001-12-20 Thread Joseph DeVore
If you want to read the raw headers, you can use cfhttp. If your header is a simple value you can output it like so: #cfhttp.responseHeader[your_header_key]# Otherwise loop over the key array: #x# - #key[x]# In regards to your question, Is CFHTTP specifically used for reading text

Re: Reading header variables in Cold Fusion

2001-12-20 Thread BILLY CRAVENS
Look at this function: GetHttpRequestData() ---Billy Cravens - Original Message - From: "Alan Walker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 20, 2001 1:10 PM Subject: Reading header variables in Cold Fusion > Hello All, > > I am developing an appli

RE: cfhhttp

2001-12-20 Thread Kris Pilles
heres the link to my entire text file: http://webmaster.wsboces.org/test.cfm This doesn't work. Now, if I reduce the number of links to 225 it will work? I checker the 226th line for anything that would cause it to error and i also moved the lines around and it still appears to always break af

Reading header variables in Cold Fusion

2001-12-20 Thread Alan Walker
Hello All, I am developing an application that requires variables passed from an existing system. The existing system is behind a firewall so I am unable to write an LDAP query to get to the information. The have informed me that they can send the information needed via a set of header variabl

RE: cfhhttp

2001-12-20 Thread Larry Juncker
Be sure if it is a large file that you include ?RequestTimeout=500 or more in order to not let CF time you out while downloading the file. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 1:00 PM To: CF-Talk Subject: RE: cfhhttp Ive bee

single threaded sessions time out.

2001-12-20 Thread Mark W. Breneman
Riddle me this... Riddle me that Why do I get a single threaded sessions time out error from time to time? And then immediately a RequestTimeout from the same user? We have single threaded sessions enabled in CF admin. All of our new code this correctly locked, but we still have some old co

RE: cfhhttp

2001-12-20 Thread Kris Pilles
Ive been playing with the cfhttp for awhiel and it seems that I cannot process a text fiel with more then 225 lines in it? Has anyone else experienced this??? I guess it doesn't mater how many txt files I have I would lust prefer to just do it in one file??? Kris Pilles Website Manager Western

Re: cfhhttp

2001-12-20 Thread Jerry Johnson
Also be aware of the load time - as a timeout will kill the load. Make sure you allow plenty of time in the requestTimeout. Jerry Johnson >>> [EMAIL PROTECTED] 12/20/01 01:31PM >>> There's definitely a 'practical' limit, since cfhttp (to the best of my knowledge), like a cffile read, works wit

SQL Question

2001-12-20 Thread Gonzo Rock
Given 3 tables: Table Operations(Op) Op_ID, Op_Name,... and Table TravelerHEADER(TravH) TravH_ID, TravName, Part_ID,... and Table TravelerDetail(TravD) TravD_ID, Op_ID, TravOrder,... How can I retrieve the OP RecordSet associated with the subset of TravD records given a single TravH_ID IE:

RE: Disable form field based on select box

2001-12-20 Thread Guy McDowell
Also, check the spelling when you do this. In your initial efforts you had disabled spelled 'diasabled'. Happens to me more than I care to admit. ;-) Guy J. McDowell [EMAIL PROTECTED] http://www.guymcdowell.com >From: Bryan Love <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <

Re: Stressing SQL server

2001-12-20 Thread Neil H.
I can't find anything that works. I don't even need something specific for SQL. I just need a CPU / Memory basher? Any ideas? Thanks, Neil - Original Message - From: "Neil H." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 18, 2001 10:25 PM Subject: Re:

RE: Disable form field based on select box

2001-12-20 Thread Bryan Love
You'll need this JS function at the top of your page... function txtDisable( theForm ){ cBox = theForm.Contract_Type; if( cBox.options[cBox.selectedIndex].value == "Open Hourly" ) theForm.Contract_Amount.disabled = true; else theForm.Contra

RE: Disable form field based on select box

2001-12-20 Thread Paul Ihrig
i was able to do this onChange="MM_changeProp('Contract_Amount','','disabled','INPUT/TEXT')" but not sure how to make it conditional on the cfif. -paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 1:27 PM To: CF-Talk Subject: Disable

Re: cfhhttp

2001-12-20 Thread Jim McAtee
There's definitely a 'practical' limit, since cfhttp (to the best of my knowledge), like a cffile read, works within RAM. It's not difficult to totally swamp, or even crash a server using either tag if the file is big enough. Generally, it's in the megabytes. Depending on the server and the CPU

  1   2   >