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 bkrike 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 msng

  1. msng

    How to convert string into number ...

    how do I convert string to a number value. I have the database field value as 1 which is of the type string. I have to convert this value 1 into number datatype and add 1 to it. Please let me know. Thanks in advance for your help.
  2. msng

    How to alternately display colored records ...

    In my Crystal report, I need to show the alternate line displayed in yellow color. How can I do it? Also, I am suppressing some lines in my report if a given record has the same id as the previous record. Please help.
  3. msng

    Problem displaying the vertical scroll bar ...

    I have fields on my form page that go beyond the page. However, the vertical scroll bar on the right do not automatically show up. Why? Please let me know if there is a way that I can fix this. Thanks.
  4. msng

    Problem refreshing the page containing 2 frames ...

    I have a page divided into 2 frames . The code is as follows: <cfoutput> <frameset name="CreateCustMain" rows="235,200,*" framespacing='0' frameborder='1' border='0'> <frame name="CreateCustTop" src="frm_customer_top.cfm" marginwidth='0' marginheight='0' noresize scrolling='no'></frame> <frame...
  5. msng

    How to check for a variable value that can have null values too ...

    all: Thanks for your solutions. It worked.
  6. msng

    How to check for a variable value that can have null values too ...

    I have defined as follows: <cfparam name="URL.cust_name_hold" default=""> Later on, if I have to check if URL.cust_name_hold has a value or not, how will I write the IF statement? Please let me know. Thanks.
  7. msng

    Problem displaying the formatted field

    If I want to display a certain field in a formatted form when the page is displayed, on what event can I do this. e.g. I have the text box for phone number on my Edit form. I have written a javascript to format the phone number. However, when the Edit form is displayed, I want to display the...
  8. msng

    Problem refreshig a page containing 2 frames

    I have a page divided into 2 frames. The upper frame is a search screen whereas the lower frame displays the search results. Also, when the records are displayed in the lower frame, there are 2 hyperlinks -> Edit and Del displayed next to each record. My problem is if I click on Del hyperlink...
  9. msng

    Problem updating DATE field in CF

    I have a field last_update of the type DATE in ORacle. To update this field with today's date, I am doing as follow: last_update = #createODBCDate(now())# However, this gives an error. What wrong am I doing here? Please help.
  10. msng

    How to type uppercase in a text box

    Thanks a lot, everyone. Actually, I tried doing as follows in CF and it works good: style="text-transform:uppercase" Thanks.
  11. msng

    How to type uppercase in a text box

    Is there a way that when the user is typing in the text box, that the letters get typed in the uppercase. Please let me know. Thanks in advance.
  12. msng

    How to check / uncheck the checkbox ...

    Thanks, mmcc79.
  13. msng

    How to populate dropdown 2 based on the value in dropdown1.

    dallasweb: The way my code is, CF_TwoSelectsRelated does not work for me. However , I have the following question: We have a table CUSTOMER where the cust_code/svc_code combination form the primary key. I have a query as follows: select cust_code,svc_code from customer order by cust_code...
  14. msng

    How to check / uncheck the checkbox ...

    I have defined the checkbox as follows in my form: <tr align="left"> <th width="15%" align="right">Int'l Ind</th> <td> <input type="checkbox" name="intl_ind" id="intl_ind"> </td> </tr> In my javascript, I am doing as follows: var ind=customerInfo[ind].intl_ind; if (ind == '1') {...
  15. msng

    How to populate dropdown 2 based on the value in dropdown1.

    webmigit: thanks for your suggestion. Will fix my code accordingly. However, I am hoping somebody can help me. I have reached a stage where I cannot proceed with my coding. Any help will be appreciated.

Part and Inventory Search

Back
Top