RE: Looping

2004-09-20 Thread dave
well there are a lot more then 1 type of degree ;) if umust know i have an A.H.T, L.A.T a teaching degree for veterinary surgery ecc. there are lots of things u can do, maybe im getting lost on exactly what ur trying to do. if u wanna call me tomorrow, id be more than happy to see what i can

RE: Looping

2004-09-20 Thread Brant Winter
There is no digital signature required. They are actually going to be printing out the scripts onto the standard script letterhead, and hand signing each one. I didn't want to be mucking around with digital signatures. The pharmacy have access to the csv files, as they are the ones generating

RE: CFMX performance improvements ?

2004-09-20 Thread Micha Schopman
I would not use xtree if I were you, .. xtree has some serious issues which are unresolvable in MSIE due to browser engine limits. It has to do with the amount of images xtree uses for rendering. I have a treeview available for the ones who need one. This is version 1, and version 2 currently is

RE: Content Management System (CMS) Wishlist

2004-09-20 Thread Micha Schopman
The issues with object based content management are for example, - do you create a totally separate content repository based on that perticulair language? Or do all languages select content out of the same bin. So all languages get mixed. - do all languages have the same account? Or are

OT:Javascript Problem

2004-09-20 Thread vishnu prasad
Hi all i have a problem in _javascript_ i have a html File like this html head titleUntitled/title /head body form table tr tdinput type=Text name=name1 id=name_1 /td tdinput type=Text name=age id=age_1 /td tdinput type=Text name=marks id=mark_1 /td /tr tr tdinput type=Text name=name1

RE: Javascript Problem

2004-09-20 Thread Steff
Hi If form is tranformed to form name=formu method=post in _javascript_, you get value by document.formu.age.value and compare it to empty value to send alert p.s. : I never use id I only use name i.e. : input type=Text name=name1 id=name_1become for me input type=Text name=name1 steff

Re: OT:Javascript Problem

2004-09-20 Thread Charlie Griefer
if i understand what you're looking to do (and i'm not sure that i do...), the following should work.might be a better (more efficient) way to write it...but i'm tired :) i took the liberty of giving your form fields unique names and ID values...and removing the onclick event from your submit

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
If for instance you have the following example table containing Press Releases in English PRID PRTITLE PRSUMMARY PRBODY PRPUBLISHDATE PROWNER How would you make this multilingual ? Would you create other tables for French, Italian etc ?? or would you just add a PRLANGUAGE field to the

Re: OT:Javascript Problem

