Re: Stop View Source

2007-10-19 Thread Richard White
thanks again for your replies. so i am judging by your responses that no one really does anything to protect their code as it is pointless? if someone wants to get it they will! ~| Get the answers you are looking for on the

Stop View Source 2

2007-10-19 Thread Richard White
thanks again for your replies. so i am judging by your responses that no one really does anything to protect their code as it is pointless? if someone wants to get it they will! ~| ColdFusion is delivering applications

Re: Stop View Source

2007-10-19 Thread Richard White
Hi thanks for all your replies. Ok so the html is not possible but was interested in the fact that JS could be encrypted as we have noticed that CF code does not show but the JS along with comments does. we will look into JS encryption thanks

Null Values

2007-10-08 Thread Richard White
Hi, i am getting data out of a database. i need to be able to check if a value returned in a query is null. i am trying to use the following code but it is not working cfif questionTextVariables.minTextLimit is null it seems a bit strange that the word null is not going blue to indicate that

Re: Null Values

2007-10-08 Thread Richard White
perfect, thanks very much charlie :) in relation to the issue of null values being different to empty strings in the database, am i right by saying the only way to get round this would be to create a stored procedure that ran sql code to test for a null value or empty string then pass back a

Re: Null Values

2007-10-08 Thread Richard White
Thanks for all your help and detailed suggestions it is now very clear :) thanks again ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex

CFStoredProc out variable

2007-10-05 Thread Richard White
Hi, i have the following code to call a stored procedure which is stored in mysql. cfstoredproc procedure=addOneToOneChildFolder datasource=portdb cfprocparam type=in cfsqltype=cf_sql_varchar value=#url.OneToOneFolder# null=no cfprocparam type=in cfsqltype=cf_sql_bigint value=1 null=no

Re: CFStoredProc out variable

2007-10-05 Thread Richard White
Hi Eric, thanks for your reply I did what you said but it is saying that queryResult is undefined the code i used was cfstoredproc procedure=addOneToOneChildFolder datasource=portexdb cfprocparam type=in cfsqltype=cf_sql_varchar value=Hello null=no cfprocparam type=in

Re: CFStoredProc out variable

2007-10-05 Thread Richard White
Thanks Dave your a superstar!!! I changed the value to variable and it worked fine :) Thanks again ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: Site wide error handlers

2007-10-01 Thread Richard White
Thanks for all your help i now understand how to tackle this thanks ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Site wide error handlers

2007-09-30 Thread Richard White
Hi, i have just set up a hosting package with a cf host. it is on a shared server and they are telling me that they do not allow me to have access to the cf administrator and therefore i cannot set a site wide error handler or a missing template handler. i was told that i couldn't set a site

Re: Site wide error handlers

2007-09-30 Thread Richard White
Thats fantastic Thanks very much :) ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive:

Re: Site wide error handlers

2007-09-30 Thread Richard White
i just tried to put these in my application .cfm as follows but it is not catching all the errors, have i done this right? thanks cfcomponent cfset This.name = Portex cfset This.sessionmanagement = True cfset This.loginstorage=Session cfset This.clientmanagement=True cfset

Re: Site wide error handlers

2007-09-30 Thread Richard White
Hi Mike, Thanks for taking the time to reply. You mention some very fair points and I now understand why this is the case. I will be doing the testing on a local machine but wanted to set the error handlers just in case anything unexpected happens. I will do this as you and the previous post

Re: Site wide error handlers

2007-09-30 Thread Richard White
for example: how do you handle the error if someone types in a url that doesnt exist? ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next

Re: Site wide error handlers

2007-09-30 Thread Richard White
. and you dont want it to show the standard cf error page ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Re: Javascript Book

2007-09-18 Thread Richard White
Thanks for your help. We had a look through the books, they seem really good but we were sold on the free cd you get with 'JavaScript Bible' :) Thanks again ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and

Javascript Book

2007-09-17 Thread Richard White
Hi does anyone know of a good javascript book thanks very much richard ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Re: Coldfusion and MySQL Stored Functions

2007-09-16 Thread Richard White
cfquery ... SELECT function(argument) /cfquery Thanks for the reply, i am getting an error running this code saying that it cannot be indexed correctly. my stored function takes in 2 varchars - an email address and password and returns a boolean, so when i call the function i write the

Re: Coldfusion and MySQL Stored Functions

