Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 30485 - 30514 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30485
Ok so what it is, is that In CF5 I used the generic form field editor. And the problem is that when I submit a new record, it complaining that I am not...
Tink54
Offline Send Email
Jan 1, 2005
8:06 am
30486
Autonumber fields you leave alone, let the DB play with that. To test this idea out, set up a test database/table in Access. Then do a simple insert. Make sure...
Dan Plesse
empiricallys...
Offline Send Email
Jan 1, 2005
10:33 am
30487
Hello, I am new and I am trying to re-construct a web page that used CF I have a page where you can select with check boxes all or some of the artists. when...
zippomac
Offline Send Email
Jan 1, 2005
3:33 pm
30488
Ok i just tried that, it did work and autonumbered correctly. I am just here with my pants down. Forced to switch host over the holiday and then I using...
Tink54
Offline Send Email
Jan 1, 2005
4:39 pm
30489
Ok, by using the local mx server, i figured out that I was on the wrong file that was giving me the error. I narrowed it down to the line items that it was...
Tink54
Offline Send Email
Jan 1, 2005
5:08 pm
30490
I'm in the market for a basic, dependable CF host. Have been paying $35/year for years with a good host, but guessing there is better value out there. Any...
Joseph Raehm
raehm
Offline Send Email
Jan 1, 2005
8:04 pm
30491
Hello All, In CF MX I am making a CFC where I set a constructor value and use that value as a default later in my code for another constructor. Example below: ...
melliott42
Offline Send Email
Jan 1, 2005
9:04 pm
30492
Is this code auto generated? Because I would stop using <cfinsert with Form.FieldList which will include an ID_Field or RecordID which maybe going to your...
Dan Plesse
empiricallys...
Offline Send Email
Jan 1, 2005
9:19 pm
30493
Hey Michael, Could you post your code? Most of OO-style CFC developers avoid the "constructor" area available outside of CFFunction blocks in CFCs and "glue"...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 1, 2005
9:20 pm
30494
In between the <cfcomponent> tag and the first <cffunction place your public variables using <cfparam. See if that will do it. Then use what you have set up...
Dan Plesse
empiricallys...
Offline Send Email
Jan 1, 2005
9:32 pm
30495
The "this" scope is public in 6.1+ Anywhere inside a CFC: this = public variables / unnamed = private var, arguments = local to method -joe ... -- For Tabs,...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 1, 2005
9:43 pm
30496
... I am not sure I do. I had thought that a "variable" in a component, i.e. a constructor, could be declared AFTER the <component> tag but before the...
melliott42
Offline Send Email
Jan 1, 2005
9:48 pm
30497
Michael, The version could be an issue - MX 6.0 had some very bad glitches that made OO-style work in CFCs painful. I'd recommend upgrading to 6.1. My...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 1, 2005
10:01 pm
30498
Thx for the info! I upgraded to 6.1. I have found a work around but I think at this point it is my ignorance keeping it from working ideally. If I do this it...
melliott42
Offline Send Email
Jan 1, 2005
10:25 pm
30499
Did you apply a persistent scope? I am not sure if that will change anything but you always call methods this way. Session.x =...
Dan Plesse
empiricallys...
Offline Send Email
Jan 1, 2005
10:48 pm
30500
... Thanks again for posting! If I understand OOP, once a property is set, it does not need a method to make it active once the object is istantiated. ...but...
melliott42
Offline Send Email
Jan 1, 2005
11:40 pm
30501
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Jan 2, 2005
12:44 am
30502
<cfset staticResult = createObject("component", "myCFC.static")> // object <cfdump var="#staticResult#"> // return with hello the default // test <cfset...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
1:16 am
30503
Dan, Nicely done! Thanks, Michael...
melliott42
Offline Send Email
Jan 2, 2005
1:51 am
30504
Yeah it is auto generated code from studio CF5, which is kinda Y i am surprised that it doesn't work anymore. Ok so i played around with the code some more....
Tink54
Offline Send Email
Jan 2, 2005
3:22 am
30505
Thanks Joe and Michael. _____ From: melliott42 [mailto:melliott42@...] Sent: Saturday, January 01, 2005 8:52 PM To: coldfusion-howto@yahoogroups.com ...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
4:17 am
30506
I would just scoop out the part that's not working. i.e <cfinsert> part Or just <!---- comment it out ----> and drop in your time tested database insert using...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
5:01 am
30507
Hey Michael, ... You're sorta using an incorrect approach. Ummm...this may get long (seems to be a habit recently), but we'll need some background information...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 2, 2005
6:36 am
30508
... Lol....nope, not really. Public static members are generall considered bad. The only thing I really use public members for are transport objects via the...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 2, 2005
6:38 am
30509
Hey Dan, Hate to beat a dead horse, but your example isn't quite what a static member is. (Warning: if you're not Dan, and you don't care what a static member...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 2, 2005
6:49 am
30510
Joe, The example I give had the word static in it, but it was only a label. The example was closer to my public static Idea, but after thinking about it I...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
8:04 am
30511
... LOL, I can relate to that - last night I had an OOP-induced fit of insomnia. ... Not really procrastinating - sometimes when I try to sleep I get thinking...
Joe Rinehart
jrinehartasi
Offline Send Email
Jan 2, 2005
3:04 pm
30512
Yeah right now I going to use disable the add button and link it to a CFinsert and then edit. The edit works. I figure out later when I get a chance to work...
Tink54
Offline Send Email
Jan 2, 2005
5:09 pm
30513
Very useful posts all. Thanks for your snippets and comments. Though I am becomming more effective at CF I obviously have some gaps in my knowledge. Thanks, ...
melliott42
Offline Send Email
Jan 2, 2005
5:12 pm
30514
Thanks Joe, This is off subject and into ActionScript 2.0, but since the queue is almost at zero. Would this be a good candidate for recursion? I remember for...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
6:57 pm
Messages 30485 - 30514 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help