Re: Grrr ##'s agin

2000-04-07 Thread Michael Imhoff
I think that this should work for you and no pound signs :-) Good luck with it, -Michael Michael Imhoff www.omnicypher.com icq: 10495667 [EMAIL PROTECTED] (home) (320) 255-4447 (home) [EMAIL PROTECTED] (cell) (612) 247-8159 (cell) A

Re: Need Advice - SQL 7.0 Identity vVS Max(ID)

2000-04-07 Thread Paul Hastings
> I had several occurrences of a problem when using the "Identity" sql server sp3 or sp4 should have fixed most of these. also you might have made use of an sp that does a DBCC against tables w/identity columns at startup (most of the problems happen when sql server was shut down badly). > Does

MSSQL to Oracle

2000-04-07 Thread aslam bajaria
How do you transfer data and sql queries from mssql to oracle. Is there a easy way. Appreciate. A. Bajaria __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com

RE: Speed of CFMAIL

2000-04-07 Thread Len Conrad
> As the author of CFX_MAIL, I think I'll use that rather than ASPQmail, though :). oops, I thought your name rang a bell! (so why were we ever talking about CFMAIL??) >LSMTP costs a lot, but it runs on a minimal hardware platform. postfix costs nothing, and it runs on a minimal hardware pl

Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
Hair torn out - ready to kill... it must be a normal day at work. So does anyone else have problems using hidden form fields in Netscape? Why won't they pass the values to the next template? Why? Why? Why??? Taz -- Ar

Re: Netscape! Hidden fields?

2000-04-07 Thread Howie Hamlin
I've never seen a problem like that. How about some sample code for the form and the action page? Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 === Please vote for iMS in the Most Innovative category here: ***

RE: Security holes revisited

2000-04-07 Thread lsellers
> operations, such as man-in-the-middle attacks, but denial of > service attacks > don't require anything other than the attacker have more > bandwidth than the > target. > > Dave Watts, CTO, Fig Leaf Software True. The particular high-publicity attacks of a month or so back though used a techniq

Re: Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
This is the resolved source in the Nutscrape browser, the values are from 2 CF variables but as you can see they are resolved. The receiving template is pretty much irrelavent because all Im trying to do for debug is test the presence of the tw

Re: Netscape! Hidden fields?

2000-04-07 Thread Justin MacCarthy
You sure you have the closing tag - Original Message - From: Chris Tazewell <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 07, 2000 10:23 AM Subject: Re: Netscape! Hidden fields? > This is the resolved source in the Nutscrape browser, the values are from 2 > CF v

Re: Netscape! Hidden fields?

2000-04-07 Thread James Sleeman
---Reply to mail from Chris Tazewell about Netscape! Hidden fields? > This is the resolved source in the Nutscrape browser, the values are from 2 > CF variables but as you can see they are resolved. > > TARGET="body" METHOD=POST> > > > VALUE="-2

Re: Speed of CFMAIL

2000-04-07 Thread Len Conrad
>On a good day I can have my box spit out 2.000 mails per minute, That's just queued to disk? or delivered from queue to smtp destination? Howie needs to how many mails / hour delivered OUT OF THE CF BOX (to his next hop MTA). 30 ms/msg is pretty darn good, anyway. 3,000,000 / day ... queue

Re: Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
> You sure you have the closing tag yes -- 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

Re: Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
> A couple of ideas... > No closing form tag ? Closing tag, check! > Hidden fields on a different layer ? Same layer, check! > Tested it without setting target ? have to have a target because it's in a frame. but Ill have a crack at that to find out.. Ill post back if it changes

RE: Wrapping Text in CFMAIL

2000-04-07 Thread Terry Riley
In-Reply-To: <[EMAIL PROTECTED]> Found the CFX_Wrap tag in the Allaire Gallery - does exactly what I need to produce wrapped text in the email message. Cheers Terry -- Archives: http://www.eGroups.com/list/cf-talk To U

Re: Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
> Tested it without setting target ? Just tried it - no luck. Taz -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or se

Alphabetical Order

2000-04-07 Thread aslam bajaria
I have a drop down list that is filled in with the data from a query. Is there a way to alphabetically arrange the list. It looks really ugly and difficult to read when it is not in the alphabetical order. Is there a built in function in CF for that. Appreciate. AB _

RE: Netscape! Hidden fields?

