Re: UI question

2001-06-07 Thread Mak Wing Lok
try using Javascript, hide the text box when the page loaded and display the text box when the user click on Other mak wl - Original Message - From: Jason Lotz [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 07, 2001 2:28 AM Subject: UI question I would like some

sorting by IP addresses...

2001-06-07 Thread Paris Lundis
So I am writing some log reporting for my enjoyment... well to make things a little easier to quantify... one thing I want to be ablt to do is ORDER queries by the value stored of the viewers IP ADDRESS... It doesn't work without some modification of the IP address... anyone worked on

Re: list and looping problems

2001-06-07 Thread Seamus Campbell
Basically because I'm way out of my depth here and have virtually no idea of what I'm doing Can you possibly show me a bit more of what you are doing so I can learn a bit more??? Many thanks Seamus At 10:23 pm 5/06/01 , you wrote: Seamus, I'm working on the same issue today. Out of

Re: list and looping problems

2001-06-07 Thread Seamus Campbell
many thanks With your help I have managed to get a bulk update/insert going However I cannot work out how to account for items originally on database but not on new group list ie groups that need to be deleted from original database after update process (is that understandable?) Any help

OT: liveupdate

2001-06-07 Thread Michael Lugassy
I'm trying to find some good resources and information on how to build a liveupdate mechanisem. something which is similiar to Symantec's fantastic liveupdate engine (for norton anti virus, pcanywhere and others). is there a 3rd party which is recommended for this? we currently use WISE for

CF5, cffile and cfcontent and deleting

2001-06-07 Thread Rich Wild
Got a bit of a query with CF5: If I try to serve a separate text file from a template via cfcontent and specify that the file must be deleted - an error is thrown: Error occurred while attempting to delete the file D:\development\text_server\this.txt Windows NT error number 5 occurred.

RE: securing IIS5 and CF server

2001-06-07 Thread Thomas Chiverton
Also lock down the debugging options to only the 127.0.0.1 IP address in the CF server :-) -Original Message- From: Marc Garrett [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 21:15 To: CF-Talk Subject: Re: securing IIS5 and CF server Hi Chad, Most of the CF security problems

RE: CFTree substitute?

2001-06-07 Thread Thomas Chiverton
You can try the Joust control, ... It must be run in a frame Err... no. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Upgrading Windows NT to 2000 CF Effects

2001-06-07 Thread Teng-Yan Loke
Dear all Has anyone tried upgrading from NT4 Workstation to 2KPro with CF4.5 and PWS? I'm concerned with possible problems relating to PWS: IIS may not be installed; if it is installed, the CF plug-in for PWS will probably be lost. Any ideas? TIA. Loke, Teng-Yan | [EMAIL PROTECTED] |

RE: CFTree substitute?

2001-06-07 Thread Thomas Chiverton
I dont recall where I actually found it though. Looks like the Netscape DHTML demo one. I dont use it because it doesnt indent the levels. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: CF 5 Eval

2001-06-07 Thread Thomas Chiverton
i'm in the OLP so i just put the eval on a development server until i get the serial with the upgrade. I'm based in the UK, and our supplier just rang to say our subscription update copy should be with us in the next 2 weeks. ~~ Structure your

RE: Backup Database

2001-06-07 Thread Thomas Chiverton
the main SQL is not available? Can this be done in DNS? Maybe in MS DDNS spit... or you could put both servers behind a hardware load balencer, though that may cause problems. Or simply use a try-catch method to retry queries on the alternate DB if the first one fails.

RE: Upgrading Windows NT to 2000 CF Effects

2001-06-07 Thread Thomas Chiverton
I did it on our dev server, had to reinstall CF, which sorted the IIS plug in fine. You should really wipe the HD and start from scratch though. -Original Message- From: Teng-Yan Loke [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 11:03 To: CF-Talk Subject: Upgrading Windows NT to

OT: We need a partime remote developer

2001-06-07 Thread Brian Thornton
Hi Everyone, Sorry For the interruption and the off topic post but I've had little response from the recruiters over at cf-jobs... poke poke. :) We need a CF developer that we can send some function work to that can work from home via email and FTP. Please send some the following to

RE: INSIGHT NEEDED: getting query results to output in a table with three rows

2001-06-07 Thread Diana Nichols
Try this: tabletr cfoutput query=whatever td#whatever.theStuff#/td cfif whatever.recordcount MOD 3 is 0 /trtr /cfif /cfoutput /tr/table D * Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 One man's magic is another man's engineering.

RE: profanity checker(again)

2001-06-07 Thread Will Swain
I agree with you completely, and the messages can be moderated, but the client wanted something basic to filter out any obscene words. Statements such as the one you mention I would leave to the moderator to remove, if neccersary providing an explanation as to why. Anyway, thanks for your

bulk updating/inserting

2001-06-07 Thread Seamus Campbell
Hi I'm working on bulk updating/inserting data into a database from several txt files I think I've solved the actual updating/inserting bit with help from people on this list. My new dilemna is how to account for titles that have to be deleted from the original database because they were not

problem with encrypt/base64

2001-06-07 Thread JAAV
Hello again, Well, I'm having a problem using the encrypt/base64. It give me this error: -- Error Diagnostic Information: An error occurred while evaluating the expression: attributes.Text = decrypt(tostring(tobinary(attributes.myEncryptedMail)),key) Error near line

RE: Hack Advice - Break a CF Query

2001-06-07 Thread Allen Hudson
That did not do the trick for me. Our CF server is 4.5.1 on NT. DB is Access97. I submitted to the live page from a select box with the value=[ but it did not do the trick for me. ~~ Structure your ColdFusion code with Fusebox. Get the official

Re: sorting by IP addresses...

2001-06-07 Thread Paul Johnston
wouldn't sorting them using the bitwise functions make more sense on this one? They are binary after all. Paul PS Otherwise, just recreate the ip address with leading zeros, then sort them as text and it may well sort out the problem e.g.: 216.56.6.245- 216.056.006.245 216.66.132.134 -

RE: Hack Advice Break a CF Query]

2001-06-07 Thread Allen Hudson
I will implement this then, instead of a query breaker page. Unfortunately, this won't be possible for another 4 weeks - (they require a rigorous testing regimen for ANY changes to ANY pages. Gotta love bureaucracy. :( ~~ Structure your

Re: sorting by IP addresses...

2001-06-07 Thread Paul Johnston
Try running this code from CF (obviously): ---code--- cfset iplist = 216.56.6.245,216.66.132.134,24.16.140.8,24.165.85.118,24.178.211.39 cfset newiplist = cfset num = 1 cfloop list=#iplist# index=addr cfset newip = cfloop list=#addr# index=part delimiters=.

RE: Progress Meter Example... maxing out CPU?

2001-06-07 Thread Raymond Camden
To be honest, I don't know. Like I said, looping from 1 to 500k is _not_ a big deal. I believe my example code only does a few simple mathemtical equations, so it shouldn't be hurting the server. I can't really tell you what to do.

RE: Which SQL ODBC Login method?

2001-06-07 Thread mherbene
If on a shared server, and the server is not set up to use sandboxes to keep different users from using each other's datasources, then putting the userid/pwd in your .cfm files will better protect you from other users of the server (assuming CFFILE is turned off). If sandboxes are in place, I

Re: CFTree substitute?

2001-06-07 Thread David E. Crawford
Without serious modifications it must be run in a frame. I would love to see an example of it in a non-frame environment. These kinds of messages, by the way are not particularly helpful. If you have constructive suggestions please provide them otherwise.. DC - Original Message -

RE: sorting by IP addresses...

2001-06-07 Thread Norman Elton
I had the exact same problem. I don't know if it's an option for you, but I ended up storing the four octets seperately. Then simply doing a sort on IPOctet1, IPOctet2, IPOctet3, IPOctet4. Norman -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07,

Re: sorting by IP addresses...

2001-06-07 Thread Hanz Zarcovic
Paris, I imagine if you are writing some log analyzing software that you are dumping the logs into a database for easier analysis ? If you are dumping them into a database then you should just do some simple string parsing to break the IP address up into 4 tiny int fields in this way you'll be

RE: Which SQL ODBC Login method?

2001-06-07 Thread Paul Smith
This is my standard practice for ALL CF templates (except index.cfm in my non-standard Fusebox style). best, paul At 08:30 AM 6/7/01 -0400, you wrote: you might consider moving all CFQUERYs into include files and storing the include files somewhere that's not web-accessible.

Re: sorting by IP addresses...

2001-06-07 Thread Paris Lundis
Thanks Hank... the conversion for the 32bit binary would seem best... So has anyone wrote a function/Cf code to convert IPs to their binary representations? Had seen it done elsewhere in this manner and trust the designer... -paris [finding the future in the past, passing the future in the

ColdFusion event news: MDCFUG, RoadShow, CF2001

2001-06-07 Thread Michael Smith
There are three ColdFusion events coming up soon in the Washington DC area: 1. MDCFUG meeting Tuesday 6/12/01 http://www.cfug-md.org/ 2. CFUGRoadShow Wednesday 6/20/01 http://www.cfconf.com/cfugroadshow/ 3. CF2001 2 day conference Saturday 7/28/01 and Sunday 7/29/01

JavaScript var to Cold Fusion var

2001-06-07 Thread Larry Junker
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value, I would

Simple Access Query Help

2001-06-07 Thread Julie Clegg
Hello, Can anyone help me with this simple query...? I have a Meeting Table which stores the begining time and ending time of each meeting conducted, per site. I need to write a query to calculate the average meeting time per site for the year 2000. Below is an example of my table:

RE: sorting by IP addresses...

2001-06-07 Thread Marlon Moyer
cfset myIP=192.168.1.1 cfset myBinaryIP= cfloop list=#myIP# index=byte delimiters=. cfset myBinaryIP=myBinaryIP numberFormat(formatBaseN(byte,2),) /cfloop -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 8:41 AM To: CF-Talk

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Dan G. Switzer, II
Larry, JS is purely client, which means to execute an CFML based upon JS you're going to have to make a roundtrip to the server. WDDX is great for serializing JavaScript data and passing it into a format CF can deal with natively. For ways to interactive w/the server without appearing to leave

RE: sorting by IP addresses...

2001-06-07 Thread Norman Elton
As far as converting an IP to binary in CFML... Wouldn't be hard to do BitMaskRead. Loop over the address as if it's a list with a period delimiter. Read the bit mask with a length of 8, and smash them all together. I don't see why it wouldn't work, but I haven't tried it :) I don't know how

Re: JavaScript var to Cold Fusion var

2001-06-07 Thread Aaron Rouse
I am curious how you have seen this, since that means a Client side language, JavaScript, made a variable within a Server side language, ColdFusion. That can not be done unless you use JavaScript to load a .CFM page and that page handles your CFMAIL. Oh and you might want to fix your email sig,

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Ron Hornbaker
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value, I

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Nate Smith
Cold Fusion is run on the server and has no access to JS variables which are run on the users machine unless the JS variable is passed back to the server through a url or form variable. So if you are using JS to pass data back to CF you need a page submission. Does that help? - Nate Smith,

RE: Simple Access Query Help

2001-06-07 Thread Norman Elton
How about: SELECT Avg(DateDiff(n,BegTime,EndTime)) AS AvgLength FROM Meetings WHERE DatePart(,BegTime) = 2000 GROUP BY Site That should return the average time in minutes. Hope this helps Norman -Original Message- From: Julie Clegg [mailto:[EMAIL PROTECTED]] Sent: Thursday, June

Re: Date Query problem.

2001-06-07 Thread Dusty Tinashe Shoko
CFSET a = DateFormat(now(),dd) is variable 'a' a date or a number now? Why dont u add to the date first and then get the day afterwards - Original Message - From: Schwartz, Paul [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 06, 2001 6:03 PM Subject:

RE: Simple Access Query Help

2001-06-07 Thread JB
I would write a query that looks like so SELECT meetingnumber, EndTime - BegTime AS Lenghtofmeeting, site from meeting; Then query that query like so SELECT AVG(lenghtofmeeting) AS averagemeetinglenght from length; You could use views here but access won't let you so you have to query a

Re: Browser window width

2001-06-07 Thread Michael Lugassy
go to javascript.com search for tips on browsers you will find good tutorials. Thanks, Michael - Original Message - From: Christine Kelley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 07, 2001 1:55 AM Subject: Browser window width Hi all! I am having

creating liveupdate

2001-06-07 Thread Michael Lugassy
I'm trying to find some good resources and information on how to build a liveupdate mechanisem. something which is similiar to Symantec's fantastic liveupdate engine (for norton anti virus, pcanywhere and others). Basically I need a way to deliver alot of content in an organized way to the

RE: Backup Database

2001-06-07 Thread Justin Greene
Doesn't ODBC have a field for a backup DB name when you set up a datasource. I have never used it so I am not sure if this is the intent of the field in question. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 6:08 AM To: CF-Talk

RE: CF Studio and UltraDev Merging!

2001-06-07 Thread Eric Carlisle
I have to agree with this, although MM has a pretty good text/WYSIWYG toggle in Ultradev... One thing is for certain. The Design mode in Homesite/ColdFusion Studio needs some work. Maybe if that's where some of that really cool MM technology could be worked in. As far as the edit mode

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Larry Junker
Yes - Thanks to all who replied. -Original Message- From: Nate Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 9:33 AM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var Cold Fusion is run on the server and has no access to JS variables which are run on the

Passing an array to a custom tag

2001-06-07 Thread Joe Tartaglia
I am trying to write a custom tag that will, among other things, add an element to an array whose name can vary from situation to situation. This array is always stored as a session variable. I have been trying to pass the name of the array as a character string and then manipulate it in the

certified CF developer

2001-06-07 Thread Chang Liu
hi all, I'd like to take certified CF developer exam. now the version is 4.5. do you think i should take it now or wait for exam 5.0? thanks a lot! ~~ Structure your ColdFusion code with Fusebox. Get the official book at

ignore an error??

2001-06-07 Thread Alex
I recieve the following error: An error occurred while evaluating the expression: #url.techID# Page User Came From: http://www.site.com/Code.cfm?exitID=8techID=94 I was wondering how to ignore or bypass this error because the techID does get passed and the code executes. But I always get an

RE: Date Query problem.

2001-06-07 Thread Andy Ewings
CF doesn't deal with variables in this way. If you do CFSET a = DateFormat(now(),dd) then a is neither a string, number or date. CF decides what type the variable is once you combine it with an operand For example if you tried to do a mathematical function on it (say add it to another number)

RE: sorting by IP addresses...

2001-06-07 Thread Paris Lundis
Wow... now that looks so simple... Thanks a bunch Marlon Will get that implemented tonight Now what would the most efficient way be to store that value in an ACCESS database? Love this list... -paris [finding the future in the past, passing the future in the present] [connecting

Re: JavaScript var to Cold Fusion var

2001-06-07 Thread Don Vawter
Javascript is client side. Cold Fusion is server side. When js is executing the cf engine is long gone. You can pass the js variables to a cf template when you next hit the server of course. - Original Message - From: Larry Junker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: certified CF developer

2001-06-07 Thread Andy Ewings
Big debate on this but the official word is ithe 4.5 exam expires on the 14th July. If yopu take, and pass beofre then you will automatically be grandfathered up to 5.0 -Original Message- From: Chang Liu [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 17:16 To: CF-Talk Subject: certified

RE: ignore an error??

2001-06-07 Thread Jason Lees (National Express)
you could use the CFParam to set it to an empty string. Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 16:10 To: CF-Talk Subject: ignore an error?? I recieve the following error: An error occurred

RE: certified CF developer

2001-06-07 Thread Claremont, Timothy S
if you keep waiting for the next imminent release you will wait forever... -Original Message- From: Chang Liu [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 12:16 PM To: CF-Talk Subject: certified CF developer hi all, I'd like to take certified CF developer exam. now the

RE: ignore an error??

2001-06-07 Thread Duane Boudreau
You could use isDefined(url.techID) or CFTry/CFCatch. isDefined would be more efficient though. HTH, Duane -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 11:10 AM To: CF-Talk Subject: ignore an error?? I recieve the following error: An error

RE: ignore an error??

2001-06-07 Thread Garza, Jeff
If it's intermittent you could just set a CFPARAM at the top of the template with a default of CFPARAM name=url.techID default= This will initialize the variable with no value and should effectively get rid of the errors you are encountering. HTH, Jeff Garza Lead Developer/Webmaster

Forcing a refresh

2001-06-07 Thread rkern - Prolynx
To all, I have a general question that has me stumped for the moment. I have a form with a form button to process a change to a database. That works fine and after submitting the form updates with the new value. However, the form takes up a lot of space when confined to a TD element (it seems

RE: ignore an error??

2001-06-07 Thread Adkins, Randy
Depending on if it SHOULD or SHOULD NOT exist at all stages on the code: If it SHOULD Exist: Find out why it doesn't. Could be as simple as wrapping it in a CFOUTPUT If it should NOT exist: Try using CFIF IsDefined(url.techID) Now sure if this is what you are trying to do. But if CF

RE: ignore an error??

2001-06-07 Thread Brad Roberts
I can't imagine why you'd have this in your code, but the only way I could reproduce the error is by adding: cfset structclear(url) to my code. -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 11:10 AM To: CF-Talk Subject: ignore an error??

RE: certified CF developer

2001-06-07 Thread James Maltby
Take it now and be grand-fathered into CF 5 when the exam comes out - but you will have to be quick as the deadline is something like July 12 J -Original Message- From: Chang Liu [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 17:16 To: CF-Talk Subject: certified CF developer hi

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Dave Watts
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value,

RE: Backup Database

2001-06-07 Thread Dave Watts
I have a Web Server and a SQL server in Vegas and a SQL database in Kansas City. The KC database is the main SQL. What is the easiest way to have the Web Server point to the Backup SQL if the main SQL is not available? Can this be done in DNS? I don't know if this is the easiest way,

RE: ignore an error??

2001-06-07 Thread Dave Livingston
*This message was transferred with a trial version of CommuniGate(tm) Pro* cfif ParameterExists(url.techID)#url.techID#/cfif Also you might want to look at the cfparam tag and the IsDefined function. Hope that helps. Dave Livingston 512.694.1669 [EMAIL PROTECTED] -Original Message-

RE: sorting by IP addresses...

2001-06-07 Thread Daniel Lancelot
you could convert it back to an int, but then every ip starting 128 or above would display before those = 127 (negative) so Id think char(32) would be best - and store the actual binary string. -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 16:32 To:

OT: IE 6

2001-06-07 Thread Alii Design
Does anyone know why IE 6 will not let me view any source code and will only let me save pictures in bitmap format? I just installed the beta, is there a way to adjust these settings? Rich ~~ Structure your ColdFusion code with Fusebox. Get the

MAIL error question...

2001-06-07 Thread Brandon Wood
Has anyone seen this error when sending cfmail out? From the ERRORS.log: Error,TID=182,06/07/01,11:21:16,Error occurred while attempting to send mail message. - [PT_ERROR] General error (550 not local host gardere.com, not a gateway) - Sender = '[EMAIL PROTECTED]', Recipients = '[EMAIL

RE: Date Query problem.

2001-06-07 Thread Jones, Matt
Basically what I would do (based on your db structure) but why would you store the date as separate fields? cfset BeginDate = now() cfset endDate = dateAdd(m,6,BeginDate) cfquery name=oncall datasource=rml_lab select month,day,year,who from on_callmic where (month = #month(begindate)# and

Re: Forcing a refresh

2001-06-07 Thread Critter
Hello rkern, maybe try window.location.reload() ? or window.opener.location.reload() -- Critter Certified ColdFusion Developer T e r r a V e r g e Geotechnologies http://terraverge.com --- Thursday, June 07, 2001, 11:48:17, you wrote: rP

RE: Forcing a refresh

2001-06-07 Thread Marlon Moyer
in a script on your floating window add this js self.opener.location.reload(true); -Original Message- From: rkern - Prolynx [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 10:48 AM To: CF-Talk Subject: Forcing a refresh To all, I have a general question that has me stumped

RE: Passing an array to a custom tag

2001-06-07 Thread Bryan Love
why would you write a custom tag that performs the same function as an already-existing CF function?? just use ARRAYAPPEND() function. For the record though, you would not need to pass the array because it is in a session variable (which are visible to custom tags already). If the array was in

RE: Forcing a refresh

2001-06-07 Thread Semrau, Steven L Mr SRA
Have you tried using (.location) in the floating window before closing it? I do exactly what you are talking about only in a framed environment. So before the page closes I have within the script: !-- setTimeout(top.location.href='../index.cfm';,500); //-- I had to use the setTimeout

Re: certified CF developer

2001-06-07 Thread Chang Liu
thank you very much for all replys! At 6/7/2001 11:16:00 AM, you wrote: hi all, I'd like to take certified CF developer exam. now the version is 4.5. do you think i should take it now or wait for exam 5.0? thanks a lot! ~~ Structure your

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Bryan Love
to convert a JS variable to CF you must use JS to write the value to a hidden form field then submit the form. The problem is that CF happens server-side - before JS which happens client-side. That means that CF variables can be put into JS but not vice-versa. As for sending mail you have two

RE: ignore an error??

2001-06-07 Thread Bryan Love
you should never ignore errors like this, they represent a section of code that you don't understand and therefore cannot control. I don't mean to sound preachy, but there are a dozen duck-tape fixes you could use and they would only create more problems later on :)

RE: Passing an array to a custom tag

2001-06-07 Thread Dave Watts
I am trying to write a custom tag that will, among other things, add an element to an array whose name can vary from situation to situation. This array is always stored as a session variable. I have been trying to pass the name of the array as a character string and then manipulate it in

Next-N Design

2001-06-07 Thread Denton
Hello All, I am trying to get a next-n style list working with my database display and have it almost working perfectly. If I select the columns manually from the database it works fine but if the selections are made based on a form then only the first next-n page works and the following ones

Search Form

2001-06-07 Thread Yvette Ingram
Hello, Can someone give me an example or point me to information on how to create a search form similar to the one used in Outlook Express Address book. For example, when you type the first 2 letters of a name to search on, the list already starts to display address names starting with those

mapping to SQL database in CF administrator

2001-06-07 Thread Bruce, Rodney
Sent this out once, but no reply, am trying again. If anyone can help would appreciate the assist. We are planning on changing over to SQL from ACCESS. I am not that familiar with SQL and have loaded SQL 7 and started playing with it to learn what I can. I have imported my tables into SQL.

Re: Forcing a refresh

2001-06-07 Thread Jon Hall
To fix the problem with the form, put the form tags outside the table tags. form... td.../td /form That will remove the line break. To refresh the opening window, you have to use the javascript window.open() to open the new popup (no target=new...). Then in the popup, execute the

Re: Passing an array to a custom tag

2001-06-07 Thread Joseph Thompson
If you scope that array to Request it will simply be available to the custom tag... http://cfhub.com/advanced/customtags/request.cfm I am trying to write a custom tag that will, among other things, add an element to an array whose name can vary from situation to situation. This array is

database structure

2001-06-07 Thread Greg Jordan
I am setting up a database in SQL Server that will hold a sales team listings. The salesperson can be in multiple categories and multiple states. My question is what is the most efficient way of doing this? would it be (1) setting up three tables, one for the salesperson's main record and

Re: MAIL error question...

2001-06-07 Thread Howie Hamlin
You mail server is not allowing relays. It does not recognize your CF server as being a trusted connection. You need to get your mail server admin to correct this. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail

RE: IE 6

2001-06-07 Thread Mike Amburn
i don't think that's accurate. we have a laptop running Windows XP that includes IE6. you can same images in the original format, and you can view source. -Original Message- From: Alii Design [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 12:28 PM To: CF-Talk Subject: OT:

Re: profanity checker(again)

2001-06-07 Thread Carlson, Kevin
You might try adding a regular expression in the ReplaceNoCase function, both before and after the badword string, so that punctuation and spaces on either side of badword would match, but alphabet characters would not match. This should adress the embedded bad word problem. For more info,

Finding out when a application has been timed out.

2001-06-07 Thread Chad McCue
My problem is I can't allow more than two people logged in to my admin section at once. The problem I am having is when the session times out, I need to somehow go into the database and change my field that says someone is logged in. Right now it works fine if the user logs himself out of the

RE: Search Form

2001-06-07 Thread Top-Link Tech (John Ceci)
Yvette, Check out http://www.aypny.com Use IE 5.X or higher to see the autocomplete feature... John -Original Message- From: Yvette Ingram [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 12:41 PM To: CF-Talk Subject: Search Form Hello, Can someone give me an example or

Re: Next-N Design

2001-06-07 Thread Jon Hall
The way I handled this in my next-n tag is to take all form variables and turn them into url parameters. The tag takes all the existing url parameters and form vars with their values, and builds one query string that I append to all of the links the tag generates for the next, previous, and

RE: Next-N Design

2001-06-07 Thread Tony Gruen
Denton, I think I understand your situation clearly - I would suggest placing the next/prev # variable in your next/prev form as a hidden field. Tony Gruen -Original Message- From: Denton [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 10:13 AM To: CF-Talk Subject: Next-N

Re: Search Form

2001-06-07 Thread Yvette Ingram
It occurred to me that I probably need to create a collection and use verity. All responses are appreciated. I want to see if I going that the right track. Tx, Yvette Ingram Brainbench Certified ColdFusion 4.5 Programmer Email: ingramrecruiting@erols or [EMAIL PROTECTED] ICQ: 21200397 -

Querying Exchange

2001-06-07 Thread Smith, Daron
Does anyone have experience using CF to query Exchange? If so how do you set up a Datasource? Do you need to use OLEDB? If so how do I set that up? Any help would be appreciated, thanks. Daron J. Smith Web Developer PSEA [EMAIL PROTECTED] 717-255-7141 1-800-944-PSEA (7732) x 7141

Looking for a Web Based ActiveX Treeview

2001-06-07 Thread Sutton Yamanashi
Greetings CF-ers! I am looking for an ActiveX Treeview that I can drop into a CF app that allows both checkboxes and radio buttons within the same tree. Very similar to the tree on this page: http://www.softelvdm.com/treeocx_ss.html This tree is only avaiable to VB and Visual C++ apps. I

Re: Next-N Design

2001-06-07 Thread Dave f
as a hidden form field. ie input type=hidden name=xxx value=#form.xxx# - Original Message - From: Denton [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 07, 2001 1:13 PM Subject: Next-N Design Hello All, I am trying to get a next-n style list working with my

Re: ignore an error??

2001-06-07 Thread Dave f
Try using in the calling url - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 07, 2001 11:09 AM Subject: ignore an error?? I recieve the following error: An error occurred while evaluating the expression: #url.techID# Page User

Re: database structure

2001-06-07 Thread Pooh Bear
Go with #1, but make it 4 tables. the fourth being the relationship table (we'll call it Sales_Cat), that has the salespersonID, the StateID, and the categoryID, and for good measure, a Sales_Cat_ID. thank you! or you're welcome. err hmmm From: Greg Jordan [EMAIL PROTECTED] Reply-To:

RE: mapping to SQL database in CF administrator

2001-06-07 Thread Tony Gruen
Rodney, When you name the datasource and click add to create it, be sure SQL Server is selected as the database type. Tony Gruen -Original Message- From: Bruce, Rodney [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 10:47 AM To: CF-Talk Subject: mapping to SQL database in CF

Re: Search Form

2001-06-07 Thread Pooh Bear
that might be a problem, cuz u see, the only way a browser updates itself is by refreshing. outlook is an application, so things just show up as pressed. but here is the way to do it, but i do not recommend it, and i will give an alternative solution. in the search field, have it call a

OT: Win IE5 vs Mac IE5

2001-06-07 Thread Jeff Britts
Can anyone point me to a resource that lists the differences between IE5 for Mac and PC. I've got a site that works fine on IE5 for Windows, but will lock the computer up tight using IE5 on Mac. It's probably some JavaScript thing, but I'd like to know what I'm looking for. TIA

Dynamic Variable Names

2001-06-07 Thread Jen R
Ok...I was recently sitting in a meeting with some people in my department about an application I'm developing. Seeing as I am *the* developer I could really use some help. It's an estimating/billing application. There is a possibility of twenty different lines for materials used and

RE: IE 6

2001-06-07 Thread Chris Maloney
win2k running the beta of IE6 works fine for viewing source and images save fine. Only issue I have is that if you hit a non-working url it displays the error, however if you enter another non-working url it will sit and act like it's trying to load a page. That's about the biggest bug I've

  1   2   >