2007-09-16 Thread Richard White
this is the error it is giving me: [Table (rows 1 columns myfunction('[EMAIL PROTECTED]','myPassword')): [myfunction('[EMAIL PROTECTED]','myPassword')): [EMAIL PROTECTED] ] is not indexable by myfunction('[EMAIL PROTECTED]' Thanks again for your help

Re: Coldfusion and MySQL Stored Functions

2007-09-16 Thread Richard White
Hi Jochem, Thats brilliant its working fine now :) thanks for your help Richard ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates.

Coldfusion and MySQL Stored Functions

2007-09-15 Thread Richard White
Hi, just wondering if anyone knows how to call stored functions in MySQL from coldfusion. We have been calling MySQL stored procedures fine using the cfstoredproc tag but have no idea how to call MySQL stored functions. We have tried doing it through the cfstoredproc tag but of course it

Re: Coldfusion and MySQL Stored Functions

2007-09-15 Thread Richard White
Just like a built-in function: SELECT function(argument) thanks for your reply. do i have to encapsulate it in cfquery tag, or do i have to direct it to the database? can you give me an example with cf code please and how do i access the variable it returns? thanks very much

ColdFusion and MySQL Web Hosts

2007-09-01 Thread Richard White
Hi, Just wondering if anyone knows of any good ColdFusion and MySQL web hosting companies? We are based in the UK but wouldn't mind hosts in the UK or USA. Thanks very much ~| Check out the new features and enhancements in

Re: UML Modeling Software and Coldfusion

2007-08-17 Thread Richard White
Thanks Brian thats really helpful i will ask our institution to buy it for us if it is that expensive :) and then i will use your code to generate the xmi file into cf code :) thanks again for all your help with this ~|

UML Modeling Software and Coldfusion

2007-08-16 Thread Richard White
Hi, We are developing a large web application with Coldfusion and would like to know if there is any UML modeling software available to aid us with this. There is a very good UML modeling software called Rational Rose from IBM that generates lots of the deeper UML models automatically and

Re: UML Modeling Software and Coldfusion

2007-08-16 Thread Richard White
sorry i think i should write as well just in case i have missed something, that if i was to use rational rose to develop UML models then the classes would obviously be different for a web application to a software application, as obviously in web application development the fact that we have

Re: UML Modeling Software and Coldfusion

2007-08-16 Thread Richard White
Hi thanks for the replies. is there any difference in UML modeling software for software applications and web applications. does everyone use the same uml modeling software for both types of applications - web and desktop based. this is what i am getting a little lost on at the moment thanks

Re: UML Modeling Software and Coldfusion

2007-08-16 Thread Richard White
Hi Thanks for the reply. Ill explain our situation. we may have been a little naive but we have spent alot of time developing, like you said, activity, sequence, and class diagrams in pencil and then drawing them up in a drawing package. we have recently been told that there is software such

ColdFusion Webserver

2007-05-29 Thread Richard White
Hi, Just wondering if you guys could help me understand something. I have been developing software with ColdFusion and running it on my local server. I now want to install in on a computer and allow various people to access it through the internet. I was just wondering if ColdFusion comes

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
Thanks Scott, We will be running Windows XP Pro. I will look into IIS thanks. We may decide later to come off Windows XP Pro, could you recommend another webserver that i could look into. Thanks ~| Create robust enterprise,

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
Thanks for your recommendations Scott. Wow, thanks Robert, this is everything i needed to know in just a few short sentences. I had no idea where to start or what to think about and you have really made it clear and understandable for me now. Thanks very much :)

ColdFusion Webserver

2007-05-29 Thread Richard White
Hi, Just wondering if you guys could help me understand something. I have been developing software with ColdFusion and running it on my local server. I now want to install in on a computer and allow various people to access it through the internet. I was just wondering if ColdFusion comes

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
thanks, me neither but they want a cheap test phase. Do you have any recommendations for a temporary windows web server. It sounds like IIS is a web server tool but not a webserver, am i right on this? ~| ColdFusion MX7 and

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
so really i need to buy the enterprise edition in order to get the ColdFusion Web server, is that right? Thanks again for your help ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business.

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
Most of the people on here are professionals and is the reason why i am asking, i have learnt so much from the people on this site over the past year. If all the professionals replied with that advice then this site would probably go out of existence. This sort of reply says alot about your

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
Thanks Robert this is the answer i was looking for. Thanks for your help, both your answers have made it really clear. Thanks again ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable RIAs. Free

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
This is the first time that someone has attempted to constrain the help that this site can provide. Once in a year that someone has tried not to help a fellow coldfusion developer. If people dont want to help or cannot help then they simply will not reply. Most, including myself are willing to

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
I would like to make a constructive comment if i may. I wont go into detail but my work involves helping a certain group in society that are perceived very wrongly as lower down the society ladder. They are made to feel constrained and people often give them advice that inadvertently creates a