2000-04-07 Thread Dan G. Switzer, II
Chris, Make sure your form has an ending tag. Netscape really has problems when this isn't present. IE will still pass the form's content though... -Dan ++---+ | name | Dan G. Switzer, II| |company | PengoWorks.com| |www | http://www.pen

RE: Alphabetical Order

2000-04-07 Thread Dan G. Switzer, II
Aslam, If you have control of your query, then use the ORDER BY clause to sort your data in a specific manor-this is the best approach. Let the database do what it does best. For example: SELECT ServiceID, Description FROM Services ORDER BY Description #Description#

RE: Alphabetical Order

2000-04-07 Thread Stephen Moretti
Aslam, When you when you query the database put an ORDER BY on the end of the SQL statement. e.g. SELECT ID,Description FROM tblDropDown ORDER BY Description Hope that helps. Regards Stephen > -Original Message- > From: aslam bajaria [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 05

Re: Netscape! Hidden fields?

2000-04-07 Thread Justin MacCarthy
Ok Chris, I thing we need to see all that code !!! -- 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 [EM

Re: Netscape! Hidden fields?

2000-04-07 Thread Chris Tazewell
So. ... please shoot me in the head. I was just pasting the code into an email when all at once I was hit by a startling revelation! I AM STUPID!!! My template is a bunch of dynamically created drop downs, where depending on what's clicked in one - another is populated via a series of

Re: Speed of CFMAIL

2000-04-07 Thread Dirk De Bock
To the disk. I missed the bit about getting the message to the client. So first the messages are queued locally, then I deliver them to a smart host at my provider, this will be typically at 150 to 300 msg per minute, obviously depending on numerous factors such as local server load, remote serve

Re: Using CFX_Excel

2000-04-07 Thread Dave Hannum
Hi Fred, I think we have solved the problem. First, I put the tag in a CFLOCK to prevent attempts at multi-threading. Then, there was another problem. I was not aware that our SysAdmin had made the https directory a little different structure than the http directory. There were some added c

RE: CF Quiz

2000-04-07 Thread Sean Daniels
> Anybody else have trouble with the quiz? No, I don't mean in knowing the > answers (grin), I mean in taking the test. There's a time lag of > at least 2 > minutes between each question. I'm on a 28.8 dial-up connection, > but unless > each screen is a massive graphic I don't understand why it's

RE: Are 4.5 mail spooler woes fixed in 4.5.1?

2000-04-07 Thread Sean Daniels
> Does anybody have any advice? I've just downloaded the 4.5.1 update but > I can't find the release notes anywhere so I can't tell if 4.5.1 fixes > this or not. I was having the same spooler problems as yourself and they seem to have disappeared since I upgraded to whatever the latest release c

RE: Any known stability issues with CF Server 4.5 on NT?

2000-04-07 Thread Sean Daniels
> Is there a handy URL for getting the 4.5.1 update? I poked around > Allaire's site and came up empty. http://beta.allaire.com - Sean Sean Daniels Manager, Engineering DealStream.com [EMAIL PROTECTED] http://www.dealstream.com tel: 20

CFTREE problem

2000-04-07 Thread Day Larry
This is a strange one. I have an application that has been running on the client server for months with no problem. Then the client decided to upgrade the CF server from 3 to 4.5. Of course, problems popped up, but most were easily fixed. The one I can't figure out is the CFTREE. On one of the bra

RE: Any known stability issues with CF Server 4.5 on NT?

2000-04-07 Thread Childress, Emily
http://commerce.allaire.com/Ecommerce/Download/Download.cfm?DownloadPage=Dis playUpdateLinks.cfm You can reach it by logging in as a return customer and clicking the Product Update links -e -Original Message- From: Sean Daniels [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 8:55

RE: Retrieving Unique ID in from sql table.

2000-04-07 Thread Steve Weiner
Thanks. Unfortunately the group must have been lagged so your response came 10 hours after I started pulling my hair out!! :) But after some intense research through archives of this newsgroup I passed by someone else who had mentioned the trigger method. That seemed to do the job. Being new

CFOBJECT error, but not using tag

2000-04-07 Thread Thompson, Ryan K (James Tower)
Has anyone ever seen this problem. We are running CF Pro NT 4.0. We are getting this error but aren't using any CFOBJECT tags. ERROR MESSAGE: Error trying to create object specified in the tag. COM error 0x80040154. Class not registered Ryan Thompson James Tower Media Design Websites, Mul

Download 4.5.1?

2000-04-07 Thread Kevin Hemenway
Can anyone download the CFStudio 4.5.1 eval from Allaire? The link isn't there anymore when I check... Kevin Hemenway -- - Total Net NH, LLC EMAIL: <[EMAIL PROTECTED]> 15 Pleasant St., Suite 11 WEBSITE:

&

2000-04-07 Thread Jim Taylor
I have 1 database on a mssql , 2 tables, i need to insert user_id and password in dbo.usere and the user details in dbo.userdetails with one how can i do this with one & . -- Archives: http://www.eGroups.com/list/cf-

RE: &

2000-04-07 Thread Olive, Christopher M Mr USACHPPM
you can't, not without a stored procedure. you might want to look into doing it in two s, wrapped in a CFTRANSACTION. IE, INSERT username, password... INSERT userdetails this way if one blows up, the entire transaction gets rolled back, and you avoid ugly data consistency problems.

CFTREE problem - resolved:error in database

2000-04-07 Thread Day Larry
Sorry folks. Someone hardcoded the localhost path into a database table. Larry -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk

Re: Administrator PW

2000-04-07 Thread Gordon Burns
At 13:07 06/04/00 -0700 Erika Foster said > > >How do you retrieve the Admin password for CF Server? > >My client has completely forgot what he set up his password as. Do we need >to completely uninstall and re-install? > > > >Thanks, > There is a registry entry which you can change from 1 t

Highlighting single item in SELECT

2000-04-07 Thread Thomas Soraoka
Anyone know how to change the color of a single item in a SELECT tag? For example, #GetStuff.name# #GetStuff.name#

RE: Special character question:

2000-04-07 Thread Ye Wang
= TAB (horizontal tab) Bookmark this: http://www.asciitable.com/ Or, you can always try this on any special character: #Chr(9)# Ye -Original Message- From: Pecora, James [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 2:49 PM To: CF

RE: &

2000-04-07 Thread Jim Taylor
how about something like INSERT INTO Users,UserDetails (Users.UserID,Users.Password,UserDetails.FirstName,UserDetails.LastName,User Details.Company,UserDetails.Address1,Address2,UserDetails.City,UserDetails.S tate,UserDetails.Country,UserDetails.Zip,UserDetails.PhoneHome,UserDetails.P honeWor

Re: Using CFX_Excel

2000-04-07 Thread Fred Sanders
Your right I haven't used the tag. Depending on how you want the layout to look though, what can be easier or have less overhead than having CF output query results to an HTML file and simply saving it with *.xls on the end instead of *.htm or *.html You obviously didn't try it, either. :) Do wh

RE: &

2000-04-07 Thread mherbene
Well, actually you can cheat with MS SQL Server, like this: set nocount on INSERT username, password... INSERT userdetails ... set nocount off "nocount on" supresses the message that SQL server sends to the client saying "query complete"; this tricks CF into allowing the second query (or

CFENCODE???

2000-04-07 Thread Bill Killillay
Ok, is there any known bugs with CFENCODE.exe which used to be CFCRYPT.exe in CF 4. I have been trying to make it work for an hour now and no luck. I even tried copying the exe file into the dir of the files I want to encrypt and ran it from there, still no luck. I know my syntax is correct, at

HELP Getting Identity Field Accurately

2000-04-07 Thread Scott Becker
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFA09D.4F0AFC20 Content-Type: text/plain; charset="iso-8859-1" In referring to this article: http://www.defusion.com/articles/i

OT (longish) Tango??

2000-04-07 Thread Dick Applebaum
The item (below) was included in a posting to another UG... ...the author is an employee of Pervasive (Developer of Tango) It's claims caught my attention. Anyone have any thoughts/experiences with Tango vs CF. Dick >I am a senior software engineer for Pervasive Software (the maker of Tango

RE: Storage Fees

2000-04-07 Thread jstiefel
Store it? Well, a 30gig IDE drive will run you about $250 these days. What are they wanting to do with the data? Are you providing access to it via your internet connection? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 5:50 PM To: [

RE: Highlighting single item in SELECT

2000-04-07 Thread jstiefel
#GetStuff.Name# -Original Message- From: Thomas Soraoka [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 6:22 PM To: CF-Talk (E-mail) Subject: Highlighting single item in SELECT Anyone know how to change the color of a single item in a SELECT tag? For example,

RE: Netscape 6 Eats Microsoft PWS...Story at 11

2000-04-07 Thread Steve Bernard
This is a bit OT but, my impression so far is underwhelming. There are some nice additions, such as the cookie viewer, enhancements to Messenger, and more efficient screen space. Under Win98 I have had it crash on me a couple of times in the 3 days that I have had it installed. Others who are runn

nesting queries??

2000-04-07 Thread joeug
Hello all, I would like to know how you guys are nesting queries? i have to "Nest" multiple queries like --- -- How can i do this? Thanks inadvance Joe -- Archives: http://www.

Expiring Pages in IE

2000-04-07 Thread Eron Cohen
Can anyone tell me if there is a reliable way (such as a meta tag or CFHEADER) that will cause a page not to be cached by the typical 3.0 and above browsers. It needs to work in Netscape and IE. I want the pages to be reloaded automatically from the web server every time the user visits the page

Oracle CLOB Data Type

2000-04-07 Thread YungChih Chen
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFA09F.83953060 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Hi, =A0I can't figu

RE: Indiana time (EST) --> Michigan time (DST)

2000-04-07 Thread Steve Bernard
Well, if I read his post correctly, the server resides in a location that is on EST all year without ever switching to daylight savings time and back again. The client site is on EST but does use daylight savings time. Therefore, once the client site goes to DST he'll need to add an hour so that t

NSlookup on email domains

2000-04-07 Thread Michel Gagnon
Hi! Is there a way that we could get Cold Fusion to do an NSLookup of an e-mail address domain? I was thinking of mabe using the WHOIS query from networksolutions. http://www.networksolutions.com/cgi-bin/whois/whois?STRING=yahoo.com Any ideas? -

vs.

2000-04-07 Thread Jim Taylor
Let me try this again please. Is this the best way to handle a 2 table insert ? INSERT INTO Users (Users.UserID,Users.Password) VALUES ('#Form.UserID#', '#Form.Password#') INSERT INTO Users,UserDetails (UserDetails.FirstName,UserDetails.LastName,UserDetails.Company,Us

RE: CF 4.5.1 update

2000-04-07 Thread Bud
On 4/7/00, Bill Killillay penned: >Where did you find that. Please send link. Thanks. You've just got to go to the allaire download page. Download link is at the top of the pages. If you haven't registered you'll have to do so. Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_

RE: How do I retrieve from this list

2000-04-07 Thread Chris Evans
You can retrieve the part number using Mid function: You can loop through the FIELDNAMES list to get each value and quantity. Depending on what you want to do with these, you could create a structure, or an array, or a query, or whatever. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com

RE: return a response of 301 or 302

2000-04-07 Thread Chris Evans
Roy, CFLOCATION writes a 302 header back to the browser. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Roy Rim [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 7:51 PM To: [EMAIL PROTECTED] Subject: return a response of 301 or 302 Hey guys

RE: Parsing NNTP dates?

2000-04-07 Thread Chris Evans
Reuben, Where are you getting the dates from? Fuseware's CFX_NNTP handles this automatically. The only way I know to do it would be to break the date into a space delimited list. You would then have to loop through checking values to see what date part it consisted of, and then building a

CFLOOP list="Query.Value" ??

2000-04-07 Thread Todd Ashworth
I have a list of comma seperated numbers in a field in my database. I would like to retrieve this list of numbers, which are primary keys to other tables) and loop through them, running a query for each number(key). Here's what I have: - snip - SELECT emer_ref FROM contact WHER

RE: IE JavaScript problem

2000-04-07 Thread Lomvardias, Christopher
David, Thanks...that was a good idea and solved my problem! Chris -Original Message- From: David Shadovitz [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 1:05 AM To: [EMAIL PROTECTED] Subject: Re: IE JavaScript problem Chris, I'm not sure why you're getting the error (Jeff,

RE: Netscape! Hidden fields?

2000-04-07 Thread Chris Evans
In Netscape, you don't need to rebuild an entire form to associate two select boxes. I have done this several times. What code are using in your JS? Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Chris Tazewell [mailto:[EMAIL PROTECTED]] Sent: Friday,

RE: OT PCAnywhere on Port???

2000-04-07 Thread Marcus
Are my messages not getting through? Or are they encrypted? ·!Š÷¬†Ûiÿü0Áá«¢êlr‰¿–+-ýÇíjY¡Iì¹»®&Þ¾+"¶m§ÿðÃhºÇ¨}û¬Š‰Ü¢oâ×±qù¬‰×›j¹b²Û¡Ü¥ŠËlýÇíjY(®Ç§u©ž²Æ zÚ~Ö¥’·ª¹ë-†‹¬z‡ßºÈ¨Ê&Â+aº{.nÇ+‰·¢žØ^n‡r

RE: Expiring Pages in IE

2000-04-07 Thread Mark Jones
Try these lines of code -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Fri, 07 Apr 2000 15:44 To: Cf-Talk Subject:Expiring Pages in IE Can anyone tell me if there is a reliable way (such as a me

Re: nesting queries??

2000-04-07 Thread Curtis Layton
You could use cfloop instead of the two inner cfoutput tags. HTH, Curt Curtis C. Layton Web Applications Developer Words In Progress, Inc. (410) 667-4986 [EMAIL PROTECTED] http://www.wordsinprogress.com Wu-Tang Alias: 100-Watt Warlock - Original Message - From: <[EMAIL PROTECTED]> To: <

RE: OT (longish) Tango??

2000-04-07 Thread Jim Taylor
Dick did you check the price of this thing OMG!! $ -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 7:28 AM To: [EMAIL PROTECTED] Subject: OT (longish) Tango?? The item (below) was included in a posting to another

RE: HELP Getting Identity Field Accurately

2000-04-07 Thread Dave Watts
> In referring to this article: > http://www.defusion.com/articles/index.cfm?ArticleID=72 > > The method below of inserting a record is not a > reliable way to get the corresponding record id > in Cold Fusion: > > > > > INSERT INTO myTable >... > > > > SELECT MAX(myTable.ID) as

Re: Netscape! Hidden fields?

2000-04-07 Thread Brook Davies
I actually saw a problem like this a year or so ago. This may sound silly, but try moving your hidden field down to the bottom of the form just before the submit button. I know this sounds ridiculous but I actually had this problem and this is what fixed it. Please let me know if this works

Re: Using CFX_Excel

2000-04-07 Thread Dave Hannum
Fred, Well, while it's true that I did not write and HTML file for this app, I have indeed written HTML files before, and I have to say, at least for me, writing the HMTL file is more work. That's just from my experience. I agree 100%+ with your observation to, "Do whatever works for you and

Re: nesting queries??

2000-04-07 Thread B. Cravens
Either use for each query that needs to be nested, or you could include each query as a custom tag. Billy Cravens [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 07, 2000 9:43 AM Subject: nesting queries?? > > Hello all

Re: Using CFX_Excel

2000-04-07 Thread Stephen Garrett
Yes, this works well for visual things. But it does not allow for SpreadSheet kinds of things, like macros, data validation, formulas, named ranges,etc,etc that many people want to have. Steve At 02:57 PM 4/6/2000 -0500, Fred Sanders wrote: >Why bother with the tag. If your wanting to outp

RE: OT (longish) Tango??

2000-04-07 Thread Chris Chambers
CF CAN do this (and has been able to since 4.0 I think)! >Tango >also has the ability, unlike CF, to separate the Tango server from the Web >Server allowing a higher level of security to be implemented by placing a >firewall between Tango and your web server - this is very critical when your >dat

RE: Storage Fees

2000-04-07 Thread Steve Pierce
Gee it sort of depends. Is he planning to bring it over in a U-Haul and boxes or a hard drive. Are you just planning to put the drive on a shelf or is it 4GB of data that he wants to put on the Internet. My guess is no more than $200 a month plus what ever bandwidth he needs. Why $200? Because t

RE: nesting queries??

2000-04-07 Thread Pecora, James
Why do you have to nest them??? If you are looking to loop over the results do this... #query1_info# ---#query2_info# --#query3_info# Ther probably is a more graceful way to handle what your trying to do - but witout more information on what that is... this is th

Re: NSlookup on email domains

2000-04-07 Thread Howie Hamlin
Here's a freeware tag that does MX lookups: http://www.coolfusion.com/CFX_ODSMXLookup.htm HTH, Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 === Please vote for iMS in the Most Innovative category here: *** h

RE: vs.

2000-04-07 Thread Jordon Saardchit
Best way to do it would be in a Stored Procedure, wrapped in a SQL transaction. -J -Original Message- From: Jim Taylor [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 7:56 AM To: Cf-Talk@Houseoffusion. Com Subject: vs. Let me try this again please. Is this the best way to ha

RE: CFLOOP list="Query.Value" ??

2000-04-07 Thread Dave Watts
> I have a list of comma seperated numbers in a field in my > database. I would like to retrieve this list of numbers, > which are primary keys to other tables) and loop through > them, running a query for each number(key). Here's > what I have: > > - snip - > > SELECT emer_ref

Re: Annoying CF Studio 4.5a Interface problems

2000-04-07 Thread William James
Allaire has already stated that CF 4.5a is NOT supported. That's what 4.5.1 is for :) -Will - Original Message - From: "Kent Runyan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 06, 2000 3:05 PM Subject: RE: Annoying CF Studio 4.5a Interface problems > I have anoth

Re: Annoying CF Studio 4.5a Interface problems

2000-04-07 Thread William James
Forgot to mention, this goes for Studio and Server. It's been fixed since 4.5.1 RC1, but now the full versions are available from the Allaire site, so it soundsl ike today is upgrade day for you ;) - Original Message - From: "Kent Runyan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

RE: OT (longish) Tango??

2000-04-07 Thread Cameron Childress
Pick an app server, stick with it, don't second guess yourself. That's all there is to it. Let them argue about who's penis is longer while you build good apps in an environ you are comfy with. Except for when they lie Comments below... -Cameron Cameron Childress

Re: OT (longish) Tango??

2000-04-07 Thread Jennifer
At 07:28 AM 4/7/00 -0700, you wrote: >The item (below) was included in a posting to another UG... > >...the author is an employee of Pervasive (Developer of Tango) > >It's claims caught my attention. > >Anyone have any thoughts/experiences with Tango vs CF. Tango has just gotten support for COM o

RE: OT (longish) Tango??

2000-04-07 Thread Stanislav Maximov
I have experience both in Tango and ColdFusion. As for experienced developer it is, basically, no matter what to choose: Tango or ColdFusion - they are almost the same. Development with Tango may be a little bit faster for beginners, cause it is very 'visual'. One could build template sceleton wit

RE: Storage Fees

2000-04-07 Thread paul smith
At 10:36 AM 4/7/00 -0400, you wrote: >Store it? Well, a 30gig IDE drive will run you about $250 these days. What >are they wanting to do with the data? Are you providing access to it via >your internet connection? FTP access, yes. best, paul PS> BTW, I noticed www.atbackup.com mentioned in yes

RE: CFLOOP list="Query.Value" ??

2000-04-07 Thread Sean Daniels
> - snip - > > SELECT emer_ref FROM contact WHERE contact_id = #URL.sel# > > - snip - > list="qryGetKidsFromParentsID.emer_ref" delimiters=","> > - snip - You need to put #'s around the list="" attribute. Like: Also, WOW! That's a long index name! Don't you g

Re: NSlookup on email domains

2000-04-07 Thread paul smith
There's a tag to do this: cfx_odsmxlookup Forgot where I got it. best, paul At 11:51 AM 4/7/00 -0300, you wrote: >Hi! > >Is there a way that we could get Cold Fusion to >do an NSLookup of an e-mail address domain? > >I was thinking of mabe using the WHOIS query >from networksolutions. > >http:

RE: nesting queries??

2000-04-07 Thread Sean Daniels
> Hello all, > I would like to know how you guys are nesting queries? > i have to "Nest" multiple queries like > > > > > --- > > -- > > > > > How can i do this? > Thanks inadvance You can use loops instead:

ColdFusion and SQL

2000-04-07 Thread aslam bajaria
Is there a way in CF to alter a table and add/remove a column. Appreciate A.B. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- A

RE: NSlookup on email domains

2000-04-07 Thread Pete Freitag
I believe there is a CFX tag that does nsloopup... All you would have to do is strip the characters before and including the @ symbol in the address. ___ Pete Freitag CFDEV.COM Cold Fusion Developer Resources http://www.cfdev.com/ -Original Message

RE: Expiring Pages in IE

2000-04-07 Thread Eron Cohen
Thanks Mark. This does seem to work for Internet Explorer 5, but what can I do for Internet Explorer 3.0 people? As far as I can tell, its not working on that browser. So right now I'm doing these meta tags: Eron -Original Message- From: Mark Jones [mailto:[EMAIL PROTECTED]] Sent:

Most efficeint validation

2000-04-07 Thread Ben Lowndes
Hello, I've just been trying to figure out the most efficent way to check for a passed (form or url) variables pesence and value. The code I've been using is: Request_time is not defined Request_time is defined But is this the best way, it must be a common problem. I also thought about using

Re: vs.

2000-04-07 Thread Bud
On 4/7/00, Jim Taylor penned: >Let me try this again please. > >Is this the best way to handle a 2 table insert ? The main reason to run a cftransaction is if the results from one query are going effect the entry into another. For instance: 1. Someone places and order and the order is written

RE: NSlookup on email domains

2000-04-07 Thread Mike Sheldon
CFX_NSLookup http://www.desertraven.com/codemodules.php It's a Java CFX, so you will need CF 4.5 or CFX_J to run it. Michael J. Sheldon Internet Applications Developer Phone: 480.699.1084 http://www.desertraven.com/ PGP Key Available on Request -Original Message- From: Michel Gagnon [m

CF Developer in utah needed

2000-04-07 Thread George Loch
We are looking for a freelance developer or a CF dev house to help out on a project. If you are interested, Please contact me. Thanks George Loch Stephen Hales Creative -- Archives: http://www.eGroups.com/list/cf-talk

Re: CFLOOP list="Query.Value" ??

2000-04-07 Thread Bud
On 4/7/00, Todd Ashworth penned: >The list="Query.Value" sounds good in theory, but I'm sure I'm doing it way >wrong. Any suggestions? Try using the good ol' pound symbols: Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Devel

CF-Studio Extended Replace

2000-04-07 Thread Andrew C. Davis
CF Studio/Server 4.01 I want to do an extended replace on a folder on my RDS server. I can view the folders and files on the RDS server w/in Studio, but when I go to do the extended replace, the app won't let me browse the folders on the RDS server. It only lets me browse my local hard drive.

OT - SQL 7 to Oracle Data Migration

2000-04-07 Thread Scott Rowe
I'm looking for an easy way to migrate our sql server 7 data to Oracle 8i. Also, I'd love to have something that can connect and visually show the data like SQL 7 can and even possibly create the code to automatically create this database. Is there anything that can do that out there? Scott

Session Variables and Time Outs

2000-04-07 Thread Gregory Weiss
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFA0BE.1DB0FA12 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello everyone,=20 =A

RE: CFLOOP list="Query.Value" ??

2000-04-07 Thread Sean Daniels
> A query column isn't a list. If you want to copy it into a list, use the > ValueList or QuotedValueList functions: > > > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > voice: (202) 797-5496 > fax: (202) 797-5444 I may be wrong on this, but my interpretation of his situation w

Cold Fusion - ASP Together

2000-04-07 Thread Larry Juncker
I am attempting to send information to an ASP page in the form of a [httpparam]. I know absolutely nothing about ASP and am still learning Cold Fusion. I am placing a piece of my code below. Can anyone tell me if there is anything different I have to do to send this info to an ASP page? https

RE: Annoying CF Studio 4.5a Interface problems

2000-04-07 Thread Mack, Chris R
Where are the full versions? The forums only mention RCs still. Chris R. Mack Manager, Internet Strategies Lockheed Martin Technology Services [EMAIL PROTECTED] -Original Message- From: William James [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 1:07 PM To: [EMAIL PROTECTED

Re: CFENCODE???

2000-04-07 Thread pan
From: Bill Killillay <[EMAIL PROTECTED]> > Ok, is there any known bugs with CFENCODE.exe which used to be CFCRYPT.exe > in CF 4. I have been trying to make it work for an hour now and no luck. I > even tried copying the exe file into the dir of the files I want to encrypt > and ran it from ther

RE: Annoying CF Studio 4.5a Interface problems

2000-04-07 Thread Mack, Chris R
Nevermind. It's always nice when Allaire updates the forums to indicate that a new release is out. Chris -Original Message- From: William James [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 1:07 PM To: [EMAIL PROTECTED] Subject: Re: Annoying CF Studio 4.5a Interface problems

CFLoop w/Insert Into??

2000-04-07 Thread Harper, Laura
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFA0C6.7E6C9FC0 Content-Type: text/plain; charset="iso-8859-1" Hello everyone, I have a looping problem that I can't quite get!

  1   2   >