FW: How do you concatanate two table fields in CFQUERY with MS Access

2004-05-15 Thread Angel Stewart
Well Sandy...I tried that initially but it just didn't work. So I thought I was doing something totally wrong and that Access SQL uses something beside the +. But! Good news! I tried that code in an SQL Statement with nothing else but Select atfname + ' ' + atlname AS Agentname FROM tblagent

How do you concatanate two table fields in CFQUERY with MS Access

2004-05-14 Thread Angel Stewart
Hey all, I need some help with MSAccess SQL statements. This code throws the error: Too Few Parameters SELECT tblusers.username, tblJobSeekers.jsfname, tblJobSeekers.jslname, tblJobSeekers.jsemail, tblJobSeekers.jscountry, tblJobSeekers.pverify, tblJobSeekers.jsphone1, [atfname] [atlname]

Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Angel Stewart
Hey all, I checked the archives, I could have sworn this was mentioned before! But I couldn't find any messages dealing with it, so here goes. How do I transfer my dreamweaver settings, including the Sites that I have created, to a new machine to duplicate my development environment? I

Sort snippets list in Dreamweaver MX 2004?

2004-02-04 Thread Angel Stewart
Is there anyway I can sort Snippets lists that I create in Dreamweaver MX 2004? Currently it sorts them with the last one I entered at the top of the list. I'd like to sort them alphabetically. Anyone know a way? Thanks, -Gel --- Outgoing mail is certified Virus Free. Checked by AVG

RE: Sorry OT contracting agreement

2004-01-31 Thread Angel Stewart
Thank you very much, this will be extremely useful to me for my freelance work. Thanks! -Gel -Original Message- From: Alan Rafael Bleiweiss [mailto:[EMAIL PROTECTED] This may be of use to many people on the list... I have online real world examples of three docs that are my

Selecting a specific row from the cfquery?

2004-01-21 Thread Angel Stewart
I'm trying to randomly bring back a specific row from a query recordset. How do I do that? I can't figure it out. :-\ The query is GetItem and I'm using CFSET itemtodisplay = #RandRange(1,#getitem.recordcount#)# So I need to display the #itemtodisplay# row of the query. Been looking through

RE:SOLVED: Selecting a specific row from the cfquery?

2004-01-21 Thread Angel Stewart
Yes! That worked perfectly! :) Thank you. -Gel -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Use Array Notation #query.column[row]# EX. #getItem.ItemName[itemtodisplay]# #getItem.ItemDescription[itemtodisplay]# --- Outgoing mail is certified Virus Free.

RE: Writing a new page dynamically

2004-01-14 Thread Angel Stewart
Is there a specific reason why you don't want to add the two dates to a database table called tblPopupInit or something like that and simply read them from there? You should be able to use the WRITE attribute of the CFFILE tag to write a string variable to the file. You can create the string

RE: MS Access password

2004-01-13 Thread Angel Stewart
There are password removal programs for access .mdb files. Do a search on google. You need to purchase them though. They will display the password for the file to you. These also exist for .zip, .doc and most other common file formats. Here's a quick list,you should find something to

RE: Concatanating fields with special characters.

2004-01-12 Thread Angel Stewart
Hey all, CFSAVECONTENT truncates the variable the same way as CFSET does. I can't think why. I suppose the next step is to write code that will replace all and / with and // ? I can't believe there's not a quick, built in way to do this. Anyone have any other suggestions? -Gel

RE: Concatanating fields with special characters.

2004-01-12 Thread Angel Stewart
Hmm, htmleditformat() seemed to have done the trick in conjunction with cfsavecontent. I wrapped the header and footer sections of code with htmleditformat. Then I used cfsavecontent before a cffile statement to output the new 'page' to the file: CFSAVECONTENT variable=pagerebuild

Concatanating fields with special characters.

2004-01-09 Thread Angel Stewart
I have a variable that I am filling with the top header of an HTML page. So the content is: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN HYPERLINK http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtdhttp://www.w3.o rg/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=HYPERLINK