Re: ColdFusion Webserver

2007-05-29 Thread Richard White
very good advice. Thanks brad, i think it will actually be cheaper and help to lesson the load we are doing Thanks Brad, very helpful ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business.

SQL Median Value

2007-03-12 Thread Richard White
Hi, i am using ms sql server and need to implement get the median of a set of values. i have looked all over the web and cant find a simple explanation. i would appreciate it if anyone can provide me with a very simple explanation. i understand how it works in terms of having to first order the

Re: SQL Median Value

2007-03-12 Thread Richard White
thank kris, the problem i am having is that all the information i find is always centered around getting a median using every single row in the table. except i have groups of data in the table and want to work out a median for each group. the group is identified by 4 different columns (the 5th

Re: hiding url variables

2007-02-01 Thread Richard White
thanks for all your replies. I think your right i will have to use hidden fields and form posts as much as possible. and when i need to use the URL then i will use the encrypt / decrypt link that was added in the replies. this is very useful, thanks very much for all your help

Re: Sessions do not TimeOut ...

2007-01-27 Thread Richard White
if i have grasped this thread, do you want the session to end when the user closes the browser? if so then if you go to the cf administrator, go to the memory variables section under server settings, and turn on the 'Use J2EE Session Variables'.

Re: Sessions do not TimeOut ...

2007-01-27 Thread Richard White
If you use J2EE session management, ColdFusion MX ends the session and deletes all Session scope variables when the user closes the browser. How do you do this? if you go to the cf administrator, go to the memory variables section under server settings, and turn on the 'Use J2EE Session

Re: confirming string length, case, and alphanumeric

2007-01-27 Thread Richard White
hi bobby, this is so far working great. it outputs the random numbers, lower, and upper at a length that we set. i so far have had no reported errors. thanks for this as this has really allowed me to understand the code to manipulate strings thanks again

hiding url variables

2007-01-27 Thread Richard White
Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url variable set to collect the variable in the receiving cfm page. however, the variable data is being displayed in the address bar in the browser. is there anyway to hide the

Re: confirming string length, case, and alphanumeric

2007-01-26 Thread Richard White
hi bobby, thanks for this i will be testing it later today. if it seems to work fine then when i implement it in our software i will create a check for it so that if it throws a password not matching the criteria, it will notify me, and in turn i will notify you thanks again bobby, i will let

Help with selected database

2007-01-25 Thread Richard White
Hi, We have developed an online application that is about to start the pilot test. We are currently using MySQL as the database but i heard something a little concerning yesterday. I thought MySQL was built for concurrency, alot of users, and alot of records. I was told that MySQL was limited

Re: confirming string length, case, and alphanumeric

2007-01-25 Thread Richard White
thanks bobby, this is good. Just a quick question if i use the following example: cfoutput #randStr(8, alphanumericupper)# /cfoutput will it always be 8 in length, have 1 uppercase, 1 lowercase and 1 number or does it choose to randomly select between them thanks bobby

Re: Help with selected database

2007-01-25 Thread Richard White
we have not yet done any load testing. we will be starting this from next month. Our pilot test will only be around 250 users. How many queries per second do you expect? How many of those will be INSERT/UPDATE/DELETE queries? How many rows will the average query return? to be honest, we

Re: Help with selected database

2007-01-25 Thread Richard White
i thought i may have been talking to a preacher. Thanks very much for your advice ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: confirming string length, case, and alphanumeric

2007-01-25 Thread Richard White
thanks bobby. If you do resubmit would you let me know as i would like to use it :) thanks ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

confirming string length, case, and alphanumeric

2007-01-24 Thread Richard White
hi, my system generates a password with the following criteria: must be exactly 8 characters in length must have at least 1 number must have at least 1 uppercase letter must have at least 1 lower case letter however, the passwordGenerator i am using doesnt always get it right, even though it

Re: confirming string length, case, and alphanumeric

2007-01-24 Thread Richard White
thanks tom and ben. After i posted my question, i read it back and thought my answer is to find one that works!!! been a long day i think ;) but thanks for the answer ben this is actually very useful. thanks very much ~|

Re: confirming string length, case, and alphanumeric

2007-01-24 Thread Richard White
:) that would actually be really useful thanks ben. i have just been searching through the internet but would appreciate a specific example. i was looking for someone that had done a password generator that i could use but if i could learn the code to do it myself i would be very grateful

Re: confirming string length, case, and alphanumeric

2007-01-24 Thread Richard White
that looks brilliant, thanks ben. I will taking a look at it and will post again if i have any questions thanks alot ben, very much appreciated ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create

