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: *

  1. micjohnson

    Numerous forward slashes ("/") in TEXT and HTML <TD>

    darryncooke, I am using ColdFusion to pull the text from oracle. ChrisHirst, There is a space between vol# and /server#/ Thanks for your time.
  2. micjohnson

    Numerous forward slashes ("/") in TEXT and HTML <TD>

    I am getting description text dynamically and display it on the report. The table width is "800" but when my description contains multiple forward slashes ("/"), the table is displaying wider and collapsing the table. How do I escape the "/". Here is the code. =================================...
  3. micjohnson

    Javascript Ajax question. Please help!!!

    Here is my question. I have 3 form fields(Proj name, description and userid). Proj name and Proj description are new inputs from user. But for the thrid field "userid", I need to verify the existence against coldfusion DB. As now all 3 validations are working except the userid ajax...
  4. micjohnson

    ColdFusion Ajax Javascript question. Please help!!!

    Here is my question. I have 3 form fields(Proj name, description and userid). Proj name and Proj description are new inputs from user. But for the thrid field "userid", I need to verify the existence against DB. As now all 3 validations are working except the userid ajax validation when...
  5. micjohnson

    CFC contains error and Object creation

    What will happen when try to create an object from a CFC which is syntactically error-ed (missing end > or something)?
  6. micjohnson

    Query help

    How to I write query to get duplicate column count. For eg, One user has 5 accounts on a website with 5 different user logins(primary key), same email address and same password on 5 account. How do I find that how many users has more than one accounts with same email and same password...
  7. micjohnson

    Regular expression for Password validation

    My first requirement changed from 6-13 to 5-12.
  8. micjohnson

    Regular expression for Password validation

    This regular satisfies all the above conditions. /^(?=.*[A-Za-z])(?=.*[0-9])(?!.*[^A-Za-z0-9])(?!.*\s).{5,12}$/; eg: var re = /^(?=.*[A-Za-z])(?=.*[0-9])(?!.*[^A-Za-z0-9])(?!.*\s).{5,12}$/; if ( !re.test(passwd) ) { alert('Your password must satisfy the following...
  9. micjohnson

    Regular expression for Password validation

    I need to do the password validation in javascript with the below policies. Will you please let me know how the regular expression look like? - Password should be 6 to 13 character long. - Password should have at least one alphabet (a-z, A-Z) - Password should have at least one numeric...
  10. micjohnson

    ColdFusion popup

    Thank you for your reply. Right now I am using JS and CF to display the popup. But my leader dont like to see the title bar on popup. So I thought we may have an option to use CSS layout to display the CF content. Is this possible to use the combination of JS, CSS and CF?
  11. micjohnson

    ColdFusion popup

    Is there a way we can create popup in ColdFusion. My lead dont like the javascript popup and he is looking for a square box kind of popup in which i need to show the dynamic content.
  12. micjohnson

    Loading a coldfusion page thru javascript popup.

    I need to load a coldfusion page thru javascript popup, when mouseover on a link.
  13. micjohnson

    Finding Array Difference!

    Is there any logic available to find the difference between two arrays. OldArray = "F5,PLB,REC,TOL,ZMM,ZRW" NewArray = "F5,REC,TOL,ZMM,ZRW,ZZZ" I need to get whats removed and whats added. (eg. Here PLB removed and ZZZ added) Thanks in advance. Regards micJ
  14. micjohnson

    COPY records from one table of a DB to another table of another DB

    Both databases on the same server. We required the extra 5 columns. Yes. Regards micJ
  15. micjohnson

    COPY records from one table of a DB to another table of another DB

    On my SQL Server, i have 2 databases, DBS1 and DBS2. On DBS1, i have 5000 records on table TBL1. On DBS2, i have a table TBL2 as same columns of TBL1 plus 5 extra columns. My need is, i need to copy all the records from DBS1.TBL1 to DBS2.TBL2 thru SQL Server query analzer or some other way...
  16. micjohnson

    ColdFusion with MS Access

    Thank you all for your time. The datatype for the field dtReceipt is Date/Time. The query is working now. The corrected format is as below. For DateValue(dtReceipt) = #01/01/2006# (No single quotes. Instead, i added # around) For DATEPART("YYYY", dtReceipt) = 2006 ( No single quotes)...
  17. micjohnson

    Access with ColdFusion

    Thanks a lot dhookom and Melagan. Queries are working now. (Sorry i am new to MS Access) Thanks for your time. Regards micJ
  18. micjohnson

    Access with ColdFusion

    Thank you Melagan! Query with "WHERE DateValue(dtReceipt) = #01/01/2006#" is working well. But while i am using WHERE DATEPART("yyyy", dtReceipt) = "2006" AND DATEPART("m", dtReceipt) = "01" on another query to show the report, it is not working. Regards micJ
  19. micjohnson

    Access with ColdFusion

    I am using MS Access as my database for my small ColdFusion application that has 6 or 7 pages overall. My question is when i fetching recrods from database based on the date. Query is working sometimes and not sometimes. SELECT * FROM tblHomeBudget WHERE DateValue(dtReceipt) = '01/01/2006'...
  20. micjohnson

    ColdFusion with MS Access

    I am using MS Access as my database for my small ColdFusion application that has 6 or 7 pages overall. My question is when i fetching recrods from database based on the date. Query is working sometimes and not sometimes. SELECT * FROM tblHomeBudget WHERE DateValue(dtReceipt) = '01/01/2006'...

Part and Inventory Search

Back
Top