RE: Javascript does not want to change the current location

2002-03-14 Thread Steve Oliver
I may of misunderstood the question, but if you want it to go there in the current frame, why don't you just use a regular link with the target set to _self? _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Ori

RE:

2002-03-14 Thread Steve Oliver
guage="JavaScript" type="text/javascript"> ><!-- > window.history.back(); >//--> > > > >_ >steve oliver >senior internet developer >atnet solutions, inc. >http://www.atnetsolutions.com > > >-Original Message- >

RE:

2002-03-14 Thread Steve Oliver
<!-- window.history.back(); //--> _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:11 AM To: CF-Talk S

RE: Database and Query issues.......YIKES!

2002-03-13 Thread Steve Oliver
You can group within a group by grouping again, like this. Day: #DayOfWeek# Hour: #HourOfDay# #any other variables# Just make sure that you order by what your grouping, or it won't come out as you expect. _ steve oliver senior int

RE: Password retype validation

2002-03-12 Thread Steve Oliver
That would go in the action page. If the passwords don't match you could send them back and repopulate for form or something, with a warning that the passwords didn't match. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsol

RE: Database and Query issues.......YIKES!

2002-03-12 Thread Steve Oliver
If you order by dayofweek in your query, you can group by that column. SELECT * FROM table ORDER BY DayOfWeek Day - #myQuery.DayOfWeek# Any other columns _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com

RE:

2002-03-12 Thread Steve Oliver
Yes. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1:54 PM To: CF-Talk Subject: Re: [Back]  [Close] Within a my

RE: ReplaceList() with a different delimiter?

2002-03-12 Thread Steve Oliver
You know, all that replacelist does is loop, you could do the same thing with a cfloop. Although it would be much simpler if you could just define the delimiter in replacelist. _ steve oliver senior internet developer atnet solutions, inc. http

RE:

2002-03-12 Thread Steve Oliver
onclick="history.back()" Or onclick = "history.go(-1)" _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12,

RE: Forcing Excel Download

2002-03-12 Thread Steve Oliver
urrent location. _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Attley, Simon (CMG-SF) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 12:58 PM To: CF-Talk Subject: Forcing Excel Download

RE: CFFILE - on server only?

2002-03-12 Thread Steve Oliver
ss to (if they have them turned on) are cookies. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 12:19 AM To: CF-Talk Su

RE: popUp Window trouble

2002-03-12 Thread Steve Oliver
the href set in the link. When I use a link to popup a window with the onclick even I usually set the href to "#" or "javascript:void(0)" _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Origina

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
That's what I have netscape for. That's the only thing I like about it, is it's little javascript error log. It catches every javascript error, unlike IE, which sometimes lets them fly on by without doing anything. _________ steve oliver senior internet

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
You don't need to send the form variables back to the "mainwindow". Just submit the form in the child window, process the data there, then close it and reload the main window, you will see the changes there upon reload. _________ steve oliver senior internet

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
Sure, just put a form in the child window, that goes to an action page (in the child window) to update your dbase or whatever. Then at the end of the action page. Include this. opener.location.reload(); wndow.close(); _ steve oliver senior internet developer

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
Only way to name the main window "mainwindow" would be to have a frameset with the frame name set to "mainwindow" _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Ne

RE: Checkbox with mutliple names passed to query needing 1 name

2002-03-11 Thread Steve Oliver
an if/then if you want to check/uncheck them all. _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Brunt, Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 1:55 PM To: CF-Talk

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
indow, you would put: function submitForm(){ opener.document.blah.foo.value = "somevalue"; opener.document.blah.submit(); window.close() } _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- F

RE: CFFILE - on server only?

2002-03-11 Thread Steve Oliver
splay (unless their browser security is set to low) _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 1:33 PM To: CF-Talk Subjec

RE: CFFILE - on server only?

2002-03-11 Thread Steve Oliver
Yes, No, and No. That all involves browser security, the only way to save anything on the clients machine through IE is by them clicking the File>Save in the menu. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
Read my next post :) It's been one of those mornings _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 1:

RE: Alternatives to CFCONTENT

2002-03-11 Thread Steve Oliver
with this. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 1:17 PM To: CF-Talk Subject: Re: Alternatives to CFCONTENT

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
You have to wrap it in cfoutput or it'll try to put that text into the dbase. '#evaluate("FORM.PhoneID" & 1)#' _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- Fr

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
What exactly do you mean by posting back to the page? You run that script in the spawned window, and it sends anything you want back to the parent window, then the window.close() (run in the spawned window) will close the spawned window. _ steve oliver senior internet

