Re: Numeric Form Field Names...

2002-04-16 Thread mynews
You can put a q in front to make it an acceptable variable name and then strip it off in the processing code. Bjorno = = = Original message = = = I have an online survey that I built. The questions are dynamically drawn from a table. The radio button values are drawn from a different table. I

Error starting CF service

2002-04-16 Thread mynews
I just set up a new server and when I attempt to view the web page I get this error: * An error occurred while attempting to establish a connection to the service. The most likely cause of this problem is that the service is

Re: Error starting CF service

2002-04-16 Thread mynews
In writing this email I figured out my own problem. It was a permissions issue. BJ = = = Original message = = = I just set up a new server and when I attempt to view the web page I get this error: * An error occurred while

RE: Error starting CF service

2002-04-16 Thread mynews
I made the cfserver user an administrator. BJ = = = Original message = = = post the what permission you changed for clarity and for archive purposes Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: [EMAIL PROTECTED]

Re: automated data replication

2002-04-17 Thread mynews
Is this expensive? BJ = = = Original message = = = we use Repliweb, it is excellent. http://www.repliweb.com there is also a Microsoft one, that comes in the Resource Kit. Kirk - Original Message - From: Brook Davies [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday,

cflock over multiple servers.

2002-04-18 Thread mynews
I have 3 mirrored servers accessing the same SQL-Server DB. They are all running an agent that retrieves news and weather. For redundantcy, They are each running the agent. I have set up a table that keeps track of the last time the agent ran and each server will check the table first before

RE: Set focus on a CFINPUT field

2002-04-18 Thread mynews
Right, you need to do it as a function in an onLoad event because if you don't it will immediately look for that formfield before it exists. Onload waits until the page is fully loaded before executing the function. BJ = = = Original message = = = Try setting it through a function. That is

RE: Set focus on a CFINPUT field

2002-04-18 Thread mynews
ColdFusion does not play a roll in this. Check the resulting html. Does the form have a name? Does the field have a name? Check your CaSe, JavaScrIpt is cAsE senSative. BJ = = = Original message = = = I have tried that also. Exact code as you have written below. It appears that the

Backup CF Schecduler

2002-04-18 Thread mynews
Is there a way to back-up and restore the list of CF scheduled events? BJ ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

Re: Referencing a dynamically named form field

2002-09-20 Thread mynews
This is contrary to Ray Camden's crusade to stop the use of evaluate(), try: cfset j=1 CFLOOP LIST=#FORM.FieldNames# Index=i CFOUTPUT #i# = #FORM.FieldNames[j]#BR/CFOUTPUT cfset j=j+1 /CFLOOP = = = Original message = = = Use Evaluate to parse out all of the names and values: This will

Strange JS Wierdness with CF

2002-09-23 Thread mynews
I have a simple form that shares a page with a popup window. If the popup window link is clicked and I submit the form --if I hit the back button the form is cleared. Heres the kicker; it only happens if my page has a .cfm file extension. If its .html or .htm it does not clear. CODE: html

RE: cfhtmlhead

2002-09-27 Thread mynews
I usually do this: cfsavecontent variable=script SCRIPT LANGUAGE=JavaScript TYPE=text/javascript window.open(../index.cfm,mainApp,width=+parseInt(screen.availWidth * .90)+,height=+parseInt(screen.availHeight *90)+,status=yes,top=0,left=0,r esizable); /SCRIPT /cfsavecontent cfhtmlhead

RE: How do I embed a .mov file in a web page?

2002-10-25 Thread mynews
Check out the Apple site http://www.apple.com/quicktime/authoring/embed.html David = = = Original message = = = I am absolutely clueless how to do this. Thanks, Brian Yager President - North AL Cold Fusion Users Group http://www.nacfug.com Sr. Systems Analyst Sverdrup/CIC [EMAIL PROTECTED]

Excel COM object not Instantiating

2003-02-17 Thread mynews
I am switching my server to CFMX and an app that talks to the Excel COM object is giving me problems. I am getting the error: An exception occurred when instantiating a Com object. I have the CFMX updater installed. I am using Excel XP on a Win 2000 server. Here is the code in question:

Re: CF Studio adjustment