2004-09-20 Thread vishnu prasad
Thks for the Code but i need to have all the contorl name as same ? so that it will be easy for me to inster the values in the database if not will u tell me howto slove this problem in the action page i have to insert the rows enter in the previos page into DB [Todays Threads] [This

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
I think you need to do it another way, by adding a content table that defines the content and groups it, e,g, ContentID, Content Type, Then you havea relationship to another table which is the join of press releases so you group them all as one: contentID, PRID This has now linked it to a lot

urgent:Coldfusion Looping

2004-09-20 Thread vishnu prasad
Hi I got your id from houseofusion ,and also I got ur reply in houseoffusion i have a display page like below Display page Name age sex(controls: Name1age1sex1) Name age sex(controls: Name2age2sex2) Name age sex(controls: Name3age3sex3) Name age sex(controls: Name4age4sex4) in the action

Re: UDF to work with html

2004-09-20 Thread Mark Drew
Doesnt verity do this anyway? MD On Sun, 19 Sep 2004 09:05:29 -0300, Yves Arsenault [EMAIL PROTECTED] wrote: I was using that udf to strip the html But I'm not sure how to go about re-entering the html where it once was before it was stripped Yves - Original Message

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Micha Schopman
And does someone separate content library, file folders, accounts, workflow, approval queues, template libraries, etc. per language, or do all languages in the system use the same libraries? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377,

iif in MSSQL

2004-09-20 Thread Richard Meredith-Hardy
dear all is there a way of doing the following in a query to MSSQL like you can to access? SELECT field1, field2, iif(field1 = field2,'same','different') AS mynote FROM mytable WHERE etc I appreciate it could be done in a SP or by analysing the output but in this case it is easier not to...

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
Depends on your requirements (or the clients!) 1) Content library, this should be acontent item and assigned either to multiple languages or a single language (e.g. english and spanish versions both link to the english download as there is only one... which we can then separate, or it defaults to

Re: iif in MSSQL

2004-09-20 Thread Massimo Foti
is there a way of doing the following in a query to MSSQL like you can to access? SELECT field1, field2, iif(field1 = field2,'same','different') AS mynote FROM mytable WHERE etc I appreciate it could be done in a SP or by analysing the output but in this case it is easier not to... Check

Re: iif in MSSQL

2004-09-20 Thread Jochem van Dieten
Richard Meredith-Hardy wrote: is there a way of doing the following in a query to MSSQL like you can to access? SELECT field1, field2, iif(field1 = field2,'same','different') AS mynote FROM mytable WHERE etc Look up the CASE .. WHEN .. THEN blabla statement. Maybe even Access

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
If you look at the following example website http://www.allwalesunit.gov.uk/index.cfm?articleid=5 and click on the Cymraeg link at the top of the page, which loads up the Welsh translation of the site. If you hold the cursor over the link you will see

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
Sounds to me that a single article can have translations (a standard way of dealing with content) I come from a coldfusion background so I am used to the idea of Structs in which the content of something can be in english and accessed such as content.EN or content.FR or content.Welsh (whats the

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread CFDEV
I think it's important that they have the same articleID cause when you go from a page in a language to another language you want to stay on the same page.. Don't you hate site that return you to the root but in the other language? Pat _ From: Ian Vaughan [mailto:[EMAIL PROTECTED]

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Ian Vaughan
Quote Sounds to me that a single article can have translations (a standard way of dealing with content) How would this look from the backend though ?How would your table / tables be set up so a single article can have translations ??? cym/welcyare the ISO codes for Welsh

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
- Original Message - From: Ian Vaughan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 20, 2004 3:46 PM Subject: RE: Content Management System (CMS) Wishlist (making a cms multlingual) If for instance you have the following example table containing Press

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
I think I mentioned this in a previous post.. If you are using an idea of one table row per language idea you have a root table that defines an article (no matter what language and/or version) with the ID: ContentID, Type 5, Article A join table that defines the link to the content ContentID,

Re: ON CASCADING DELETE

2004-09-20 Thread daniel kessler
good point Jochem.It was a new idea for me. Chris, sorry.It's O-racle.I almost always state that, but I was more focused than I should've been on the particular code on the screen.Blinking more probably would've helped. OK, so just to be sure that I understand.Here's a few tables below.When I

RE: urgent:Coldfusion Looping

2004-09-20 Thread Pascal Peters
cfloop from=1 to=4 index=i cfset name = form[name i] cfset age = form[age i] cfset sex = form[sex i] cfif Len(variables.name) AND Len(variables.age) AND Len(variables.sex) cfquery datasource=#request.DSN# INSERT INTO Table(name,age,sex) VALUES( cfqueryparam cfsqltype=cf_sql_varchar

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
1) Content library, this should be acontent item and assigned either to multiple languages or a single language (e.g. english and spanish versions both link to the english download as there is only one... which we can then separate, or it defaults to english PDF if there is no spanish

Re: ON CASCADING DELETE

2004-09-20 Thread Jochem van Dieten
daniel kessler wrote: OK, so just to be sure that I understand.Here's a few tables below.When I delete a poll, this'll delete the associated answeres automatically and because they're deleted, any results associated with those answers will also automatically be deleted - just be deleting a

RE: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Micha Schopman
Content libraries in my system are not content items. It is a structurized way of sorting content, under categories and by meta labels. In my case, each language has it's own Content Library because the category labels could be multilingual as well. It is a bit hard to explain, but see it as a

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
It should never happen, that a spanish website gets english content by itself because the spanish version is missing. So if the spanish version of a pdf is missing, throw an error, not get the english version :-) You might give the client bad information. here here. [Todays Threads] [This

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Mark Drew
I think it depends on your business rules (rather than technology) The point I was trying to get across is that the user should not be limited to a repository of just that language as there might NOT be translations of that particular content (brand guidelines, Templates?) and the content should

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
Any ideas on what relationship theArticleAction=language parameter is doing to perform the translation ? same table, same ID, different language. probably just sets the new language as the opposite of the current language (as least that's how we did thai\english sites). it also doesn't appear

Re: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread Paul Hastings
Don't you hate site that return you to the root but in the other language? frankly i've found hardly anybody works thru a website that way. normal folks come in, set their locale/language (or better yet their locale/language is silently delivered to them) navigate thru the site. a good app

Bulk-subscription to macromedia lyris lists?

2004-09-20 Thread Katz, Dov B (IT)
Did anyone else get bulk-subsctribed to macromedia lyris lists?I don't know how to remove myself (I never asked for them in the first place) since my email address they have is an alias, not a real pop account. Anyone else suddenly getting daily digests? Is it related to being a blackstone beta

Re: ON CASCADING DELETE

2004-09-20 Thread daniel kessler
Yes. Don't you love foreign keys ;-) theoretically...Now onto learning the display side of these related DBs.Honestly, the last time that I did a join was with some crown molding, so it'll be a fun day. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

SOLVED: Major Driver problems

2004-09-20 Thread Alisa Thomson
Yeah...I mistyped that.I was thinking that the updater included the DataDirect 3.3 drivers and had 3 in my head.Anyway, I have reported this issue and the issue with the DataDirect driver to Macromedia.Since they ship with DataDirect, they looked into that issue first.That issue was that when I

Re: urgent:Coldfusion Looping

2004-09-20 Thread vishnu prasad
Hi did in the other way cfset emailList = ArrayNew(1) cfset MailQuery = QueryNew(Name,age,mark) !--- made this more flexible just enter the max number of entries --- cfset maxNumber = 4 cfset counter = 1 cfloop index=i from=1 to=#maxNumber# step=1 cfset temp = QueryAddRow(MailQuery) cfset temp

zip code based dealer locator

2004-09-20 Thread Jeff Fongemie
Hi Everyone, I need a dealer locator based on zip codes. I guess there are two parts, the database and the code. Anyone know of a good zip code database for sale or free? With a google search I find a large difference in pricing. Can anyone recommend a good one? Is this thing difficult to

relational display

2004-09-20 Thread daniel kessler
OK, I've managed to make relational tables in an O-racle database (see below) and I've managed to populate it with questions, answers, and results. Now, I wish to present the poll results.I've never displayed relational information.First trick is gathering it, it seems and the second is to output

Re: iif in MSSQL

2004-09-20 Thread Qasim Rasheed
http://www.extremeexperts.com/sql/faq/IIForDecode.aspx - Original Message - From: Richard Meredith-Hardy [EMAIL PROTECTED] Date: Mon, 20 Sep 2004 10:36:13 +0100 Subject: iif in MSSQL To: CF-Talk [EMAIL PROTECTED] dear all is there a way of doing the following in a query to MSSQL like

relational display

2004-09-20 Thread daniel kessler
OK, I've managed to make relational tables in an O-racle database (see below) and I've managed to populate it with questions, answers, and results. Now, I wish to present the poll results.I've never displayed relational information.First trick is gathering it, it seems and the second is to output

CF_TwoSelectsRelated and Passing Variable

2004-09-20 Thread hammerin hankster
I'm using the CF_TwoSelectsRelated custom tag (which works great), and I'm trying to pass the variable of the dynamically selected variable from the 2nd drop-down box to a second form on the page.Can't figure out how to do this.Here's the CF_TwoSelectRelated tag: FORM ACTION="" METHOD=POST

Coding question ?

2004-09-20 Thread applemicro
I have a page that will display infromation from a remote database. What i want to do is display the information from the remote database but if the query to the remote database takes long then 5 sec I want to abort the current query and query my local database which contains a versions of the

Re: Bulk-subscription to macromedia lyris lists?

2004-09-20 Thread Dave Carabetta
On Mon, 20 Sep 2004 07:55:38 -0400, Katz, Dov B (IT) [EMAIL PROTECTED] wrote: Did anyone else get bulk-subsctribed to macromedia lyris lists?I don't know how to remove myself (I never asked for them in the first place) since my email address they have is an alias, not a real pop account.

Re: iif in MSSQL

2004-09-20 Thread Richard Meredith-Hardy
Perfect.Thankyou! -- Regards; Richard Meredith-Hardy - r[dot]mh[at]flymicro[dot]com Tel: + 44 (0)1462 834776 FAX: + 44 (0)1462 732668 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations

Re: zip code based dealer locator

2004-09-20 Thread Rey Bango
Check in the MM Dev Exchange. There's one there. Rey... - Original Message - From: Jeff Fongemie [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 20, 2004 9:23 AM Subject: zip code based dealer locator Hi Everyone, I need a dealer locator based on zip codes. I

RE: ColdFusion Calendar

2004-09-20 Thread Kristopher Pilles
Did you find anything, I have a similar project coming up quite soon. KP -Original Message- From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Friday, September 17, 2004 5:25 PM To: CF-Talk Subject: ColdFusion Calendar Is there an open souce Calender component

Re: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Adam Churvis
I hope it's a starting point where many of us can contribute to make it as some sort of a quick informal reference (more on the concept side) for various development teams.Meantimes, tools like yours (just took a quick peak, looks very interesting, more on the implementation side) would be

Re: relational display

2004-09-20 Thread Douglas Knudsen
Try taking this a step at a time.First get some SQL qith the data you want, then put it in CF with a CFDUMP, then workout the pretty output of the data.Working on a few assumptions here perhaps, but take a stab at this SELECT r.*, a.*, p.* FROM fsnep_pollResults r, fsnep_pollAnswers a ,

Re: cfquery still breaking apostrophies in CFMX 6.1 updater?

2004-09-20 Thread Damien McKenna
Pascal Peters wrote: This is intended behavior: any CF string variable within a cfquery will escape (double) single quotes. I think it has always been like this (at least since CF4). OK, thanks for clearing that up. This would throw an error if single quotes weren't escaped. This is purely

Wierd error

2004-09-20 Thread Trevor Holm-Laursen
Hey all, I'm getting this error on a site: Could not find the ColdFusion Component system. Please check that the given name is correct and that the component exists. Now the component is there and it works fine locally but when I upload it to the server, it craps out.I've tried it in the

Re: CFMX 6.1 Updater Now Available

2004-09-20 Thread Thomas Chiverton
On Thursday 26 Aug 2004 17:22 pm, Michael Dinowitz wrote: http://www.fusionauthority.com/Article1.cfm/ArticleID=4284 That URL hangs. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road,

Re: urgent:Coldfusion Looping

2004-09-20 Thread Pascal Peters
Isn't this complicating things a lot??? Instead of one loop, you will do two loops and a QofQ: why?? Also, get rid of evaluate and use array notation instead. Pascal -Original Message- From: vishnu prasad [mailto:[EMAIL PROTECTED] Sent: 20 September 2004 14:33 To: CF-Talk Subject:

RE: Wierd error

2004-09-20 Thread Trevor Holm-Laursen
I found the error.I did forget to upload a file.Need to wake up. Trevor Holm-Laursen eBusiness Developer, FCS Direct:(902)463-5953 FCS (Fundy Computer Services Ltd.) Tel 877-993-8636 Fax 902-484-5887 Email:[EMAIL PROTECTED] Website:http://www.fcs.ca _ From: Trevor Holm-Laursen

Re: relational display

2004-09-20 Thread daniel kessler
Try taking this a step at a time.First get some SQL qith the data you want, then put it in CF with a CFDUMP, then workout the pretty output of the data.Working on a few assumptions here perhaps, but take a stab at this SELECT r.*, a.*, p.* FROM fsnep_pollResults r, fsnep_pollAnswers a ,

Re: Coding question ?

2004-09-20 Thread Andrew Grosset
If I had any process or query that took 5 seconds or more I would be extremely concerned. Hopefully someone with more database experience than I will respond to your enquiry. I have a page that will display infromation from a remote database. What i want to do is display the information from the

Re: relational display

2004-09-20 Thread Deanna Schneider
Dan, I use 8i syntax, so no inner joins, but here's how I'd do it: SELECT p.p_question, a.pa_answer, COUNT(r.pv_poll_answer) AS total FROM fsnep_polls p, fsnep_pollAnswers a, fsnep_pollresults r WHERE p.p_id = a.pa_pollID ANDa.pa_id = r.pv_poll_answer GROUP BY p.p_question, a.pa_answer ORDER BY

Re: relational display

2004-09-20 Thread Douglas Knudsen
your ouput you gave does not look like repeated values.The SQL I gave just used standard joins .Check out http://www.w3schools.com/sql/default.asp for some SQL basics.Think of joins as set intersections, remember set calculus?:) Doug - Original Message - From: daniel kessler [EMAIL

Re: Coding question ?

2004-09-20 Thread Thomas Chiverton
On Monday 20 Sep 2004 14:53 pm, applemicro wrote: I have a page that will display infromation from a remote database. What i want to do is display the information from the remote database but if the query to the remote database takes long then 5 sec I want to abort the current query and query

Re: Coding question ?

2004-09-20 Thread Douglas Knudsen
No way that I know of to do that Kurt.What you might be able to do is get a record count quickly and if its larger then some threshold, change where you look for the data.Certainly tune the SQL too:) Andrew,when you work with large data sets, query times larger then 5 seconds happen

Re: Coding question ?

2004-09-20 Thread Douglas Knudsen
Thomas, this will leave a running thread on the sever though, eh? Could be an issue especially when ling DB times are occuring. Doug - Original Message - From: Thomas Chiverton [EMAIL PROTECTED] Date: Mon, 20 Sep 2004 15:51:15 +0100 Subject: Re: Coding question ? To: CF-Talk [EMAIL

best approach - appending fields in recordset

2004-09-20 Thread Lawrence Ng
hello folks, I have a situation where the database was designed (limitation in the db unfortunately) so that if a user wants to enter a lot of text/content, they would have to add a new line for every entry that doesn't fit. Think textarea but only your using multiple input type text =( so when

Re: relational display

2004-09-20 Thread daniel kessler
your ouput you gave does not look like repeated values.The SQL I gave just used standard joins .Check out http://www.w3schools.com/sql/default.asp for some SQL basics.Think of joins as set intersections, remember set calculus?:) While I didn't take calculus, just pre, and am new to this stuff, I

Help!! CFHTTP failing

2004-09-20 Thread Ryan Duckworth
Please help! I am getting a timeout on a CFHTTP call.This code has worked for over 6 months. This weekend we had a planned power outage and everything got turned off. Any ideas?Running CF 6.1 on Win 2000. Thanks, Ryan Duckworth Macromedia ColdFusion Certified Professional Uhlig

RE: OT:Javascript Problem

2004-09-20 Thread Cornillon, Matthieu (Consultant)
Vishnu, I think that having the field names all the same will be a mistake, as it will complicate the issue on your form page, if not outright causing errors. In any case, you do not need to have the field names be exactly the same as your database field names.I have done this sort of form

Re: relational display

2004-09-20 Thread daniel kessler
dang Deanna, after all this time and help that you've given me, you tell me NOW that you loathe my naming conventions?Loathe is pretty rough. Nonetheless, I'll stick it out because your query gave me the closest to what I wanted.It actually grabbed all the polls that I had, not just the one, but

OT- Hosting Recommendation

2004-09-20 Thread Qasim Rasheed
I knew this question has been asked several times and I searched through the archives but couldn't find a good solution. Here is my requirements any reocommendations, advice is appreciated Requirement: CFMX 6.1, SQL Server 2000, Authorize.net, mail and good customer service. Budget is

Re: WWOT: OS X for Intel?

2004-09-20 Thread Mike Kelp
I think a lot of people go too far in giving Apple's UI such high scores. Personally, I think that no OS deserves a near perfect score for it. A UI is far more than pretty buttons and smooth gradients that look cool. Apple has a huge problem with UI in the sense that when installing varying

RE: Help!! CFHTTP failing

2004-09-20 Thread Ryan Duckworth
Problem Solved.Just wanted to let everyone know how we fixed it. Also, has anyone else had a similar problem to this? This file became corrupt: \CFusionMX\runtime\bin\jvm.config We also know that the change was not made through CF Admin b/c the backup had not changed. After rebooting the

RE: OT- Hosting Recommendation

2004-09-20 Thread Yexley Robert D Contr AFRL/PROE
I don't have any experience with their ColdFusion hosting, as I use their ASP.NET servers, but aside from that, I've got nothing but good things to say about CrystalTech. I've been with them for well over six months now and haven't had a single problem with them at all. I'd comment on their

Looking for a Verity expert

2004-09-20 Thread Joe Bernard
We have Verity K2 server set up and indexing some tables from our database. We refresh the index every 30 minutes with a query. It works correctly for about 10 minutes after starting the K2 engine, then it begins returning strange result sets. All the cells in the result set are empty strings,

Re: WWOT: OS X for Intel?

2004-09-20 Thread Ian Sheridan
Mike, I disagree with you. Just because we have learned how to deal with the way that Windows GUI functions does not mean that that is the best way that it should of been done. If fact I would say that most of the time they do it wrong but they are consistently wrong. So, I guess, in a warped way

Re: best approach - appending fields in recordset

2004-09-20 Thread G
With a one-to-many relationship like this, you might want courseID and courseDescription to be in seperate tables. You could then join ID and Description to bring back a list of descriptions, grouping the descriptions together to make it look like one description. Your Description table would

Re: OT- Hosting Recommendation

2004-09-20 Thread Simeon Bateman
I have said this before, but I am currently transfering all my hosts away from crystal tech.We use thier cf5 and cfmx servers.The sites I have on cfmx randomly are unavailabe for about 15 minutes or so about twice a week, with an error that the cfmx server can not be found.Also the graphing

RE: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Cary Gordon
Adam, Have you selected a price point for Plum?If so, could you share it? Thanks, Cary Gordon The Cherry Hill Company [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Vspider, K2 server help

2004-09-20 Thread Daniel Budde II
I believe I am running Vspider correctly, but what I have noticed is if I use Vspider or a normal CFindex I am getting the same results.I am indexing a website for a site search feature.Some of the content is dynamic, some of it is static.Since I understand that Vspider is supposed to do a crawl

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
Thanx Kristopher... Nothing yet... Only Calendars for MSSQL, Oracle, Access DB support and our site runs in MySQL... ;-( Do you have more details about your High School Courses Calendar? Marco On Mon, 20 Sep 2004 10:03:01 -0400, Kristopher Pilles [EMAIL PROTECTED] wrote: Did you find

Re: ColdFusion Calendar

2004-09-20 Thread Damien McKenna
Marco Antonio C. Santos wrote: Thanx Kristopher... Nothing yet... Only Calendars for MSSQL, Oracle, Access DB support and our site runs in MySQL... ;-( If the software is in source format just rewrite the database calls. .. one reason why I like PHP is the database abstraction layer

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13 version... Marco On Mon, 20 Sep 2004 13:09:02 -0400, Damien McKenna [EMAIL PROTECTED] wrote: Marco Antonio C. Santos wrote: Thanx Kristopher... Nothing yet... Only Calendars for MSSQL, Oracle, Access DB

Re: ColdFusion Calendar

2004-09-20 Thread Damien McKenna
Marco Antonio C. Santos wrote: The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13 version... Subselects - do multiple queries.The rest, yeah, kinda tricky.See if there are any that don't use those, that just use the database as a basic data store.. -- *Damien

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
;-))) All right Multiple queries is the easy kinda... SP, triggers... h... with MySQL On Mon, 20 Sep 2004 13:18:10 -0400, Damien McKenna [EMAIL PROTECTED] wrote: Marco Antonio C. Santos wrote: The problem is subselects, SP, triggers don't supported by our MySQL 4.0.13

Re: WWOT: OS X for Intel?

2004-09-20 Thread Mike Kelp
Thanks for the great reply. My remarks were intended to urge us as programmers to do a better job as a whole in the UI area and make that same point that all UI systems that I have experienced have great flaws in UI as of right now (as you mentioned), but that I feel apple's OS X is held way

Re: ColdFusion Calendar

2004-09-20 Thread Jordan Michaels
Do you have access to a PostgreSQL database? I can give you a free, 1-calendar copy of our own calendar software: http://calendar.viviotech.net/ It runs on a postgresql database and works with the free version of Blue Dragon. There are also a few things we have left to develop, but they are

Re: relational display

2004-09-20 Thread daniel kessler
well, I'm still a bit confused. Using your query, which I mostly understand, both of the two test polls that I have come up http://eatsmart.umd.edu/home/poll_results.cfm?poll=21 though with the correct counts.Unfortunately I only want the one that matches the poll ID.I tried changing out: WHERE

Create Windows Folder / Share?

2004-09-20 Thread Jeff Chastain
I have a case where I need to be able to programmatically create a new Windows folder (cfdirectory), but then be able to alter the permissions and setup that folder as a NT share.Can anybody give me some direction on how to go about the last 2 in a Windows 2003 environment using ColdFusion?

RE: Create Windows Folder / Share?

2004-09-20 Thread Daniel Budde II
I could be wrong here, I know you can change the permissions, but I am not sure that you can set it up as a share.I looking forward to see what others post. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 12:33 PM To: CF-Talk Subject:

Re: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Adam Churvis
Have you selected a price point for Plum?If so, could you share it? Free. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: * C# ASP.NET for ColdFusion Developers * ColdFusion MX Master Class * Advanced Development with CFMX and SQL Server 2000

Re: Create Windows Folder / Share?

2004-09-20 Thread Russell Patterson
You can run CFExecute and create a batch file that modifies the security of the folder.The batch file will contain the Net Share command.For more information open a command window and type in Net Share ? Hope that helps. Russell - Original Message - From: Daniel Budde II To: CF-Talk

Re: ColdFusion Calendar

2004-09-20 Thread Marco Antonio C. Santos
Thanx Jordan great application Yes, we're have access to PG DB... How to get it? 'haves users restriction? Cheers Marco On Mon, 20 Sep 2004 10:26:13 -0700, Jordan Michaels [EMAIL PROTECTED] wrote: Do you have access to a PostgreSQL database? I can give you a free, 1-calendar copy of

Re: Create Windows Folder / Share?

2004-09-20 Thread Ben Frame
If you can perform the desired operation (creating a windows share, or whatever...)via a Windows command prompt, then you should be able to write a CF tag to perform the same, using cfexecute.I haven't done this exact thing, but I wrote a custom tag to programmatically map a network drive from 1

Re: Web Application Development using Cold Fusion in a Team Environment (Draft)

2004-09-20 Thread Marco Antonio C. Santos
How to download Plum for testing??? On Mon, 20 Sep 2004 13:44:09 -0400, Adam Churvis [EMAIL PROTECTED] wrote: Have you selected a price point for Plum?If so, could you share it? Free. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: *

RE: Create Windows Folder / Share?

2004-09-20 Thread Daniel Budde II
Glad to see it looks like I was wrong in this case.It is good to hear Russell's and Ben's input. -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 12:33 PM To: CF-Talk Subject: Create Windows Folder / Share? I have a case where I need to be

RE: Vspider, K2 server help

2004-09-20 Thread Daniel Budde II
Can anyone please help me out with this?I need to figure out why Vspider is not producing the results I believe it should. -Original Message- From: Daniel Budde II [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 11:58 AM To: CF-Talk Subject: Vspider, K2 server help I believe I

Re: Create Windows Folder / Share?

2004-09-20 Thread Jochem van Dieten
Jeff Chastain wrote: I have a case where I need to be able to programmatically create a new Windows folder (cfdirectory), but then be able to alter the permissions and setup that folder as a NT share. Use cfexecute. cacls to set permissions and net share ... to create the share. Jochem

Re: Create Windows Folder / Share?

2004-09-20 Thread Jeff Chastain
Thanks guys.I was trying to make this a lot more complicated. Thanks again, -- Jeff Quoting Jochem van Dieten [EMAIL PROTECTED]: Jeff Chastain wrote: I have a case where I need to be able to programmatically create a new Windows folder (cfdirectory), but then be able to alter the

RE: Create Windows Folder / Share?

2004-09-20 Thread Dave Watts
I have a case where I need to be able to programmatically create a new Windows folder (cfdirectory), but then be able to alter the permissions and setup that folder as a NT share. Can anybody give me some direction on how to go about the last 2 in a Windows 2003 environment using

Re: ColdFusion Calendar

2004-09-20 Thread Jordan Michaels
Hey Marco, I can let you know immediately when we have the free, single calendar version ready (hopefully within the week). But as things are still in development it'll be a little rough. If you're willing to work with us on that then we should be good to go. =) There will be no limits on the

Ideas for a project

2004-09-20 Thread Greg Morphis
I'm working on a project and one of the requirments is the ability to create their own tests and then generate those tests, score them and generate results. I have a table for the questions and total possible points but how the heck do I make it so they can create their own tests and then get

Re: Ideas for a project

2004-09-20 Thread Bryan Stevenson
Test Table: Holds unique ID and a name for each test (possibly attached to a user ID that created the test) Question table: Holds one record for each test question with the Test ID and the Question ID in each record (and anything else ya need). Answers Table: each recorduser_ID that took the

Re: Ideas for a project

2004-09-20 Thread Joe Rinehart
Hi Greg, Halfway there - you'd probably want to use two additional tables: Table Test: testId name 1My Custom Test Table rel_Test_Question testIdquestionId score 113 126 Then, you could query for all questions in a given test with the following: SELECT q.question, tq.score FROM test t JOIN

RE: Vspider, K2 server help

2004-09-20 Thread Jerry Johnson
I hear your plea, but don't know how to help. Jerry Johnson [EMAIL PROTECTED] 09/20/04 02:14PM Can anyone please help me out with this?I need to figure out why Vspider is not producing the results I believe it should. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

  1   2   >