RE: Search Engines

2002-03-11 Thread Steve Oliver
with a link on each and every site that you do, and maybe look for some other companies to exchange links with :) _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Gordon Burns [mailto:[

RE: Target back to parent.

2002-03-11 Thread Steve Oliver
You can reference the parent window with "opener" opener.document.formname.fieldname.value="whatever"; window.close(); _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- F

RE: Update multiple rows, doh

2002-03-11 Thread Steve Oliver
One more try, lol SET PhoneNumb='#evaluate("FORM.PhoneNumb" & Emp)#' WHERE tblPhone.EmpResID = '#FORM.EMPLOYEE_ID#' AND tblPhone.PhoneID = '#evaluate("FORM.PhoneID" & Emp)#' _ steve oliver senior internet dev

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
Whoops, should be SET PhoneNumb='evaluate("FORM.PhoneNumb" & #Emp#)' WHERE tblPhone.EmpResID = '#FORM.EMPLOYEE_ID#' AND tblPhone.PhoneID = 'evaluate("FORM.PhoneID" & #Emp#)' _ steve oliver senior internet dev

RE: Update multiple rows

2002-03-11 Thread Steve Oliver
valuate(#FORM.PhoneID# & #Emp#)' _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 12:07 PM To: CF-Talk Subject: Update multiple rows ok i am try

RE:

2002-03-11 Thread Steve Oliver
Found Create Directory... _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:56 AM To: CF-Talk Subject

RE: windows nt

2002-03-11 Thread Steve Oliver
FAT, being FAT16, but not FAT32, which 98 systems are. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:17 AM To: CF

RE: windows nt

2002-03-11 Thread Steve Oliver
going to happen with a laptop. You might want to check first and see if there are NT drivers for your laptop devices. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Robert Orlini [mailto:[E

RE:

2002-03-11 Thread Steve Oliver
iable. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 3:29 AM To: CF-Talk Subject: RE: Yeah, I thought of that e

RE:

2002-03-10 Thread Steve Oliver
No your right, not until Netscape 6 was readonly and disabled introduced, whereas IE as supported it since version 4.0 There is a way to get around this though :) _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com

RE:

2002-03-10 Thread Steve Oliver
Well, you could do something like this in your pages. Then in your incHeader.cfm, put something like this. If you define "variables.JavaHeader", it'll include it, if not it won't. _________ steve oliver senior internet devel

RE: Re[2]: CFFTP

2002-03-09 Thread Steve Oliver
help since your ftp server has it's own users. _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 09, 2002 10:08 PM To: CF-Talk Subjec

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Steve Oliver
in98. 2K and XP check system files automatically. You didn't say which OS is on that computer though. _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECT

RE: WAY OT: Virus or not GOTCHA

2002-03-08 Thread Steve Oliver
on startup. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 09, 2002 1:30 AM To: CF-Talk Subject: RE: WAY OT: Virus or not GOTCHA Have you tri

RE: Desktop Icon Creation

2002-03-08 Thread Steve Oliver
You just want a shortcut to a webpage on the desktop? Just paste this in a text file [DEFAULT] BASEURL=http://someserver.com/ [InternetShortcut] URL=http://someserver.com/ Then change it from file.txt to file.url _ steve oliver senior internet developer atnet

RE: CF_FakeURL problems

2002-03-08 Thread Steve Oliver
getat(qstring,i,"/"); }else{ "URL.#qstringvariable#" = listgetat(qstring,i,"/"); } } _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Roger B. [mailt

RE: ColdFusion updating wrong table

2002-03-08 Thread Steve Oliver
application variable gets overwritten. Try using a request variables or a just a plain variable. _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Keane, John (WDS) [mailto:[EMAIL PROTECTED]] Se

RE: Page name ???

2002-03-07 Thread Steve Oliver
if you'd rather use cold fusion instead of a CGI variable, you can use this: #getFileFromPath(ExpandPath(*.*))# _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Kris Pilles [mailto:[

RE: enctype and IIS error

2002-03-05 Thread Steve Oliver
When you set the enctype to upload a file, make sure you set METHOD="POST" in the form as well. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Smith, Daron [PA] [mailto:[EMAIL

RE: it's finally happened

2002-03-05 Thread Steve Oliver
Whenever I use that option to "reload most recent backup" I get a blank file. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sen

RE: How do you prevent web pages/images from being SAVED

2002-03-04 Thread Steve Oliver
There is a javascript function that will encrypt the html on your page, so the user sees a bunch of garbled numbers and letters. It won't keep them from saving your web page, but it will keep them from seeing any html or scripts you have on the page. _ steve o

RE: Attaching CSS style sheet

2002-02-28 Thread Steve Oliver
I'm not sure, but I agree that the header.cfm is the way to go. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, Februa

RE: Attaching CSS style sheet

2002-02-28 Thread Steve Oliver
your application.cfm, you could try something like this: "> _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 9:24 P

RE: time field in access

2002-02-28 Thread Steve Oliver
I think you can insert a NULL value into the field if it's not required. Do something like: INSERT INTO yourtable (StartTime) VALUES ( '#FORM.StartTime#' NULL ) _________ steve oliver senior internet developer atnet solutions, inc. http://www.atn

RE: Date Function

2002-02-28 Thread Steve Oliver
ormat(Variables.yesterday,"mm/dd/")# _________ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Joel Blanchette [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 3:11 PM To: CF-Tal

RE: CFABORT template, not all CF processing?

2002-02-28 Thread Steve Oliver
Try this out, cfexit will only exit from the included template, and run everything else. You can also use if you only want to exit from a tag. This should always show Test2 just got terminated! Test2 was included! _ steve oliver senior internet developer

RE: CFABORT template, not all CF processing?

2002-02-28 Thread Steve Oliver
What about ? _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 12:54 PM To: CF-Talk Subject: RE: CFABORT template

RE: OT : Submit file field form via javascript

2002-02-27 Thread Steve Oliver
h of the file field to 80, so it sort of hides the text part, and click on the browse button. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]]

RE: SMB 2.0 Language Help

2002-02-27 Thread Steve Oliver
Look in the preferences on Google, now that's a language pack :) They even have elmer fudd, Klingon, and bork bork bork! in there, lol _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From:

Query and Drop downs

2002-02-27 Thread Steve Oliver
", tamorpm); The third variable of QueryAddColumn Has to be a 1 dimensional array, that's the reason for the arrays. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com __

RE: Inserting a delimited list into a database

2002-02-27 Thread Steve Oliver
The first thing I would do is dump the FORM.servers variable and make sure that you have all numbers in there. #FORM.servers# <-- ghetto debugging :) _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Origi

RE: OT JS again

2002-02-27 Thread Steve Oliver
There's a tag called cf_state on the dev exchange that does all of the work for you, you just declare the name of the field. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: [

RE: which is the best way to do auto retrieval of Address...

2002-02-27 Thread Steve Oliver
like Then in the form, At the top of the page you'd need to do something like. That will copy everything submitted through the form into the thisform structure, so if they filled out half of the form before selecting a postal code, it will load it all in the form. ______

RE: protecting non-cf files

2002-02-26 Thread Steve Oliver
server. There are quite a few good ones out there. Just do a search for anti-leech on google or something. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Jennifer Knoblock [mailto:[EMAIL

RE: CFPOP and html stripping

2002-02-26 Thread Steve Oliver
Do you mean CFMAIL? CFPOP just retrieves and deletes message from a server. If he's forwarding an email he must be using CFMAIL. If he doesn't put Then it will default to sending plain text. _____ steve oliver senior internet developer atnet solutions,

RE: e-commerce package

2002-02-24 Thread Steve Oliver
My favorite webstore as of right now is CFWebStore www.cfwebstore.com It has everything I need, plus tons of options and extras. It's Very easy to setup also. You can login to the demo as admin on the site and check it all out. _ steve oliver senior int

RE: QUERY Differences?

2002-02-24 Thread Steve Oliver
Yes, full outer joins generally require more cpu time as well as query processing time. Depending on the size of your query though, you may not notice a difference unless it's a large return. _ steve oliver senior internet developer atnet solutions, inc.

RE: dynamic

2002-02-24 Thread Steve Oliver
Use style tags (css) if(this > that){ document.forms.formname.textname.style.backgroundColor = 'red'; document.forms.formname.textname.style.color = 'white'; } I'm pretty sure style.backgroundColor works on NS and IE. _________ steve oliver sen

RE: Experts Only! - Summarizing Results

2002-02-24 Thread Steve Oliver
One suggestion I can make though, if you do decide to use loops. You don't have to loop over the entire description of each result. The cfexit tag comes in really handy in these cases. As in _ steve oliver senior internet developer

RE: Experts Only! - Summarizing Results

2002-02-24 Thread Steve Oliver
And, unless you have some magic way to get the left 200 elements of a list, the only other option I can think of is a CFX. CF is pretty slow when it comes to major string manipulations. _ steve oliver senior internet developer atnet solutions, inc. http

RE: Experts Only! - Summarizing Results

2002-02-24 Thread Steve Oliver
I did something similar to google's. What I did though was treat the description as a list, delimited by spaces and chr(13)'s. _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: J

RE: Array? Is this possible?

2002-02-24 Thread Steve Oliver
So your saying the client is telling you to use arrays? Not that it's any of my business, but you're the developer, the clients usually don't care (and usually don't know any better) as long as it works, right? _________ steve oliver senior internet devel

RE: QUERY Differences?

2002-02-23 Thread Steve Oliver
ins used more then commas (commas being a full outer join anyways) _____ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 23, 2002 9:48

RE: Session Count

2002-02-23 Thread Steve Oliver
I think the easiest way is to add each session id into an application variable, in a structure or array, along with a timestamp. This way you can check the timestamps and delete them after a predetermined timeout period. Just make sure to lock everything. _ steve

RE: RegEx rookie question

2002-02-22 Thread Steve Oliver
something like: "[0-9]\{125\}X" you could also have: "[0-9]\{m,n\}X" Where {m,n} indicates that the preceeding element must match at least m times and may match as many as n times. _______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -

RE: Get everything between " " in a CSV file.

2002-02-21 Thread Steve Oliver
I think you might have to use a regex on it first. Find everything between " " first, and replace the comma's with something else, maybe a period or something. I'll look around and see if I can find a better way to do it. _________ steve oliver senio

RE: Foreign keys

2002-02-20 Thread Steve Oliver
Ah good point, I bet that's the problem. Rename date, and get rid of the quotes around your integers, and all should work. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Cody Estes [mailto:[EMAIL PROTECTED]]

RE: SOT: Is the Netscape browser still a consideration?

2002-02-20 Thread Steve Oliver
go by what the client wants on their site. If they say they want a flash intro, so be it. Anyways, I couldn't imagine a web without pictures and flash and dhtml, it would be like a magazine with nothing but text inside. ______ steve oliver atnet solutions, inc. ht

RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Steve Oliver
It's an assumption on my part, looks like everyone else thinks differently. I guess there could be a few people out there running NS 4.7 on a 75mhz computer, not worrying about upgrading anything because it does what they need. __ steve oliver atnet solutions, inc.

RE: Is the Netscape browser still a consideration?

2002-02-19 Thread Steve Oliver
#x27;s viewable. The majority of the people who do run NS (the fans) would certainly of upgraded to the latest version, which is pretty W3C compliant. __________ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Rey Bango [mailto:[EMA

RE: Foreign keys

2002-02-19 Thread Steve Oliver
If the ID's are integers, you don't want to put quotes around them. INSERT INTO log (date, tech, software, comments) VALUES ('#form.date#', #techs.id#, #software.id#, '#form.comments#') __ steve oliver atnet solutions, inc.

RE: direct acces to ms access without dns

2002-02-19 Thread Steve Oliver
Actually, that way uses OLEDB, if you want use the access drivers (with CF5), do something like this. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: Force Pop-Up Window

2002-02-19 Thread Steve Oliver
he calendar" or something. __________ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 10:31 AM To: CF-Talk Subject: OT: Force Pop-Up Window I am using a pop-w

RE: only one MD5 hash?

2002-02-19 Thread Steve Oliver
MD5 hash, meaning it is possible to have 2 entirely different values match the hash. __________ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 10:24 AM To: CF-Ta

RE: direct acces to ms access without dns

2002-02-19 Thread Steve Oliver
You could try unlocking the database instead of shutting down the server. Put something like this at the top of your application.cfm Then just uncomment that whenever you want to work on your dbase. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com

RE: MS Word Funky Quotes

2002-02-18 Thread Steve Oliver
word file, properly formatted. You can even display tables. ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 7:47 PM To: CF-Talk Subject: Re: MS Word Fu

RE: UPS OnLine Tools with ColdFusion

2002-02-18 Thread Steve Oliver
I recently upgraded an app that had an old version of UPSRateMonger on it with UPSRateMonger 3.0, the hardest part was downloading the rates from ups.com There's a script to import the files into the database for you, make sure you rtfm though :) __ steve oliver

RE: Query of Query problem

2002-02-18 Thread Steve Oliver
27;s a bug. ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 6:51 PM To: CF-Talk Subject: Query of Query problem Anybody know if this is a known bug in CF ?

RE: ListGetAt error?!

2002-02-16 Thread Steve Oliver
That's how CF handles lists. If you do a listlen(list) it will return 6 in your case. 1,2,3,,4,5 is treated as 5 elements __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]]

RE: Web based editor

2002-02-16 Thread Steve Oliver
Oh and if you want a nifty toolbar to go with it, here's a pretty easy to follow tutorial on creating a toolbar. www.oreillynet.com/pub/a/javascript/2001/12/21/js_toolbar.html?page=1 __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Me

RE: Web based editor

2002-02-16 Thread Steve Oliver
You could just make your own, it's just a iframe set to edit mode :) http://www.insidedhtml.com/tips/contents/ts12/page1.asp __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Zac Spitzer [mailto:[EMAIL PROTECTED]]

RE: CFHTTP construction? Fix??

2002-02-15 Thread Steve Oliver
You could just go into the services and check the box that says "Allow desktop interaction" I think that might solve your problem. ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Ron Davis [mailto:[EMAIL

RE: Deleting Row from Array

2002-02-15 Thread Steve Oliver
I think you need to look at how your array is structured. If it's two dimensional, you want to delete items from the 2nd dimension of the array. The way you are doing it would delete the entire 2nd dimension. __ steve oliver atnet solutions, inc.

RE: page break when printing

2002-02-15 Thread Steve Oliver
Isn't it something like Your content I could be wrong there, I've seen saw something like that in a previous post. You could check the archive. ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Dimo Michail

RE: file input value

2002-02-15 Thread Steve Oliver
You know since your using a hidden field, you could use a javascript validation on the file so it checks the filetype before you even send it. Like the cfinputs do, except an alert box that says "Wrong file type" or something. ______ steve oliver atnet solutions,

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
a cflocation ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Nathan Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 1:50 AM To: CF-Talk Subject: Re: simple question - how do you manually time out a session variable Steve, T

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
>>The only way I can think of is to include something like: >>window.history.forward(20); Disregard that, I went looking around and found that IE only supports -1, 0, or 1 in the history function. ______ steve oliver atnet solutions, inc. http://www.atnets

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
But you do know, if you have some sort of session checking involved in each *secure* page, they won't be able to do anything, except *look* at the pages. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Nathan Chen [m

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
re in your site. (20 pages deep anyways) ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message----- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 1:13 AM To: CF-Talk Subject: RE: simple question - how do you man

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
;>http://yourserver.com/index.cfm</A>'); Else location.href = 'index.cfm'; __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Nathan Chen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
it's bed time, oh, after I answer that question that just popped up :) __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 12:29 AM To: CF-Tal

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
Sorry, I seem to be in an arguing mood tonight. (must be the lack of sleep) __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 12:21 AM To: CF

RE: simple question - how do you manually time out a session variable

2002-02-14 Thread Steve Oliver
Why keep the session if there's nothing in it :) Dropping the session will log them out. If he's tracking loggedin status by isDefined("SESSION.loggedin"), he'd have to go through and add AND len(SESSION.loggedin) since your way just sets them to "". __

RE: >1 browser window kill client var

2002-02-14 Thread Steve Oliver
Oh, ok, I thought you was saying that it wouldn't work. Yeah if they are using client variables then just set a client variable. My bad. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Andrew Scott [mailto:[

RE: >1 browser window kill client var

2002-02-14 Thread Steve Oliver
can't open another job. Are we on different sheets of music or something? ______ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message----- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 14, 2002 11:54 PM To: CF-Ta

RE: >1 browser window kill client var

2002-02-14 Thread Steve Oliver
So why can't you check for a session variable on each page load, if it's there don't let them create a new job? I'm assuming there IS a login to the function that we are talking about, otherwise nevermind. __________ steve oliver atnet solutions, inc. http://ww

  1   2   3   >