RE: Passing hidden fields

2001-02-26 Thread Robert Hinojosa
there is a tag in the gallery called CF_formpass that will do what you want. Robert -Original Message- From: Roque,Carlos [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 11:32 AM To: CF-Talk Subject: Passing hidden fields I have a four page form with about 15 fields on each

RE: Case Sensitivity in SQL Queries

2001-02-26 Thread Robert Hinojosa
try this in your order by Select firstname, lastname, UPPER(lastname) AS ordName FROM ... ORDER BY ordName -or- this might even work Select . ORDER BY UPPER(LastName) HTH, Robert Hinojosa Senior WebDeveloper [EMAIL PROTECTED] www.hencie.com 972-671-0011 ext.284 -Original

RE: Interesting Java/CF Article

2001-02-23 Thread Robert Hinojosa
If you haven't played with it, I've found it is missing all the extensibility that CF has to offer. Especially in the lack of support for Custom Tags, RegEx's, WDDX, COM. Plus it lacks attributes on a whole slew of tags. Otherwise, its fun to play with. It's free. Robert -Original Messag

RE: dynamically naming variables

2000-12-20 Thread Robert Hinojosa
Robert -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 9:54 AM To: CF-Talk Subject: dynamically naming variables Hi, I need to use the Evaluate function to dynamically name variables in a . Using the function on the right hand sid

RE: List w/" " delims

2000-12-07 Thread Robert Hinojosa
I use a carraige return and line feed all the time as a delimiter. Why doesn't that break? Robert Hinojosa Senior WebDeveloper [EMAIL PROTECTED] www.hencie.com 972-671-0011 ext.284 -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 07,

RE: cfscript rules of thumb

2000-12-07 Thread Robert Hinojosa
Don't use CFSCRIPT for large pieces of code. Debugging inside a CFSCRIPT tag is horrible. You can use CFSCRIPT for setting more than 3 variables in a row. Much faster than cfsets. SWITCH/CASE Statements --> break works in CFSCRIPT. My two shiny nickels. Robert Hinojosa Senior WebD

RE: deallocate

2000-12-04 Thread Robert Hinojosa
So why doesn't this work. #isStruct(variables)# I don't believe that the variables scope is actually a structure. I once read that you could connect to a COM object to access all variables, the same way that Studio's Debugger would connect to active variables. Robert H

RE: CFFILE - writing a CF template REDUX

2000-11-30 Thread Robert Hinojosa
; & stForm.FieldsFont > " & NL & NL & "    "> The File did not get written properly. #CFCATCH.message# Caught an exception, type = #CFCATCH.TYPE# HTH, Robert Hinojosa

RE: ? -> /

2000-11-29 Thread Robert Hinojosa
art_001_01C05A48.7F825C2E Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable RE: ? -> / How do you handle web statistics with that = format? Robert Hinojosa Senior WebDeveloper [EMAIL PROTECTED] www.hencie.c

RE: CSV-to-Query

2000-11-22 Thread Robert Hinojosa
like this. HTH, Robert Hinojosa Senior WebDeveloper [EMAIL

RE: Display Files in a Dir

2000-11-21 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C05408.D47EE472 Content-Type: text/plain; charset="iso-8859-1" Take a look at in any reference. Robert -Original Message-

RE: CF TEST

2000-09-21 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C023FC.15EBD362 Content-Type: text/plain; charset="iso-8859-1" www.cfspot.com -Original Message- From: James Smith [mai

RE: Exam

2000-09-21 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C023FB.F287EB72 Content-Type: text/plain; charset="iso-8859-1" Can I get those rules? TIA, Robert Hinoj

RE: [CF-Talk] OT: Subject lines

2000-09-20 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C02349.EE023722 Content-Type: text/plain; charset="iso-8859-1" I prefer the [Cf-Talk] as the suffix. Robert -Original Mess

RE: # rule? [CF-Talk]

2000-09-20 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C02338.645D00B2 Content-Type: text/plain; charset="iso-8859-1" Read this http://www.fusionauthority.com/alert/index.cfm?ale

RE: Verifying the existence of a file on the server

2000-09-15 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C01F45.CE0B01EA Content-Type: text/plain; charset="iso-8859-1" HTH, Robert -Original Message- From: Micha

RE: 2 hours from now -

2000-09-13 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C01DC5.52FC58EA Content-Type: text/plain; charset="iso-8859-1" try this DateAdd(h,2,theDate) HTH, Robert -Original Messa

RE: Numeric Field

2000-09-11 Thread Robert Hinojosa
Numeric Field Like this... UPDATE Food     =     =     =     =     =     SET Hits =3D (Hits+1) HTH, Robert -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 4:36 PM To: [EMAIL PROT

RE: Replacing a value in the list form.fieldnames

2000-09-08 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C019DD.E44CBCB8 Content-Type: text/plain; charset="iso-8859-1" HTH, Robert -Original Message- From: Ian [mailto:[EM

RE: Importing a text file

2000-09-08 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C019D6.3AD9C07E Content-Type: text/plain; charset="iso-8859-1" use single quotes. #Replace('#f1_element#','"','','ALL')#> HTH

RE: Numeric Field

2000-09-08 Thread Robert Hinojosa
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C019CC.8AAEC54A Content-Type: text/plain; charset="iso-8859-1" Try This UPDATE Products