RE: CFDJ isn't exactly kicking bootay

2004-01-08 Thread Angel Stewart
Odd that you should mention them. As in their web development section Coldfusion isn't listed as one of their supported scripting languages. They have listed ASP,PHP,_javascript_ and others, but not CFML. I've found one article on the CFLOGIN tag under the Architect heading. What area of

RE: CFDJ isn't exactly kicking bootay

2004-01-08 Thread Angel Stewart
Ah, there are a couple. So odd CF isn't listed anywhere on their site navigation under web development though. I also find many of the articles to be quite light in comparison to those found on CFDJ. -Gel -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] HYPERLINK

RE: CFC Not showing in CFC Explorer

2003-12-16 Thread Angel Stewart
Is the CFC stored in the standard custom tags directory in CF? If it isn't then you need to create a CF mapping to the directory where the CFC is found. Then it should show. -Gel -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] What would cause a CFC/CFC

RE: Referencing a .CFC in a sub directory.

2003-12-09 Thread Angel Stewart
: Could not find the ColdFusion Component components.helpdesk_users. Please check that the given name is correct and that the component exists. Can anyone tell me where I'm going wrong or if this is even possible? -Gel -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED

SOLVED: Referencing a .CFC in a sub directory.

2003-12-09 Thread Angel Stewart
Thanks Mike, I created a mapping called hdcfc and pointed it to the helpdesk/components directory. This has worked with invoking the CFC using CFINVOKE components=hdcfc.helpdesk_users.cfc Thanks a lot :-) -Gel -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED]

Prism Antivirus in HOF footer...

2003-12-09 Thread Angel Stewart
This is the first time I've heard about this product, from the Ad at the end of one of these messages. PrismAV for ColdFusion is a custom tag that allows you to scan for, and repair, virus-infected files from your ColdFusion environment. It is the first and only anti-virus solution designed

Referencing a .CFC in a sub directory.

2003-12-08 Thread Angel Stewart
Hello all, I have a directory structure off a particular webroot on a multihomed server: /admin /public /components. I placed my .cfcs in the /components directory. I am trying to call the CFCs using cfinvoke and also directly using the form action="" attributes. I do not want to

RE: Referencing a .CFC in a sub directory.

2003-12-08 Thread Angel Stewart
Just some additional info, I have gotten the CFCs to work perfectly via the FORM Action attribute using the html pathname of the CFC. Action="" Method=POST Works fine. Can't get the CFINVOKE to work. -Gel -Original Message----- From: Angel Stewart [mailto:[EMAIL

Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Angel Stewart
Hello all, i am trying to write a modular application using .cfcs. I'm now trying to use a .cfc to handle a data input/edit/delete series of actions, direct from a form. i.e. I have form name=Userdetail action=""> METHOD=POST . However, this looks for heldesk_user.cfc in the current

Re:Calling CFCs directly from Form Action attribute.

2003-12-03 Thread Angel Stewart
That's what I figured. I was hoping there might have been some form of fancy dot notation or something to get it to recognise the internal CF Mappings. I guess not eh ? :-) -Gel [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Register Trial version of CFMX...

2003-11-29 Thread Angel Stewart
Really? Well when I installed from the 150MB 6.1 installer, it installed JRun as a seperate entity which I hadn't seen before. It also required me to set up javaclasspaths etc. and deployed as a java application on the Jrun server etc. Are you saying that after the trial version, if I

RE: Register Trial version of CFMX...

2003-11-28 Thread Angel Stewart
Hi, That's what it did for me when I tried to install the Enterprise Trial version off the Macromedia website. I used a valid CFMX 6 Professional serial number. -Gel -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Hey All, Does anybody know what will happen if

RE: Register Trial version of CFMX...

2003-11-28 Thread Angel Stewart
Yeah.. that was on initial installation. I re-read your question, and I'm wondering if you mean after installing CFMX Enterprise if you are expecting it to 'de-install' itself and revert to a CFMX Professional installation. The two installation types are very different. One installs Jrun