2003-02-18 Thread mynews
options/settings/Markup Languages/Lowercase all inserted tags David Murphy www.cfugcny.org = = = Original message = = = When I have autocomplete enabled (which is often as it speeds my coding) and I start an input tag I get to the attribute type, which gives me a list (Hidden, Text, etc.).

Re: CF Studio adjustment

2003-02-18 Thread mynews
That's bizarre, it works like you would expect it to on my version of Studio (5.0). If I unckeck it all my attributes are in ALL CAPS. DM = = = Original message = = = David, Thanks, but this option is already selected in the editor. I guess that only applies to the tag name itself. Cutter

RE: CF and PhotoShop

2003-03-13 Thread mynews
What if you created a droplet and used cfexecute to run the droplet? Can you create a droplet that will work on every file in a certain directory? The main thing that scares me about trying to script photoshop is loading and unloading it. Its a bulky program that can take forever to load.

SQL: subquery and group by a non selected field

2003-03-13 Thread mynews
I am trying to return a list of ids in a sub query but have them grouped by another column. View the subquery below. I am attempting to GROUP BY class_id because I need 1 session_id (the one with the MAX(endDate)) from each group of class_ids. SELECT * ~FROM courses A, classes B,sessions C

RE: subquery and group by a non selected field

2003-03-13 Thread mynews
Yes, that is the problem. I do have to have class_id in the SELECT clause, however in order for it to work with the main query the subquery cannot return multiple columns. Here is where my problem lies. How do I group by a column that I cannot have in my SELECT clause? DM = = = Original

RE: CF and PhotoShop

2003-03-14 Thread mynews
Its basically an executable macro. You can save Actions in PS as an .exe called a droplet. Its called a droplet because you can just drop a image file on it and all the actions are applied to it. DM = = = Original message = = = Sorry for the ignorant question ... please define droplet H.

Re: Checking values of input passed to template

2003-03-27 Thread mynews
When you use the image type in HTML is passes the .x and .y coords of where on the image you clicked. If you cfdump the form scope you will see which variables are available to you. Also, if you have multiple image types only the one you click will be passed to the action page. DM = = =

Re: Checking values of input passed to template

2003-03-27 Thread mynews
cfdump var=#form# Cfdump is a CF developer's best friend. Learn to use it and use it often! DM = = = Original message = = = I've never used cfdump. Whats the syntax to dump the variables from the form? cfdump var=query Outputs: query On Thu, 27 Mar 2003 9:55:38 -0500, [EMAIL PROTECTED]

Re: is email-adress wrong ?

2003-03-27 Thread mynews
You can use cfinput type=Text name=email validate=regular_expression pattern=([[:alnum:]_\.\-]+@([[:alnum:]_\.\-]+\.)+[[:alpha:]]+) required=yes David Murphy www.cfugcny.org = = = Original message = = = There is a UDF at cflib.org called IsEmail() I believe (if you're using CF 5 or

Re: Performance Tweaking - Friday Morning Brain Fart

2002-11-01 Thread mynews
Ian, You can use CFSAVECONTENT variable=myDropDown SELECT name=whatever cfoutput query=myQuery option value=#my_id##myValue# /cfoutput /SELECT /cfsavecontent cfoutput#myDropDown#/cfoutput David Murphy www.cfugcny.org = = = Original message = = = Hi all, I've done this

Using CFDirectory on every page

2002-11-06 Thread mynews
Is there a unacceptable performance hit if I were to use cfdirectory on every page of my site? What I want to do is look in each directory for an include and if it isn't there look for that include in the parent directory. This will allow me to use the same include for an entire section but

using cfdirectory on every page

2002-11-06 Thread mynews
Is there a unacceptable performance hit if I were to use cfdirectory on every page of my site? What I want to do is look in each directory for an include and if it isn't there look for that include in the parent directory. This will allow me to use the same include for an entire section but

RE: Using CFDirectory on every page

2002-11-06 Thread mynews
Nice idea. Thanks! = = = Original message = = = Why not try catch a cfinclude instead? CFTRY ~CFINCLUDE TEMPLATE=localtemplate.cfm ~CFCATCH ~~!--- file not found --- ~~CFINCLUDE TEMPLATE=../parentinclude.cfm ~.CFCATCH /CFTRY Or maybe CFIF FileExists(ExpandPath(include.cfm)) ~CFINCLUDE

RE: Using CFDirectory on every page

2002-11-06 Thread mynews
The Application.cfm is being used for many other things so I only want there to be the one I have in the root dir. DM = = = Original message = = = Is there a unacceptable performance hit if I were to use cfdirectory on every page of my site? What I want to do is look in each directory for

Re: [CFUGCNY] Fwd: OT: The Link is up on the NYCFUG Site for Tonight's Flashcom!

2002-11-12 Thread mynews
Matt, That was for the NY city CFUG :). Thay are playing with Flash Communication server at their meeting tonight. I won't be able to atten our meeting tonight, but I thought y'all who were attending might like to tune in for a bit to see what they are up to. You can get directions to the

