| Thread | Last Post | Replies |
|
| CFC qualified paths | 21 Mar 2005 12:23 GMT | 1 |
I have a file /admin/index.cfm (from the root of the website), as well as a CFC in the directory (again from the root of the website) /cf-inf/cfcomponents/security.cfc I do not want to use a CustomTags path in the CFMX administrator. I am using CFMX 6.1 (updated) with apache ...
|
| Opposite of htmleditformt() | 20 Mar 2005 23:22 GMT | 1 |
Does anyone know of a commercial or other ct that allows me to sent it a string and have all tags removed, just the opposite of htmleditformat()? Thanks, Robert
|
| Restrict the user to go back | 20 Mar 2005 07:13 GMT | 1 |
How to restrict the user to go back ones the user has logged out. Or, if he goes back, how to generate custom error for Page Expire Error ?
|
| CFLOOP/CURRENTROW | 19 Mar 2005 21:14 GMT | 2 |
I have a LOOP that runs over a query and I use CURRENTROW so that I can then use MOD on it so I can utilize repeating ARRAY data to change the color on a table.. All is well. but now I find I have to create a CFLOOP that does not have a query but a TO and a FROM (form variables ...
|
| How can i get Extantion !!!! | 19 Mar 2005 01:30 GMT | 1 |
Hello to evrey one !!! I have a problem with displaing a imag in <cfftp> i have this code : <cfoutput query = 'ListFiles'> <cfif #ListFiles.IsDirectory# is 'yes'> <tr> <td title='#DateFormat(lastmodified)#'> <a href='?remote=#path#'><img
|
| Is Defined and Dynamic Application Variables | 18 Mar 2005 20:15 GMT | 1 |
Hi I'm trying to create dynamic variables in the application scope and then check for variables existance using the Is Defined function. Basically I check to see if a application variable is defined if it is then I add a value to the existing value (creating a comma seprated ...
|
| Ldap dates | 18 Mar 2005 18:48 GMT | 1 |
I am trying to read the following variable as regular time pass last set :: #pwdLastSet# :: 127554714130781250 Pass last logon :: #lastLogon# :::127554715379088523 account Expires :: #accountExpires# ::: 9223372036854775807
|
| troubles with query of queries | 18 Mar 2005 18:35 GMT | 4 |
Executing this simple code: <cfset qqq = QueryNew('city', 'VarChar')> <cfset newRow = QueryAddRow(qqq, 2)> <cfset temp = QuerySetCell(qqq, 'city', 'Rome', 1)> <cfset temp = QuerySetCell(qqq, 'city', 'Paris', 1)> <CFQUERY name='qr' dbtype='query'> SELECT * FROM qqq </CFQUERY> ...
|
| Java5 and CFMX6-7 | 18 Mar 2005 08:38 GMT | 1 |
Will CFMX 6.1 and MX7 run on the new JAVA 5??? anyone tried it before? Any problems?
|
| Boolean Searches | 18 Mar 2005 02:01 GMT | 1 |
I am trying to implement a boolean type search . The current search that I have searches for exact matches, if the input has multiple words. I want the search to take the multiple words and ouput all those records that have all those words, irrepective of the order in which they ...
|
| help my string | 18 Mar 2005 00:08 GMT | 2 |
Running MX6.1 So I've got this .TXT that I'm CFFILE reading into memory (at some point this data will probably be in a DB). The TXT has some basic visual formatting to it. I'm doing: <cfset Variables.foo = #Replace(Variables.foo, chr(13) & chr(10), '<br>', 'ALL')#> and this ...
|
| Online Survey | 17 Mar 2005 21:55 GMT | 1 |
I am trying to create an online survey and I am wondering what the best way to do this is. It will have about 30 questions sent out to 12,000 people and 5 questions would change each month.
|
| Setting a variable name with a variable in a loop | 17 Mar 2005 21:41 GMT | 4 |
Here is the code that bombs: <cfloop index='x' from='1' to='10' step='1'> <cfif #evaluate('form.totalhours#x#')# eq 'r'> <cfset total_hours_#x# = #evaluate('form.remaining_#x#')#> <cfelse> <cfset total_hours_#x# = #evaluate('form.totalhours#x#')#> </cfif> </cfloop> I ...
|
| web service issue with boolean data tyoes | 17 Mar 2005 21:32 GMT | 1 |
When I switched the access method of My CFC to a web service, I noticed that booleans are outputted differently. When called as a Web Service, a boolean is outputted as Yes/No. When called as a CFC, a boolean is outputted 1/0. My CFC is actually returning a Query but the SQL ...
|
| Loading non COM Dlls? | 17 Mar 2005 21:30 GMT | 1 |
Hey all, Im trying to call a win32 dll from coldfusion, but everywhere i look just talks about com dlls, is there no way to load a non COM dll into coldfusion? It is a simple dll with a few functions, no classes.
|