RE: Correct syntax

2003-11-27 Thread Angel Stewart
Bushy... You really should take the time to read through the Building CF Applications book that came with CF, and purchase Ben Forta's WACK. It will help you out a lot. -Gel Hi, I'm passing the following from one template to another... A HREF="" 1/A br A HREF="" 1/A Then I'm doing the

RE: Correct syntax

2003-11-27 Thread Angel Stewart
The documentation that came with CF isn't really for advanced users, but its the first step to getting to be an advanced user ;-). It gets you a firm grounding in the concepts of the language. Another good book is Ben Forta's Coldfusion Web Application Construction Kit. It explains concepts

RE: Error with Web Connector after installing CFMX 6.1

2003-11-25 Thread Angel Stewart
using the static ip of your box). so, if you have any firewalls, ipsec rules etc.. disable them and run the connector executable again. You can also check the log files to dig more info. - Original Message - From: Angel Stewart To: CF-Talk Sent: Monday, November 24, 2003 11:00 PM Subject

RE: Error with Web Connector after installing CFMX 6.1

2003-11-25 Thread Angel Stewart
- From: Angel Stewart [mailto:[EMAIL PROTECTED] Ok let's go back to my original error. Only by entering 127.0.0.1 directly instead of localhost did I get the connector to do anything. Obviously though, this was not the solution as it seems to have caused errors later on. Why can't I connect

RE: Error with Web Connector after installing CFMX 6.1

2003-11-25 Thread Angel Stewart
know what could be causing all these errors? It looks to me like a server config/IIS error at this point. -Gel -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 8:27 AM To: CF-Talk Subject: RE: Error with Web Connector after installing CFMX

Error with Web Connector after installing CFMX 6.1

2003-11-24 Thread Angel Stewart
I got some errors with CFMX, where it had totally stopped processing CFM pages. All I would get when I visited a CFM page was a blank screen. I've just uninstalled, rebooted..reinstalled and rebooted CFMX. After the reinstall I got a message saying that the web connector installation had

RE:Unable to Update the CFMX ODBC Server ( Was Error with Web Connector after installing CFMX 6.1)

2003-11-24 Thread Angel Stewart
I fixed this by using 127.0.0.1 . I've now run into another problem: Unable to update the ColdFusion MX ODBC Server. Timeout period expired without completion of F:\CFusionMX\db\slserver52\admin\swcla.exe I get this everytime I try to add a DNS through the CFMX Administrator. Any word

RE: Unable to Update the CFMX ODBC Server ( Was Error with Web Connector after installing CFMX 6.1)

2003-11-24 Thread Angel Stewart
So umm... anyone ever encounter this error? I can't seem to find a way around it. 0_0 -Gel -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] I fixed this by using 127.0.0.1 . I've now run into another problem: Unable to update the ColdFusion MX ODBC

RE: Cool Fusion - infusion Mail server - any opinions?

2003-11-14 Thread Angel Stewart
No..but if you're buying it buy it by clicking the link in the ad on these pages so HOF gets the referral cash ^_^ These lists run on iMS I believe. -Gel -Original Message- From: Rafael Bleiweiss [mailto:[EMAIL PROTECTED] Saw a banner on this list for the Cool-Fusion built mail

How do you backup MSAccess databases?

2003-11-11 Thread Angel Stewart
Hey there, Does anyone know of a good method for backing up a directory of ms access databases that are used as datasources for CF websites? I run into the problem where the 'file is in use' and therefore cannot be moved. This is on CFMX. -Gel [Todays Threads] [This Message]

RE: QUERY TABLE DATA INFORMATION

2003-11-11 Thread Angel Stewart
Wish this could be done with MS Access :-( -Gel -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] use information_schema - it's a LOT easier select table_name from information_schema.tables Simple, isn't it? g [Todays Threads] [This Message] [Subscription]

RE: randRange(); just how random is it?

2003-11-08 Thread Angel Stewart
There should be a way to re-seed the random number generator. -Gel -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Are you calling randomize a lot??? If you do, your random sequences won't be all that random Paul [Todays Threads] [This Message]

RE: [Stats] CF-Talk: October 2003

2003-11-06 Thread Angel Stewart
Oh. Damn. 0_0 You don't get money just from people clicking the Ads? Well that sucks. It's not your fault if they don't want to buy a product that they've seen. TV Stations are paid regardless of if someone actually calls the 1-800 number on the screen to order anything. Billboard space

RE: [Stats] CF-Talk: October 2003

2003-11-05 Thread Angel Stewart
Can we do a stats search ourself? A drop of 10% from one month to the next may or may not be significant when taken in context of other months eh? ;-) July had a grand total of 977 posts according to a search on everything done between 01 July and 31 July 2003. In fact the list