Reloading VTMs without restarting studio

2002-11-27 Thread mynews
I remember a CFDJ article, I think it was by Ben Forta, about creating wizards in Studio and he told how to reload the wizards without restarting Studio. Does anyone know how to do this? I can't find the article. Thanks. David Murphy www.cfugcny.org

thistag.generatedContent

2003-04-03 Thread mynews
I have a custom tag: cf_myTag Here is a bunch of output /cf_myTag and I want to process the Here is a bunch of output text like this: CFIF thistag.ExecutionMode is 'END' !-- process text then output here -- cfelse !-- do not output text here -- ~CFSET ThisTag.GeneratedContent = /CFIF~

RE: thistag.generatedContent

2003-04-03 Thread mynews
I put the comment in there for you. In 'END' mode I need to process and output the generated content. I left out the processing code because it doesn't play a roll in my problem. The heart of the problem is that the content between my start and end tag is displaying during 'START' mode and I

RE: thistag.generatedContent

2003-04-03 Thread mynews
Thanks guys, That worked. I get it now. I do my processing in 'END' mode output the results of the processing and THEN set thisTag.generatedConent to . Cool thanks, David = = = Original message = = = Move the cfset = into the END processing... where you have it (in the start) there no

SQL Question

2003-06-03 Thread mynews
I have a MS_SQL query (simplified for this question): SELECT * FROM product A,style B,quantity C WHERE A.product_id = B.product_id AND B.style_id = C.style_id AND ORDER BY A.product,B.style,F.productSize I have another table that contains images for some of the products. I would like to

Re: SQL Question

2003-06-03 Thread mynews
How do I do that with multiple tables? All the examples I have onlu use 2 tables. BJ = = = Original message = = = try a LEFT OUTER JOIN. That should work for you. Jeff - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 02, 2003 8:47 AM

Incoming email manager

2003-01-06 Thread mynews
Does anyone know of a prewritten application that handles incoming email? Before I go creating something on my own I wanted to see if anyone had an application already written. We have close to 20 email accounts that serve customer support in diferent ways and as employees change we are

RE: Incoming email manager

2003-01-06 Thread mynews
You might find this strange but I work for a major ISP but we subcontract our email server management and we are unable to get that level of control over the servers. In essence our email accounts are treated exactly like our customer's accounts. I have been given the final word We can't do it

cfc best practice questions

2003-01-09 Thread mynews
OK, I just upgraded to CFMX and I am trying to figure out the best way to handle a form. Usually, in an admin area, I have an action page that handles the add/update/delete for data in a table. This is the action page for the add update form. As an example I may have 3 pages: view

RE: Using CFMX to generate Static HTML pages

2003-01-14 Thread mynews
There is an article at webmonkey with a great way to dynamically create static content with ColdFusion: http://hotwired.lycos.com/webmonkey/02/26/index4a.html?tw=programming David Murphy www.cfugcny.org = = = Original message = = = What is the easiest way to use CFMX to generate static

Re: Session Timer

2003-02-12 Thread mynews
Here is code I wrote to do that: cfset timeout_minutes = 60 cfapplication Name=admin SessionManagement=Yes SESSIONTIMEOUT=#CreateTim eSpan(0,0,timeout_minutes,0)# !--- warn user of session timeout --- cfsavecontent variable=LogOutWarning ~!--- convert minutes to miliseconds --- ~cfset timeout=

