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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AMayer

  1. AMayer

    Regular expression for date search

    I've only ever accomplished the most basic of regular expressions so this problem has been cooking my brain all morning. I'm trying to use a regular expression to search for dates in the format: Jun 12 thu. I'm searching these out in a large text file. Simple date formats like 6/12/03 would be...
  2. AMayer

    Interaction with <OBJECT>

    I am having no success communicating between an <object type=&quot;text/html&quot;> and it's containing page. The <object> loads a simple dynamic page with a couple of buttons. When the user clicks a button, I'd like to action a script on the main page. What's the proper method for this? Many...
  3. AMayer

    Object.watch or am I off track?

    I am fairly new to flash and have a unique problem I hope someone can help me with. For a project, I have about 1600 legacy SWF files, some with buttons, that that need to be fit within kiosk navigation. Some are just simple displays of a JPG but some contain questions with response required on...
  4. AMayer

    CFHTTPPARAM problem

    Here's my situation: I've been working on migrating an app from one look and feel to another and had to build an interface on top of an interface as a temporary solution. When a user posts data to my form, my program posts the information to a form on a different site. This is all working great...
  5. AMayer

    Error Log

    I've been handed the responsibility of determining where some errors are coming from in our error log. They appear to be IIS related and I hope that someone else has seen these and knows how to fix them. The error: &quot;The configuration information of the performance library...
  6. AMayer

    Debugging a logic error

    I believe you have to set the query attribute if you are trying to loop through a query using cfloop. Try this line instead of your current loop tag: <CFLOOP QUERY=&quot;qryRegister_Course&quot;> From my experience, by not specifying the query attribute it will just read the first record. Andrew
  7. AMayer

    Debugging a logic error

    I don't know that I completely understand your problem but one thing I do see is that you're not setting the query attribute in your loop: <CFLOOP FROM=&quot;1&quot; TO=&quot;#qryRegister_Course.recordcount#&quot; INDEX=&quot;i&quot;> <!--- Add all the course fee that belongs to this...
  8. AMayer

    ERROR (varchar)

    Have you tried: <cfquery name=&quot;UpdateItems&quot; datasource=&quot;Teamsters&quot;> sp_BillItem_cur_upd #evaluate(BillItemNumber)#, '#PreserveSingleQuotes(MemberName)#', </cfquery> Andrew
  9. AMayer

    please help me with CFTREE

    You can use the img and imgopen attributes to accomplish this. Simply change your <cftreeitem> tag: <cftreeitem value=&quot;Level1.1&quot; display=&quot;Level 1.1&quot; img=&quot;image/plus.gif&quot; imgopen=&quot;image/minus.gif&quot;> Andrew
  10. AMayer

    Using Textarea tag in CF

    I don't know if this is the best way to do it but when you output the variable instead of: #Trim(YourTable.TextField)# or whatever Do this instead: #Replace(Trim(YourTable.TextField),Chr(10),&quot;<br>&quot;,&quot;ALL&quot;)# This has worked great for me the few times I've needed it. Andrew
  11. AMayer

    please help me with CFTREE

    Use the parent attribute of the <cftreeitem> tag to create expandable trees with folders and such. Here is a simple example that you should be able to get working by pasting it into a blank document and putting some <cfform> tags around it: <cftree name=&quot;ATree&quot; height=&quot;150&quot...
  12. AMayer

    Automatically enter date

    <input type=&quot;text&quot; name=&quot;Date&quot; value=&quot;#DateFormat(Now(),&quot;mm/dd/yy&quot;)#&quot; size=&quot;10&quot;> DateFormat(Now(),&quot;params&quot;) works great anytime you need to display the current date. Andrew
  13. AMayer

    Force scrollbars

    Does anyone have a trick to force the vertical scrollbar to be displayed in the browser window? I know this can easily be accomplished with a signed script but, to my knowledge, IE doesn't support this kind of signed script? I don't want to put a bunch of extra space at the end of the page...
  14. AMayer

    Trying to query multiple tables

    Change the first line of your query to be: SELECT Users.UserName Since you have a UserName column in all of the tables used in your query, Access does not know which one you want and will return that error unless you specify. Andrew
  15. AMayer

    Access

    At my last company we had an application (not web) where some customers had 120 users almost constantly reading an Access 97 database. Access seems to hold up pretty well where just reading is going on. We had problems where two of us entering information into the same database would corrupt it...

Part and Inventory Search

Back
Top