RE: [Stats] CF-Talk: October 2003

2003-11-05 Thread Angel Stewart
] On Wednesday 05 Nov 2003 11:54 am, Angel Stewart wrote: I wonder how many people would disappear if we all had to pay a yearly/monthly subscription for these lists? I'd go. Why pay for something I can get elsewhere for free ? -- Tom Chiverton Advanced ColdFusion Programmer [Todays Threads

RE: ColdFusion workshop - any ideas?

2003-11-04 Thread Angel Stewart
Ben Forta's CF WACK would be a good reference guide! www.easycfm.com is a site with a lot of tutorials from beginner to expert that could be used to give examples of code in action. cftipsplus.com also has useful articles that would tie into a variety of those topics listed below. Of

RE: (Admin) Respect

2003-10-17 Thread Angel Stewart
Guys in black suits showed up at MikeyD's house! In black SUVs... And snipers were standing on the neighbours mailbox to get a good vantage point... And there were helicopters...and and...SWAT teams rapelling! And..and they busted in and yelled they had a warrant...and someone even came

RE: Giving up on DW 2004 MX

2003-10-15 Thread Angel Stewart
A problem that keeps popping up for me is a bug where the program doesn't recognise that a page has been saved when you do a ctrl-s or select save from the File menu. It remains with an * next to it. I have recently learnt that only clicking Save All gets around this. That's the most

RE: Giving up on DW 2004 MX

2003-10-15 Thread Angel Stewart
This is totally in Code view. THat's where I usually stay, and after I finish off writing a loop or osmething I typically do a Ctrl - S. It apparently saves the file, but the asterisk remains. Only when I click Save All does the asterisk disappear, indicating that the file is only now being

RE: Giving up on DW 2004 MX

2003-10-15 Thread Angel Stewart
WEll I'll be. You're right. Even in Code view, I need to press F5 and then save, before it is considered Saved. I don't like that 'feature' if that's what it is. What's the point of that?? -Gel -Original Message- From: Scott Fegette [mailto:[EMAIL PROTECTED] If you're in code

RE: Giving up on DW 2004 MX

2003-10-15 Thread Angel Stewart
Sent! As a bug :-) I don't think you should ever need to refresh the page in order to save it/have it recognised as being saved imNSho. :-) -Gel (in my NOT SO humble opinion) *grin* -Original Message- From: Scott Fegette [mailto:[EMAIL PROTECTED] Good to hear that little 'test'

RE: Looking for Cold Fusion Forum similar to FuseTalk

2003-10-11 Thread Angel Stewart
We need a good CFMX based Site Manager as well! Like all of those that are popping up for PHP and now Python dammit!!! ^_^ I can never understand why no one writes these Open Source lite CMSs for CF. I guess...there is something to having the software be free(PHP,Python). More people use

RE: Looking for Cold Fusion Forum similar to FuseTalk