Re: Array question...

2002-08-16 Thread mynews
You could use MOD: cfloop from=1 to=#ArrayLen(aMyArray)# index=i cfset aNewArray = ArrayNew(2) ~cfif i NOT MOD 2 ~~cfset aNewArray[i][1] = aMyArray[i] ~cfelse ~~cfset aNewArray[i][2] = aMyArray[i] ~/cfif /cfloop I haven't tested this, its just off the cuff David Murphy www.cfugcny.org = = =

test

2002-08-16 Thread mynews
sorry, my posts weren't going through. ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com. __ Your ad could be here.

RE: Cold Fusion MX Flash MX Applications

2002-08-29 Thread mynews
I disagree, Flash has come along way. In fact, the back button IS supported in MX. Flash also allows you to talk to the DB without a page reload. That alone makes it a much better user experience. Take a look at the petmarket site and the braodmoore hotel reservation site. To argue that it

RE: Dreamweaver MX opinions

2002-09-05 Thread mynews
Is it possible to create wizards in DWMX like you can in Studio? David Murphy www.cfugcny.org ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

Re: Dreamweaver MX opinions

2002-09-05 Thread mynews
You can just drag and drop into CF Studio any files you want to upload; images,databased,text files. I'm not sure waht more you want it to do. David Murphy www.cfugcny.org = = = Original message = = = table wizard is initially in objects pallet - then after that - you;ll notice to mini

RE: CFMX Updater

2002-09-17 Thread mynews
I am getting the same problem. David Murphy www.cfugcny.org = = = Original message = = = Same thing happened to me. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Ken Brocx [mailto:[EMAIL PROTECTED]]

Get Custom tag role

2002-09-17 Thread mynews
I have a custom tag and I want it to know weather it was called using CFmodule or as a custom tag. Is this possible? David Murphy www.cfugcny.org ___ Sent by ePrompter, the premier email notification software. Free download at

RE:Upload size limit (was CFMX Updater)

2002-09-17 Thread mynews
It all depends on your server RAM. The file gets completely loaded into your RAM before it is written to disk. David Murphy www.cfugcny.org = = = Original message = = = I posted this question once before, but I don't remember getting a response and I don't have email from this list that

Get path to CFModule called custom tag

2002-09-18 Thread mynews
Is there any way to get the directory that a custom tag is in and use that info IN the custom tag itself when called with CFmodule? I have a tag that plays two roles- first its a custom tag that generates some code in the calling template second it is an html page that gats called into a

Re: Get path to CFModule called custom tag

2002-09-18 Thread mynews
Thanks, I was thinking that function would give me the path of the calling apge. I should have tried it before posting to the list. Thanks, David = = = Original message = = = GetCurrentTemplatePath(), or a similar CF function? Chris Norloff -- Original Message

document image format

2002-06-13 Thread mynews
I am building an app that lets people search and display scans of old historical documents. Right now the sample documents we are using for testing are jpgs. The problem is that in order to actually read the documents they have to be very large. I'm not too worried about download time but I

Re: Coldfusion Apps You've Built

2002-06-14 Thread mynews
I can't imagine that anybody is happy with everything they have ever coded and if they are they must not be progressing and learning. I think the question is have you ever gone back and modified something for an old client without charging him out of embarassmanet? :) I have BJ = = =

DWMX CF function reference missing.

2002-06-26 Thread mynews
Am I missing something or is there nothing in the help files in DWMX about any of the CF functions? BJ ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

New web dev news feed (WDDX)

2002-06-27 Thread mynews
I thought some of you might be interested in a news feed that I created for sites that are focused on web development, primarily with Macromedia products. Right now it contains news, tutorials, polls, and career developement articles. Also provided with the feed are links to a discussion

CF Administrator Backup

2002-07-02 Thread mynews
I want to create an automatic backup of the registry branch that holds the CF Administrator settings. HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\Currentversion\ Before I get started I thought I would ask if anyone here has done this and if you can suggest which route to take. I tried

RE: Flash MX and Gracefull Web Chat

2002-07-08 Thread mynews
Same here. No firewall. DM = = = Original message = = = I get the same thing, I am not behind a firewall. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent:

Dreamweaver mass file upload

