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!

Search results for query: *

  • Users: jl8789
  • Content: Threads
  • Order by date
  1. jl8789

    SQL index hints

    I am very new to Java so please bear with me. I am trying to build an SQL statement that will prefix an Oracle hint, like SELECT /*+ index(column index)*/ column,column,. I have a prepared statement built and I just want to put this hint ahead of the columns. Looks like this creates the list...
  2. jl8789

    .pbd and .exe

    Sorry, this is probably so easy but unfortunatley I am very new to powerbuilder. I have all the .pbls in my library and I want to build an executable that also has a .pbd file for every .pbl file in my library. I know this because I have taken over support for the app, and when moving a build...
  3. jl8789

    toString?

    Hi, forgive me cuz I'm new with powerbuilder. I just came from programming with Cold Fusion for 5 years and it had the ability to know the diff between strings and ints, and the 2 could be used interchangealby rather easily. Anyway, is there any way I can type cast an integer to be a string...
  4. jl8789

    dynamic form variables

    How do I get the value of dynamic form variables? I thought it was: function doThis(i){ d = document.ctrlPage["wiringDepthInq" + i]; d.value; } But I keep getting error that value is null or not an object!?
  5. jl8789

    Select that will allow manual entry

    Hello! I'm trying to figure out what properties to set or what kind of JavaScript to use to have a dropdown(select) that contains options, but also allows manual entry? Does anyone out there know how to do this or point me in the right direction!? I was trying the contenteditable property and...
  6. jl8789

    Browse button

    I was researching the forum for previous posts on this subject but didn't find anything that worked correctly. So I will ask again, "Does anyone know now how I can change the look of the Browse button, and replace it with something like an image?" For the code, I have: <form action=""...
  7. jl8789

    variable access

    How do i make the (3) vars readable to the downstreamWtxs.js inside one <script> </script> scope? <SCRIPT language=JAVASCRIPT type="text/javascript"> var WHATADAPTER="BASIC"; var vTXTYPE="N"; var vTXACT="A"; </SCRIPT> <SCRIPT language=JAVASCRIPT type="text/javascript"...
  8. jl8789

    smtp mail using cold fusion

    The dialogue below is in response to a question of why cfmail fails when one of the email addresses is invlaid in the to, cc, etc list. Does anyone know how to set the mail.smtp.sendpartial property using cold fusion? Thanks! --Dialogue The mail.smtp.sendpartial property would need to be set...
  9. jl8789

    Reset Button and onblur events

    I have a generic reset button on my form what resets all the values in the text boxes back to the original values that were in there when coming in to the page. On those text boxes I have an onblur event that changes the color of the text if the user goes in and changes the value from it's...
  10. jl8789

    CFMAIL Email address validations

    Question, is it absolutely necessary to validate the email addresses before including them in my to when using cfmail? I can use my outlook and have a bunch of addresses in the to line. All the valid email addresses get the email and the invlaid email addresses don't. With the CFMAIL tag...
  11. jl8789

    Image File Caching Issue

    I am creating a chart and writing it to an image file of type .png. I’ve also wrote it to a .jpg file so that is not the issue I am having. The issue is when I try to show the image that is written to. The image shows up fine, but if you modify data that creates the chart and then come back...
  12. jl8789

    Integrating MSWORD w/ CF

    I am aware that there are HTML editors out there that will let the user do all sorts of formatting to their text and that HTML editor will then save that value in my database in HTML etc. Then when the user goes back and edits, they edit the HTML in the database etc. Well, is there a way to...
  13. jl8789

    script abends w/o error!?

    What is wrong here? I am calling this function within a .cfm page, here are my controls and save button: <td align="left"><input type="text" id="TAG" name="tag" value="#podFieldsGet.PFD_TAG_TXT#" onblur="return convertToUpper(this);" maxlength="16" size="16"></input>...
  14. jl8789

    More than 1 form on a page

    Pressing the Enter key on the keyboard will submit a form on a page...but it does not work when there is more than 1 form, ie 2 or more submit buttons on a page. Which makes sense. The Enter Key then needs to be coded, and only know how to make it submit a particular form. I can't find out...
  15. jl8789

    DIV toggle vs. innerHTML

    I have 2 divs coded as such: <div id="albumTitle"><a href="">2004 KTM 200 EXC</a> <a href="javascript:toggleDIV('editTitle','albumTitle');" >edit</a></div> <div id="editTitle" style="visibility:hidden"> <!--- <span>edit title:</span><br />---> <input type="text" id="newTitle" value="2004 KTM...
  16. jl8789

    deleting cookie

    I have some javascript that is in my application that keeps deleting a cookie that I am setting elsewhere in my application. I do NOT want to delete the said cookie, called 'UserRegion'. Here is the javascript: function removeCookies(){ Runtime Error in QADS, check if document exists if...
  17. jl8789

    Getting Text Value From Select

    Is there a way in cold fusion to get the display value from a select form control after the form has been submitted? Let's say sec_level is my select name. Of course, #FORM.sec_level# will give me the value of the option, but can I get the text display of that option without having to do any...
  18. jl8789

    CFOBJECT TAG

    I am receiving an error when trying to do this tag, <cfobject action=create type=java class="com/sbc/ea/utilities/AddressHashHelper" name=SESSION.ahh> Object Instantiation Exception. An exception occurred when instantiating a java object. The cause of this exception was that: Illegal name...
  19. jl8789

    cfobject

    I believe I have an issue with a java class setting on the new CF7 server? On CFMX Server I have a tag in a line of code, <cfobject action=create type=java class="com/sbc/ea/utilities/AddressHashHelper" name=SESSION.ahh> On the new CF7 server, I receive an error: Object Instantiation Exception...
  20. jl8789

    Email Address

    I don't care to check the validity of the string for an email address such as using reg expressions to find @ and . etc, but I do care if the actual email address entered exists. Is there any way to use some sort of tool to see if an email address actually exists somewhere??? Thanks!

Part and Inventory Search

Back
Top