Report Builder

2007-01-19 Thread Richard White
hi, i need to be able to develop a report with charts from data that is contained in session variables. i have looked at the cf report builder but it is not flexible enough, as i need to have certain data on page 1, other data on page 2 etc... more like a document than a report full of

Flex?

2007-01-10 Thread Richard White
Hi, i have developed my web application using coldfusion, xhtml, and javascript but have been told that flex produces much more interactive web applications.just wondering if i could get some advice on what you guys think. is it worth the effort transferring my app to flex, or what things

sliding on image

2007-01-10 Thread Richard White
Hi, i have an image that is bigger than the tablecell of the interface that it will fit in. I would like the users to be able to scroll left, right, up and down to view the rest of the image that is not entirely in view firstly i would like to know how i can fit an image into a specified

Re: Flex?

2007-01-10 Thread Richard White
that sounds like good advice thanks. just thought id get some opinions but it makes sense what your saying. thanks again ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: sliding on image

2007-01-10 Thread Richard White
thanks very much claude ill look into it ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: Flex?

2007-01-10 Thread Richard White
Hi, i was just wondering. I got a link before: http://www.cynergysystems.com/blogs/page/andrewtrice?entry=gantt_charts_in_flex_datagrids which shows how to implement flex grids that are like gantt charts. This is exactly what i need however i cant seem to find exactly how i can use flex

Re: Gantt chart component?

2007-01-01 Thread Richard White
hi webdevotion this looks really good. is there a way to put the dates on the duration part of the chart thanks ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: web servers - apache or IIS

2006-12-31 Thread Richard White
thanks very much for all your help. good point about going with what they know jim. When i asked the admin people what they would prefer they looked blank and didnt say much when it came to apache so i think that was my answer :) thanks very much again for all your help

handling timeouts

2006-12-31 Thread Richard White
hi, i am just configuring my system to handle timeouts for the first time. i was just wondering if i could get some opinions on the best way to do this, or how most of the experts do it. specifically, i was wondering how to deal with data that needs to be saved. my system has some features

web servers - apache or IIS

2006-12-23 Thread Richard White
hi, i am about to deploy my first coldfusion application within my clients site but have been asked the question in regard to the best web server. I havent really done alot of research on web servers, am doing some now but would be extremely grateful of some expert advice. I know my client

Re: automatically generate password

2006-12-21 Thread Richard White
thanks bobby thats perfect thanks again ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

redirect to home after login

2006-12-21 Thread Richard White
hi, i have setup my login using the login wizard for coldfusion dreamweaver extensions. I have managed to customize it to my application and am almost done. However, when the user enters a url address for a page other than the home page, after they have logged on i don't want them to go to

Re: redirect to home after login

2006-12-21 Thread Richard White
hi, am just wondering if anyone can help me, i haven't had any luck with this all day and i have to give a presentation tomorrow :( Also, i need to set up some session variables as soon as the user is logged on, but because i cant work out how to direct the page when they are logged on, i

Re: redirect to home after login

2006-12-21 Thread Richard White
hi christopher, thanks for your reply. thanks you have got the point and made me understand it much better :) thanks again chris ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

user accounts and passwords

2006-12-20 Thread Richard White
Hi, i am just working on creating user accounts and would like some advice in regard to the password. from what i have read i take it that the best way to deal with passwords is to only save the hashed version of the users password in the database. Then when the user attempts to log on, we

Re: user accounts and passwords

2006-12-20 Thread Richard White
thanks very much for all your replies, easier than i thought :) thanks again ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: user accounts and passwords

2006-12-20 Thread Richard White
thanks James, i like the idea of the automatically generated one. The user names for the user accounts will be their confirmed email addresses (confirmed by the institution to which they are a member). Do you have an algorithm that automatically generates a password? that i can then hash and

automatically generate password

2006-12-20 Thread Richard White
hi does anyone have any algorithms that automatically generate passwords, thanks ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: automatically generate password

2006-12-20 Thread Richard White
thanks for the replies i used the custom tag from KodeFusion and it works perfect :) thanks ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: user accounts and passwords

2006-12-20 Thread Richard White
yes fortunately am running cf7 ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Re: user accounts and passwords

2006-12-20 Thread Richard White
actually i have just thought of something that could happen with this method. My target audience are students at university. If someone has forgot their password and the system is designed for them to enter their email address, it will reset their password and send them the new password - then

Re: user accounts and passwords

2006-12-20 Thread Richard White
thanks for the replies, i like the idea of a username and also having a security question(s) thanks ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: user accounts and passwords