2002-07-09 Thread mynews
Are DWMX questions OT here? If they are ignore this: I am working with DWMX and I have it set-up to 'open file in remote view' and 'save to remote server'. I have a develope on a dev server and when I get things working I upload to the production server. This is very easy to do in CF-Studio

RE: How do I do a SQL insertion attack?

2002-07-11 Thread mynews
So what is the best way to prevent an attack when you need to accept a string? How would you make a query like this safe? cfquery name=qIDs Datasource=dsn SELECT * FROM names WHERE name = '#url.name#' /cfquery I have always avoided using anything but ids in a query, but

Re: OT: Flash and url forwarding

2002-04-23 Thread mynews
If the servers were load balanced it would work like a charm. BJ = = = Original message = = = A friend of mine asked me a question that I do not have an answer for, and this group is great so I though I would ask here. Lets say you go to http://www.mysite.com/index.htm which is a flash site

Re: OT - .NET and CF

2002-04-24 Thread mynews
:) = = = Original message = = = Hi all, I love CF but also want to increase my skills to other languages. Namely ASP.NET. Does anyone know if Macromedia is working on a way to make CF .NET compatible? TIA Mike Bruce __

Re: Displaying the clients outlook folders

2002-04-24 Thread mynews
Just leave the login blank and you will get in. = = = Original message = = = Dave, The sample link you sent requires a login so I didn't really see it. When you say ActiveX control are you referring to the Outlook Viewer you mentioned in the previous message? Where do I get/access the

RE: Macromedia XML feed contest

2002-04-24 Thread mynews
Yes, I agree. That is very strange. DM = = = Original message = = = Fascinating that the feed isn't in WDDX - you have to use an external method of parsing it. --- Billy Cravens -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 6:18

RE: Macromedia XML feed contest

2002-04-24 Thread mynews
It seems like it would be perfect for this. Would they consider creating a 2nd feed as WDDX? = = = Original message = = = Paul wrote: ...I guess WDDX isn't cool enough :) I don't think that's it at all. The XML feed was developed by one of our Flash folks (Mike Chambers), and he felt that

RE: Macromedia XML feed contest

2002-04-24 Thread mynews
Cool! = = = Original message = = = I'll ask! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 1:44 PM To: CF-Talk Subject: RE: Macromedia XML feed contest It seems like it would be perfect for this. Would they consider creating a

Re: Problems? I'm gettings Quadrophonic Posts!

2002-04-24 Thread mynews
no = = = Original message = = = Problems? I'm gettings Quadrophonic Posts! Anyone else getting hit with 4 emails per post this afternoon? -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:50 PM To: CF-Talk Subject: Test I think

RE: Macromedia XML feed contest

2002-04-25 Thread mynews
Does anyone know how o parse XML when you don't have access to the server? In a shared hosting enviornment wddx is the easiest option. = = = Original message = = = just wondering but isn't wddx a form of XML? couldn't you use an XML parser to parse WDDX packets? if this is true, then

RE: Macromedia XML feed contest

2002-04-25 Thread mynews
Cool! Thanks! I found it at cflib.org BJ = = = Original message = = = If you guys are running CF5, Jeff Houser created a UDF that parses the XML feed. I have used it and its pretty cool. Clint -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday,

ToBinary error

2002-04-25 Thread mynews
I wrote an app that inserts uploaded and cfhttp download images into a SQL-server and from there writes the images out to all my mirrored servers. It works great, however, I have this one graphic from a partner that provieds me with weather info. The graphic changes every 15 min so I grab it

RE: Hosting

2002-04-25 Thread mynews
I'm going to try them. = = = Original message = = = Wow! very cool. At 02:21 PM 4/25/02 -0500, you wrote: I have been very happy. Yep, they will even install CFX for you. -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 2:13 PM To:

Re: ToBinary error

2002-04-25 Thread mynews
I figured it out. It was a size issue. That graphic was 62K. The biggest I had tried other that that was only 12k. I had to Enable Retrieval of Long Text in the ODBC connection and increase the buffer size. Thanks if you were attempting to find a solution to this problem. = = = Original

RE: ToBinary error