2003-10-11 Thread Angel Stewart
What about www.simplemessageboard.com ? -Gel [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Survey: Open Source CF Stuff (was Looking for Cold Fusion Forum similar to FuseTalk)

2003-10-11 Thread Angel Stewart
How about setting up a little poll somewhere? Maybe even an Opensource one ^_^ hee hee -Gel -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] My last post on this subject got me to thinking: why isn't there more CF Open source?How do you guys approach the topic: 1) I

RE: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Angel Stewart
This sounds fantastic! Would you be able to write Java applications in Jython (I am assuming that Python is a lot easier to write than Java code) to run on Cell Phones? :-) Where can I get Jython? err...I guess I could Google it... -Gel -Original Message- From: Jim Campbell

RE: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Angel Stewart
Whitespace in the code is important? In this day and age that seems pretty backward :-) -Gel -Original Message- From: Jim Campbell [mailto:[EMAIL PROTECTED] :) On the internet, no one can see you laughing.That, and pretty much any Python IDE will keep your code nice and

RE: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Angel Stewart
WHat you are describing there could very well be done with PHP Site generators that do everything for you, whilst you just pick and choose options. If there was an application like this in CF you would have the same timetable for completion, since all the work of developing the site is more or

Performing simple Flash .CFM actions, whats a good resource??

2003-10-09 Thread Angel Stewart
Flash seems to be the 'next thing' with regards to interface design. However, so far I've seen very little comprehensive tutorials for beginners on how to a) Get data from Flash into a database via a CFM file which can contain Form verification code etc. b) Take data from a query

Getting Field names and datatypes from MS Access database

2003-10-05 Thread Angel Stewart
Hey all, this topic was touched on a few threads back, but it was never fully resolved. How would I get the fieldnames and their corresponding data types for a specific table in an access database using coldfusion? -Gel [Todays Threads] [This Message] [Subscription] [Fast

RE: ...this HTML cf-talk system

2003-10-04 Thread Angel Stewart
Hmm..perhaps you should follow the directions on the site and send an email to Michael telling him of the problem. Although I'm sure he'll catch this message, that would be amore direct method if you've found a bug. I , for one, love the fact that a few companies have signed on with HTML ads

RE: ...this HTML cf-talk system

2003-10-04 Thread Angel Stewart
He practically begs for bombardment! *hefts a few stale muffins* ^_^ -Gel -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED] Hmmm, thanks Angel. Thought I'd ask here first to see if anyone could point me to my obvious mistake first rather than bothering Michael. Given

RE: Errors in table Design view of Dreamweaver MX 2004.

2003-10-03 Thread Angel Stewart
Correct. REmoving those CFOUTPUT tags has the tables displaying just fine in Dreamweaver MX 2004. Once I put the tags back in, it's messed up again. Is there anything I'm missing here? I use this same code in several other sites, wrapped with the CFOUTPUT tags, and I've never noticed this

RE: How do I tell what fields are in my tables...

2003-10-02 Thread Angel Stewart
Where'd you find that out? I've been looking through CFWACK for the CFQUERY tag, and I can't find anything that mentions the columnlist variable for CFQuery. Is there also some other variable that stores field type? -Gel -Original Message- From: Shawn Regan [mailto:[EMAIL

RE: How do I tell what fields are in my tables...

2003-10-02 Thread Angel Stewart
Hmm.. So how would you determine the field type of the underlying table for a query? Manually test each field with IsNumber,IsDate,IsBoolean etc. etc. ? -Gel -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] nothing that returns field type. cfquery returns 3

RE: security flaw in web services

2003-10-02 Thread Angel Stewart
So then what would be a foolproof way to secure them? -Gel -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] It looks to me like there's a problem with web services, specifically the ones that allow logins. Basically, a username/password is sent to the service and

Errors in table Design view of Dreamweaver MX 2004.

2003-10-02 Thread Angel Stewart
d td/td td/td /tr /table /td /tr /table table ALIGN=CENTER tr td div ALIGN=CENTER CLASS=style1Site Designed By a HREF="" PROTECTED] mailto:[EMAIL PROTECTED] Angel Stewart/a. Copyright(C) 2003 214th Annihilators /div/td /tr /table /body /html The page in design view in DWMX200

