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: carranz
  • Order by date
  1. carranz

    Email server connection failed

    We upgraded to Server 2007 for our email. After we upgraded, the application can't connect to server CDO.Message.1 error '80040213' The transport failed to connect to the server. Does anyone know why it will not connect. Has something changed on 2007 server? Code Const cdoSendUsingPickup =...
  2. carranz

    hyperion format values

    Yes it works great. Thanks a lot you are very helpful I have one more question this should be the last one I have another field with values example 01.0302 -> 010302 24.0102 -> 240102 01. -> 010000 20.05 -> 200500
  3. carranz

    hyperion format values

    my data has this type of value 630 630X 630.12 630.01X 630.01V
  4. carranz

    hyperion format values

    Is there a way to have both of these functions work at the same time? result=Number(value).toFixed(2).replace(/\./,'') result=parseInt(value,10).toFixed(2).replace(/\./,'')
  5. carranz

    hyperion format values

    this works great I have another problem. I have a value with a letter in it example 630G I would like the result to be 63000 any help would be appreciated
  6. carranz

    group radio buttons

    I want to pass radio button values to another page. <input type="radio" name="RadioGroup1" value="Proposer" id="RadioGroup1_0" /> Proposer</label> <br /> <label> <input type="radio" name="RadioGroup1" value="Initiator" id="RadioGroup1_1" />...
  7. carranz

    hyperion format values

    example. value 123.1 result 123100 but the values are different
  8. carranz

    hyperion format values

    Im using hyperion reporting software. I have a field in my results. this field holds number values. some of the values have decimals and some don't. I would like to have the field to hold 6 places and remove the decimals and have zeros at the end. Does anyone know how to do this?
  9. carranz

    format field

    I have a field in my results. this field holds number values. some of the value have decimals and some dont. I would like to have the field to hold 6 places and remove the decimals and had zeros at the end. Does anyone know how to do this?
  10. carranz

    PL sql

    need some advise. Which client tool would good to create plsql code for batch processing. creating programs to manipulate the data?
  11. carranz

    dropdown menu

    not sure i would want to do it like that. I don't want to see the gap. I would like it to be seamless
  12. carranz

    dropdown menu

    I have a drop down menu and i have a problem. the dropdown menu works fine but for some reason there is a gap between menu click and the results from the menu. so when I move my cursor the results disappear. Any help would be appreciated here is the code from my index file for the dropdown...
  13. carranz

    Image display

    No change Also here is the other .css file this .css file formates the rest of the page * { margin:0; padding:0; } html { text-align:center; background:#F3F3F3; } body { font:62.5% Verdana, Arial, Helvetica; text-align:left; color:#333; width:75em; background:#FFF; padding:0.0em...
  14. carranz

    Image display

    Here is the navbar1.css body { font-family: "trebuchet ms", Helvetica, Arial, sans-serif; font-size: 85%; line-height: 135%; } #masthead1 { width: 100%; min-width: 800px; position: relative; line-height: 100%; margin: 0px; padding: 0px; background-color: #CCCCCC...
  15. carranz

    Image display

    I have another question. I have another .css file that is used in my page. If I dont use the other css it works fine. but if i combined them it stretches the image the image for some reason is stretched out. this is the image code <input name="submit" type="image"...
  16. carranz

    Image display

    Vragabond You are right I changed it to fix and now it works thanks for your help
  17. carranz

    Image display

    Here is my div. Still not sure why its not working on firefox. <div id="masthead1"> <h1 class="masttitle"> <a href="http://www.google.com/" title="Hello Title">hello</a> </h1> <h2 class="masturl"> <a href="http://www.google.com/" title="The Hello">www.google.com</a> </h2> <form...
  18. carranz

    Image display

    This code displays the image in IE but not in Firefox. Does anyone know why it would not show up in Firefox? thanks #masthead1 { width: 100%; min-width: 800px; position: relative; line-height: 100%; margin: 0px; padding: 0px; background-color: #d1d1d1; background-image...
  19. carranz

    html text formating when submitting email

    Sorry to respond so late. I was not at work yesterday. I'm not using javascript. I'm using ASP (vbscript) to send the email. But I use the HTMLBody to format the email. So I can use font size, font type,color and spacing. I also put variables in the HTMLBody. If I don't use the &nbsp to creat...
  20. carranz

    html text formating when submitting email

    I have a small problem I have an email script that sends out an email. everytime I submit the script some of the fonts change or I would get different characters in the email. it never consistent. Not sure why its doing this. I'm using HTMLBody to create the message. Any help would be...

Part and Inventory Search

Back
Top