2002-04-25 Thread mynews
The amount of degradation is not an issue in this case. The app has its own datasource and only runs when someone uploads files or images to the system. Maybe 30 a day. BJ = = = Original message = = = On that note, I recall hearing that there are some performance issues at stake by raising

RE: javaScript (simple)

2002-04-26 Thread mynews
This is what I use: script !-- //delete confirmation function deleterecord(recordID) { if(confirm(This will delete this record. Are you sure you want to continue?)) { document.location=delete_recordss.cfm?recordID=+recordID; return true; } else { return false; } } //-- /script and in the

will cftransactoin work?

2002-04-26 Thread mynews
I asked this last week and I wasn't sure about the answer. I have 3 computers accessing a SQL-server at the same time. I need the DB to be locked so they can't read/write the data at the same time. How do I get the servers to get in line and wait for each other? BJ

RE: will cftransaction work?

2002-04-26 Thread mynews
= = = Original message = = = This is an automatically generated Delivery Status Notification. Delivery to the following recipients failed. [EMAIL PROTECTED] = Inline Message == To: [EMAIL PROTECTED] From: [EMAIL PROTECTED] Date: Fri, 26 Apr 2002 9:57:51 -0400

RE: will cftransactoin work?

2002-04-26 Thread mynews
The problem is that each Server has to read and THEN write before the next one reads. Any ideas? BJ = = = Original message = = = I have 3 computers accessing a SQL-server at the same time. I need the DB to be locked so they can't read/write the data at the same time. How do I get the

RE: WDDX Breaking Hidden Field