RE: Errors in table Design view of Dreamweaver MX 2004.

2003-10-02 Thread Angel Stewart
WEll gee. Ya know..I never thought about that. Gosh...you're a really bright dude! But this answer still doesn't tell me whether there IS a problem with DWMX that others with DWMX 2004 would experience with the same bit of code I cut and pasted...does it?? So therefore I don't know if it's a

RE: CFV: comp.lang.coldfusion Usenet Newsgroup

2003-09-27 Thread Angel Stewart
Can you try again? 0_0 -Gel -Original Message-From: Dave Hodder [mailto:[EMAIL PROTECTED] For those who are interested, the results for comp.lang.coldfusion can now be found on news:news.announce.newgroups (message news:[EMAIL PROTECTED]).There were 96 YES votes, 8 NO votes, 3 abstaining

RE: CFV: comp.lang.coldfusion Usenet Newsgroup

2003-09-27 Thread Angel Stewart
So can you try again? -Gel -Original Message-From: Dave Hodder [mailto:[EMAIL PROTECTED] It was a vote to create a Usenet discussion forum under the comp.* hierarchy.The full results, including the list of voters and rationale are at

RE: What happened to my digest?

2003-09-25 Thread Angel Stewart
I think Michael really goes out of his way to assist those that run into problems on the lists as well. He's been very attentive to our comments and our suggestions, and if it was not necessary to run banner ads then I don't think he would have made the switch to HTML. Another thing we should

RE: HTML format list

2003-09-23 Thread Angel Stewart
It's you :) You can set your preferences back to Plain Text. I for one really like the new format though. -Gel -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 10:25 AM To: CF-Talk Subject: HTML format >

RE: (Admin) disclosure

2003-09-18 Thread Angel Stewart
Did you remove signatures too? 0_0 -Gel -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Yep. The request was made and I compiled the information and made it available to them. I saw no reason not to do so and every reason to do it. They didn't ask for user

Best method for securely deleting a record

2003-09-16 Thread Angel Stewart
Hey all, I've done this many times before, but I am now doing an application where I need to be a bit more careful with regards to security. What's the best way to delete a record? When you Insert a record that's fine..no trouble there. Updating? You could forward the ID as a Form field, and

Transferring Snippets.

2003-09-16 Thread Angel Stewart
Hey all, How do I transfer snippets from Dreamweaver MX to Dreamweaver MX 2004?? -Gel ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe:

RE: Transferring Snippets.

2003-09-16 Thread Angel Stewart
*Shakes head* Someone should be thwapped with a foam bat. :-) I found it Thanks, -Gel -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] First of all, blame MM for not doing this during installation... Then, you have to manually move the files, this TechNote should help

RE: Date problem with CFMX and Oracle

2003-09-16 Thread Angel Stewart
Mm..is Status a reserved word? -Gel -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED] I am trying to do an update to my DB: UPDATE BookInventory SET Status = 'Checked Out', CheckedTo = 'rayb', ChgDate = {ts '2003-09-16 16:08:22'} WHERE id = 2043 This worked

RE: (Admin) List upgrades

2003-09-15 Thread Angel Stewart
A few questions: 1. What is the best RSS reader? Dunno 0_0 2.a link on each post to send the user directly to the post in the archive.or after (a footer)? A footer. 3.does anyone actually look at the message footers? Sometimes. If they were pretty HTML probably a lot more. 5. Would

Outputting hash signs and other 'reserved' symbols to a file

2003-09-11 Thread Angel Stewart
CFLOOP List=#form.displayfields# Index=qryfieldname CFSET DisplayTable = DIsplayTable TD#chr(23)#qry_ListAll. #qryFieldName# #Chr(23)#/TD#chr(10)# /CFLOOP I am trying to generate a .cfm page that contains a table listing, so that I can just select some values on a form, click submit

RE: Outputting hash signs and other 'reserved' symbols to a file