2006-12-20 Thread Richard White
You may also want to ensure the password process is protected by SSL otherwise the entry of your password is sent in clear text. oh i see, yes i hadn't thought about that, i haven't heard of SSL but will look into it. Or can you provide a simple example of how i can do this? Thanks teddy,

Re: automatically generate password

2006-12-20 Thread Richard White
hi doug this looks perfect as in the criteria for the password we have that it must be between 8-20 characters, have at least 1 number, and at least 1 uppercase and at least1 lower case. does this algorithm do it if i put numeric = yes, uppercase = yes and lowercase = yes? forgive my ignorance

Re: user accounts and passwords

2006-12-20 Thread Richard White
OK thanks for your replies i will look into it. thanks again ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: Gantt chart component?

2006-12-13 Thread Richard White
or any dhtml components? ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Gantt chart component?

2006-12-08 Thread Richard White
hi, does anyone know of any really cool looking gantt chart components, either in cf or dhtml. Thanks very much for any help ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: stored procedures and mysql

2006-12-03 Thread Richard White
thanks greg, yes my hair is now growing back as we speak :) and unfortunately for our company i am the DBA :) In fact me and my business partner are the DBA's, programmers, designers, marketers, salesman etc.. but thanks to all you guys on this site we are are getting better at other things,

Re: stored procedures and mysql

2006-12-01 Thread Richard White
hi greg thanks for your reply. I thought that may be it for a minute but yes it is ticked - all of the allowed sql statements are ticked Thanks ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

Re: stored procedures and mysql

2006-12-01 Thread Richard White
with the dreamweaver connection? how did you set up your connection, maybe i can try it that way? I have gone to the cf administrator and it is showing the database as a datasource so assume it has been setup fine though. thanks again greg, appreciate the help On 11/28/06, Richard White [EMAIL PROTECTED

Re: stored procedures and mysql

2006-12-01 Thread Richard White
hi greg, you are a diamond :) I changed the driver over to the connector j 5.0 and added a new datasource not with mysql connection but with 'other' and set the configuration manually. I tried it and couldnt believe that it is now working. It does make alot of sense now that we know what it is.

Height and width of cfinput and cfselect

2006-11-28 Thread Richard White
Hi, i want to be able to specify the width and height of my cfinput and cfselect controls but if i set those properties in the tags they dont change. Is there anything i need to do to achieve this thanks for any help ~|

Re: Height and width of cfinput and cfselect

2006-11-28 Thread Richard White
thanks it works perfect :) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

stored procedures and mysql

2006-11-28 Thread Richard White
Hi i posted a problem a while ago as i couldnt get stored procedures stored in mysql to work, it keeps coming up with a java.lang null pointer error. previous thread: http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:48365 i was wondering if any using mysql and cfstoredproc could

best display method

2006-11-27 Thread Richard White
HI, i have developed my coldfusion site and displayed the page entirely with tables and used the width and height in pixels to position the elements. I have found this a very easy method. The site looks perfect in firefox, a few differences in netscape and opera but in IE the spacing is all

Re: best display method

2006-11-27 Thread Richard White
oh i see, i hadnt done that :) thanks very much snake ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

Re: best display method

2006-11-27 Thread Richard White
hi pete, thanks for the reply. Unfortunately, i only have a local cf server. My service provider at the moment doesnt support coldfusion. Can i get your personal email and send you a page? thanks pete ~| Introducing the

Re: sort algorithm

2006-11-07 Thread Richard White
thnaks ben, really appreciate the help, i am going to go through your links now and will let you know how i get on :) thanks again ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: sort algorithm

2006-11-07 Thread Richard White
thanks jim, i will also test this out and let you know what happens thanks again :) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to

sort algorithm

2006-11-06 Thread Richard White
hi, i was just wondering if there was a sort procedure that i could apply to the following scenario: I have a session array structure as follows: session.project.milestones[milstonePosition].name session.project.milestones[milstonePosition].dateOfCompletion

Re: sort algorithm

2006-11-06 Thread Richard White
hi, just wondering if anyone had any thought on the above. thanks ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times

Re: sort algorithm

2006-11-06 Thread Richard White
thanks ben, i would appreciate any help at all as i am really stuck :( thanks again, really appreciate it ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your

cfform tasks before submit

2006-11-02 Thread Richard White
Hi, i have a cfform with 2 buttons: 'Move to next step' 'Move to previous step' Irregardless of what button is clicked i need to do some tasks before the form is submitted when the button is clicked I tried to make the buttons type button instead of submit and then do an onclick event. I

<    4   5   6   7   8   9   10   11   12   >