2002-04-26 Thread mynews
XMLFormat() was created just for this purpose. BJ = = = Original message = = = well a regular replace would work as well now that I think about it: CFSCRIPT ~wddx = Replace(wddx,',##39;,ALL); ~wddx = Replace(wddx,'',quote;,ALL); /CFSCRIPT That should help some yes? Tim Heald ACP/CCFD :)

Re: will cftransactoin work?

2002-04-26 Thread mynews
Sure. I am using SQL_server 2000. The servers are all mirrored and they run update agents every so often. The table in question shows which agents ran at which times. I only want a server to run an agent if that agent hasn't run in X minutes. So the servers check to see when it ran last if

Dreamweaver MX

2002-04-29 Thread mynews
I have been playing with DWMX this morning and its painful. I have never used DW before. It seems like its complicated for no reason. I am using the CODER view and I am in need of some serious hand-holding. Is Expression Builder in here anywhere? Is there RDS or do we have to work on

Re: New list perhaps?

2002-05-01 Thread mynews
I don't think it warrents a new list. The newness will pass and besides CFMX questions will soon be CF questions anyway. BJ = = = Original message = = = At least in the short term, most of the traffic has been about MX (cf, dw, etc) Would it be a good idea to set up a new list? (Maybe

Moving CF admin?

2002-05-06 Thread mynews
Sorry, I know this was asked before. How does one move the CF Administrator on a server that already has CF installed? BJ ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

Re: Linkpoint API

2002-05-06 Thread mynews
Does anyone know which cf-hosts support the LinkPoint API? BJ = = = Original message = = = I use the LinkPoint API and CFX tag on the DtDNS site and have never had any major issues with them. They do take their reports, etc down now and then for maintenance, which is mildly annoying. They

sign up for FlashCoders?

2002-05-09 Thread mynews
Anyone know the URL to sign up for Brendan Hall's FlashCoders listserv? BJ ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

RE: sign up for FlashCoders?

2002-05-09 Thread mynews
Great Thanks! = = = Original message = = = http://chattyfig.figleaf.com signed up today :) Adam. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 2:04 PM To: CF-Talk Subject: sign up for FlashCoders? Anyone know the URL to

RE: restarting a service

2002-05-10 Thread mynews
Or you could schedule the .bat file in Win 2000 scheduler = = = Original message = = = Couldn't you use CFEXECUTE and call a bat file that does a NET STOP and NET START ? -Original Message- From: Mario Martinez [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 10:13 AM To: CF-Talk

Ben Forta to Speak at CFUG CNY MAY 15

2002-05-10 Thread mynews
Just wanted to let anyone within earshot of Syracuse, NY know that Ben Forta will be speaking at our monthly CFUG meeting on Wed May 15th. Admission is free and Ben will be discussing the new MX line of products. For more info visit http://www.CFUGCNY.org Hope to see you there, BJ

Re: [flasher] Is Flash safe to drive?

2002-05-14 Thread mynews
This dude is just messin' with us. I think we should ignore him. He is apparently ignoring every email on this thread. Oh yes, he comments on them but he doesn't answer the direct questions. You may ask, BJ, why are you talking like he's not here? Answer: ? Bill? I will shout from the

Dependant selects solution?

2002-05-16 Thread mynews
There was a thread yesterday about dependant selects and someone posted some code. I have, unsuccessfully, tried to get it to work. Can someone give me some help? I need both selects to be populated by queries. Thanks, BJ ___ Sent by

Re: Get date/time from browser?

2002-05-16 Thread mynews
I needed to do just that on a project a while back so I dug up this file for you. I haven't looked at it since I did it, so if you have problems or questions let me know and I'll take a closer look. DM * cfif isDefined('set') ~cfoutput ~Your Time: #TimeFormat(hour,h:mm tt)#br

RE: dynamic image

2002-05-23 Thread mynews
If you can get away with having Flash content on the site it's a great way to put text on images. You can pull the text from a DB. You can animate it. You can use whatever font you want (as long as you include the font outlines). BJ = = = Original message = = = Put the image in the

Rumor of lay-offs

2002-06-03 Thread mynews
Can anyone confirm or deny this: http://comments.fuckedcompany.com/phpcomments/index.php?newsid=87356sid=1pag e=1parentid=0crapfilter=1 BJ ___ Sent by ePrompter, the premier email notification software. Free download at

storing session variables in DB

2002-06-04 Thread mynews
I have a set of mirrored servers that are running off 1 SQL_server. I have to recode the apps that use session variables because a user could jump to a different server during a session. Is there a simple way to fix this? Can 2 different servers be aware of the same session? Can I store the

RE: storing session variables in DB

2002-06-04 Thread mynews
But I need the user to have the same session if he gets bumped to the other server. I'm not worried about them sharring sessions, I'm worried about a person losing his session if he suddenly switches machines. BJ = = = Original message = = = dude all you have to do is make sure that each

RE: storing session variables in DB

2002-06-04 Thread mynews
You're awsome thanks! I am checking out client variables now and I think I will rewrite my apps to use them and then let CF store them in a DB and just purge them every day. BJ = = = Original message = = = see I found a mistake already :P. cfset request.thissession =

Client Variable DB storage

2002-06-04 Thread mynews
On page 549 of Forta's CF 5 book he outlines how to store client vars in a DB. Step 1 reads If you want, you can use an existing database, but we recommend hat you use a fresh, dedicated database for storing client variables. but it doesn't say why. I would think that if i have a dedicated

RE: Client Variable Storage Question

2002-06-04 Thread mynews
In CF Administrator under client variables and after you choose which DB to store the variables in; there is a checkbox that reads Create Client database tables. make sure that is checked. BJ = = = Original message = = = Hi All I'm going a bit mad. I have a site - (CF5/SQL7/W2000) on my

Re: MY recipe Database

2002-06-06 Thread mynews
My site has a similar app. We just store the entire recipe as pieces of text. One for the desription, ingredients, and preparation. DM = = = Original message = = = I have created a application that will allow for an insertion of recipes the only problem I am running into is I want the user

RE: Hacking a shared SQL server

2002-06-06 Thread mynews
omatically generated Delivery Status Notification. If I need to keep someone from being able to guess a primary key I create a second field that contains a random number. That way the data will only show if the random number and the primary key are correct. BJ = = = Original message = = =

DB Table Naming Conventions

2002-06-12 Thread mynews
I'm just curious, What naming conventions for DB tables do you use? BJ ___ Sent by ePrompter, the premier email notification software. Free download at http://www.ePrompter.com.

RE: DB Table Naming Conventions

2002-06-12 Thread mynews
what about naming the actual tables? Do you have naming conventions for lookup tables, many to many relationship tables, data storage tables, ect? I have seen people put a 'tbl' prefix to every table and an 'sp' prefix to all stored procedures... what else? BJ = = = Original message = = =