Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bhightower
  • Order by date
  1. bhightower

    General PRogramming Query

    if you want to spend alot of time programming go ahead and use ASP. ColdFusion Prides itself on rapid devleopment. and yes i have built an online schedule Calendar for an intranet. ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  2. bhightower

    CF range??

    where are you getting the data from. if you are looping over numbers where are you getting fname,lname, and address from.... how are you going to put them together.... More details please.. ------------------------------------------------------------------------------ brannonH if( !succeed )...
  3. bhightower

    LJustify?

    LEFT() Returns the count of characters from the beginning of a string argument. LEFT(STRING, COUNT) STRING:String from which the leftmost characters are retrieved COUNT:Positive integer; number of characters to return ------------------------------------------------------------ LJustify()...
  4. bhightower

    Form date falls between 2 dates

    try something like this..... <cfparam name="attributes.formError" default="FALSE"> <cfscript> //---DATE if( form.date lt qDates.dateLow or form.date gt qDates.dateHigh ){ formError = TRUE; errorMsg = "Date out of range please select another"; } //---ETC..... </cfscript>...
  5. bhightower

    Form date falls between 2 dates

    can you query the dates on the FORM page if so, Do you want to validate the form on the server side or client side.....? ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  6. bhightower

    help with string manipulation (Find,Replace)

    the situations given are AND ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  7. bhightower

    help with string manipulation (Find,Replace)

    It looks to me that you need to validate your data upon update/insert to a certain format that way you can pull out what you need when you need..... with all these situations you have presented you are going to need a ton of code just to get back a few words in the comments column..... mho...
  8. bhightower

    help with string manipulation (Find,Replace)

    try using a LTrim() #Left(LTrim(qResults.Slug),Find('#Chr(13)#',LTrim(qResults.Slug)))# ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  9. bhightower

    Horizontal Output

    here is what i use to do my calenar <cfset request.imgSrc = "images/"> <cfset theDate=dateAdd("M",-1,now())> <cfset theMonth=month(theDate)> <cfset theYear=year(theDate)> <cfscript> firstDay = CreateDate(theYear,theMonth,1); startDay = DayOfWeek(firstDay); lastDay =...
  10. bhightower

    how to sort a cddirectory list of folders

    if datelastmodified is not working properly then one thing i would suggest is chang the name of your dir's to yyyy_mm_dd then sort by name ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  11. bhightower

    Building a Search By Distance Form

    you might try searching by zip codes... here is some info on how to do this..... http://tutorial153.easycfm.com/ ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  12. bhightower

    Access and CF

    Here is a sample of your code <table width="470" border="0" align="center"> <tr align="left" valign="middle"> <td colspan="3"><font color="cc0000" size="2" face="Arial, Tahoma, Verdana"><strong>Name:</strong></font><font size="2" face="Arial, Tahoma, Verdana">...
  13. bhightower

    Access and CF

    if you type the text in the editors (web based ) then insert into database it will already have the html stuff in their.... bold, underline, paragraph, etc... ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  14. bhightower

    Access and CF

    coldFussion doen't have anything internally to do that but i use and am very happy with Site Objects soEditor Pro for that type of textbox feature.. for a demo go here http://www.siteobjects.com/pages/soeditordemos.cfm?object=363&method=viewExampleTwo or there is also FCKEditor ...
  15. bhightower

    Excel Coloring

    here is a test of what i use.... and go here to see the color index for excel http://msdn.microsoft.com/library/default.asp?url=/library/en-us/owcvba10/html/ocprocolorindex.asp <cfscript> temp = StructNew(); temp["1"] = structNew(); temp["1"]["FUND"] = "1010"...
  16. bhightower

    Preventing form submission twice by doublclicking the submit button

    lets see your form/ javascript and submit code... ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  17. bhightower

    Random Number Generators(random only once)

    Here is the code........ <html> <head> <title>Untitled Document</title> <META http-EQUIV="Expires" CONTENT="Mon, 01 Jan 1970 23:59:59 GMT"> <CFHEADER NAME="Pragma" VALUE="no-cache"> <CFHEADER NAME="Expires" VALUE="Now()"> <CFHEADER NAME="cache-control" VALUE="no-cache, no-store...
  18. bhightower

    Random Number Generators(random only once)

    TAKE OUT THE = Randomize(now()) AND MAKE IT = 0> ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  19. bhightower

    Scheduled Task

    sounds to me like it is a code issue.... i have 20 - 30 scheduled tasks running in cf... no problems here what does your code look like? ------------------------------------------------------------------------------ brannonH if( !succeed ) try( );
  20. bhightower

    Creating an order string to send for payment processing

    <!--- I HAD TO SET UP MY OWN ARRAY SO HERE IT IS ---> <cfparam name=&quot;variables.itemList&quot; default=&quot;&quot;> <cfset aryLocalArray = arrayNew(2)> <cfset aryLocalArray[1][1] = &quot;0001&quot;> <cfset aryLocalArray[1][2] = &quot;apples&quot;> <cfset aryLocalArray[1][3] =...

Part and Inventory Search

Back
Top