2003-09-11 Thread Angel Stewart
the values with ## ? -Gel -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] CFLOOP List=#form.displayfields# Index=qryfieldname CFSET DisplayTable = DIsplayTable TD#chr(23)#qry_ListAll. #qryFieldName# #Chr(23)#/TD#chr(10)# /CFLOOP I am trying to generate

RE:SOLVED: Outputting hash signs and other 'reserved' symbols to a file

2003-09-11 Thread Angel Stewart
This code works: CFSET DisplayTable = DIsplayTable TD#chr(35)#qry_ListAll.#qryFieldName##chr(35)#/TD #chr(10)# It produces: td#qry_ListAll.casinoname#/td That's what I was looking for :-) I think that's easier to read than ##qryListAll.#qryFieldName### and easier to edit later if things

RE: Outputting hash signs and other 'reserved' symbols to a file

2003-09-11 Thread Angel Stewart
not sure what the chr(23) s are for. In my ascii chart, chr(23) = ETB (end of trans. block). So, I would leave them off. Steve -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] CFLOOP List=#form.displayfields# Index=qryfieldname CFSET DisplayTable = DIsplayTable TD

Dreamweaver MX 2004-CF inclusive features list ;-)

2003-09-08 Thread Angel Stewart
http://www.macromedia.com/software/dreamweaver/productinfo/features/ Makes Frontpage look like a crumpled post-it note! ;-P -Gel ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

RE: Can this be done?

2003-09-08 Thread Angel Stewart
I presume you don't have a URL to a working example so we can see it in action? -Gel -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Hello all.. I'm bidding on a job and the client told me something that a competitor does that seems pretty amazing. He said that this

RE: Filter file type upload

2003-09-01 Thread Angel Stewart
Have you tried restricting the MIME type in the CFFILE upload tag itself? ACCEPT: Limits the MIME types to accept. Comma-delimited list. For example, to permit JPG and Microsoft Word file uploads: accept = image/jpg, application/msword The browser uses file extension to determine file type. -Gel

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
It's like = hypothetical. -Angel -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] It's like New Atlanta came out with an IDE for CFML and in the next revision mentioning pages upon pages of new features for .Net and nothing for the standard Bluedragon server, whilst

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
Oh. So MM is only concerned with the current crop of Coldfusion users who visit these lists and are wise enough to the sh**. I see.And you're quite ok with this. I thought the purpose of Marketing a new product was to keep existing clients and gain new buyers for a product. I thought that

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
prominent, they screwed up, and we're not letting them live it down, but at the same time that wasn't a whole lot more to say (that was CF specific). Ben -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 4:17 PM To: CF-Talk Subject: RE

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
Please re-read my statements, and keep on topic. I am talking about the most recent marketing campaign for Dreamweaver MX 2004 and the ommission of CF in that campaign. Thanks, -Angel. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Speaking for myself, I do

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
I wasn't implying that MM should focus their campaign primarily on CF. I was talking about a campaign inclusive of CF period, which this, admittedly, was not. -Angel -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] It computes just fine to me. As a CF developer, I'm

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
2004 marketing campaign has helped me as a CF Developer/Web shop? No. Refute that if you like, I stand by my statements. -Angel -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] On Thursday, August 28, 2003, at 09:52 AM, Angel Stewart wrote: I thought the purpose

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Angel Stewart
Listen, I am by far not the only one that has responded to this topic,so don't make it appear as though I'm bitching up a storm unnecessarily. From Ben Forta's reply, the thread has been read and salient portions sent onto the right people. Ergo the discussion has helped in whatever small way.

SQL : Finding element in list of values in a query field.

2003-08-27 Thread Angel Stewart
Hey all, Say for example I have a table: Firstname Lastname Address Talents. Talents for one record is: acting,dancing,singing. For another record it is : dancing,singing,music I want to construct a query to find all those with dancing as a talent. How would I do that using SQL...*can* I

RE: SQL : Finding element in list of values in a query field.

