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 Chriss Miller 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: micjohnson
  • Content: Threads
  • Order by date
  1. 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. =================================...
  2. 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...
  3. 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...
  4. 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)?
  5. 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...
  6. 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...
  7. 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.
  8. micjohnson

    Loading a coldfusion page thru javascript popup.

    I need to load a coldfusion page thru javascript popup, when mouseover on a link.
  9. 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
  10. 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...
  11. 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'...
  12. 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'...
  13. micjohnson

    ColdFusion popup!

    Any idea about gnerating "popup window" using ColdFusion Appreciate your help. Regards micJ
  14. micjohnson

    Mouse pointer change while query is running.

    On my ColdFusion application, i have a report page which has more and more records and i can edit (on same page) each and every record at a time with EDIT button on the same row. When i have morethan 500 records on my report, whenever i click EDIT button, page takes little time to show the...
  15. micjohnson

    Javascript Name field validation!

    I need to validate my Name field. Field should be only characters. No numbers in that. Any script available to validate (First name or Last Name) Appreciate micJ
  16. micjohnson

    Hide or Prevent JS Script Error??

    Is there a way, so that we can hide or prevent the javascript script error that comes at the left hand side bottom of the status bar? Appreciate ur help. micJ
  17. micjohnson

    Single quotes problem!

    From my CF query i am getting all distincted SSNs. From these SSN list i need to get all names from another table. Get SSN: ------- <cfquery name="getSSN" datasource="dsn"> SELECT distinct ssn FROM tblSSN WHERE originator='Wrker1' </cfquery> <cfset AllSSN = ValueList(getSSN.ssn...
  18. micjohnson

    Break the &lt;textarea&gt; field value!

    I have a TEXTAREA field called "Address" on my form. The user can type an address and stored it on the SQL Server DB. Eg, Address1 Address2 City State When i return this address and display it (as HTML), its showing me like...
  19. micjohnson

    &lt;textarea&gt; help in ColdFusion

    I am having text datatype column on my database. I am populating this column and display the bulk message into screen display. When i have 2000 words of message from a field, i wish to show 2 lines and for remaining i need to display them on a popup window thru a link. E.g...
  20. micjohnson

    How to avoid form resubmission when browser refresh clicked!

    In ColdFusion or Javascript, how to i avoid form resubmission when refresh button cliked. Thanks micJ

Part and Inventory Search

Back
Top