2003-08-27 Thread Angel Stewart
remember why. Good grief. Time to stop coding and go sleep!!! ^_^ -Angel -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] select * from blah where blah like '%dancing%' :) tw -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Hey all, Say

RE: SQL : Finding element in list of values in a query field.

2003-08-27 Thread Angel Stewart
] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas Paine, The American Crisis Let's Roll - Todd Beamer, Flight 93 -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27

RE: SQL : Finding element in list of values in a query field.

2003-08-27 Thread Angel Stewart
I found it! It was back in January of this year that I ran into a similar problem. Ewika and Phil helped me then and I even wrote a lengthy email to the list about the solution. In this instance it may be hard to break out the talents into proper fields since I am going to have to do a Batch

RE: DWMX 2004 - Whats new for us?

2003-08-27 Thread Angel Stewart
Speaking for myself, I do question the commitment from a marketing standpoint for CF. You said that they wished to target the PHP and ASP market, but this doesn't explain why there was no mention of CF specific products in their initial marketing campaign. That contradicts a company wide

RE: DWMX 2004 - Whats new for us?

2003-08-26 Thread Angel Stewart
Hmmm..I did see 'marketing' to ASP and PHP programmers in the Dreamweaver feature list though: ASP.NET Form Control Objects Use new ASP.NET objects and property inspectors to build and manipulate ASP.NET web forms. New Reference Content The Dreamweaver MX 2004 reference panel includes updated

RE: DWMX 2004 Marketing exclusion of CF (DWMX 2004 - Whats new for us?)

2003-08-26 Thread Angel Stewart
Granted,Todd. However you must admit that it shows: 1) Effort was made to market the program to .ASP and PHP developers. 2) the Same effort, or no effort, was made to market the software to CF Developers. A well known and respected CF Developer had to ASK whether there were any CF specific

RE: New offerings from the Mothership...

2003-08-25 Thread Angel Stewart
So..does this new flash simplify creating forms for the internet and linking controls to database tables? And what of the new Actionscript model, has the language been completely re-worked? Is it more CFML-like...or more VB like? Or...is it more Java,C++ like? -Angel -Original

RE: New offerings from the Mothership...

2003-08-25 Thread Angel Stewart
So anyone looking to make a purchase of the MX Suite should hold off until this is released? Or is there a trade-up option being made available if you purchase the current MX Suite after a certain date? Is it as simple as...say creating a form in MS Access (about the easiest thing I can think

RE: packet sniffer

2003-08-18 Thread Angel Stewart
IRIS. It's not free, but its darn full featured. The trial version will run, but only work with traffic from your own machine. -Gel -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] I am in the hunt for a tool that will allow me see the http traffic to and from

RE: cflock - what does it do? Exactly?

2003-08-17 Thread Angel Stewart
Hey all, The rules for Locking session variables on each set and get have changed for MX? If code is meant for MX and MX only, there is now no need to Lock each session set/get? -Gel -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] You should only require a CFLOCK

RE: cflock - what does it do? Exactly?

2003-08-17 Thread Angel Stewart
0_0 Oh...s..umm..I should use my best judgement... Sometimes it is ok not to, but other times I should. If it makes sense. Logically. ... ... ... Okies. *makes note to self to lock EVERY session variable read and write* -Gel Better to be safe than sorry =) -Original Message- From:

RE: Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-16 Thread Angel Stewart
Wish I could say the same :( The problems with CFMX not updating the jrun-resources.xml file caused us downtime with our Ablecommerce customers (which uses JRUN-resources.xml). Issues with query of queries code would have also forced us to rewrite sections of code for about four websites, and

Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-14 Thread Angel Stewart
Hey all, We are still having issues with CFINSERT and CFUPDATE after installing Redsky. We uninstalled and reinstalled Coldfusion MX 6.1 after our first install attempt produced these errors. The system was updated to MDAC 2.7. We then installed CFMX and then applied the Redsky update.

  1   2   3   4   >