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. 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

    That was my issue, I wasn't getting into the project painter. I selected new, and clicked on projects tab. Sorry for the confusion. I'm good now!
  3. 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...
  4. jl8789

    toString?

    Sorry. I figured it out shortly after the post. My constant is int gc_i_max_items In my script: string lv_s_max_items lv_s_max_items = string(gc_i_max_items) Then the messagebox MessageBox('Item Retrieval','Selecting more than '+ lv_s_max_items +' items is not allowed.',Exclamation!)
  5. 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...
  6. jl8789

    dynamic form variables

    Thanks for the replies. Of course it was something else, I had a similar field named the same further in the form...then of course it is undefined.
  7. jl8789

    dynamic form variables

    I guess I'm having issues with trying to access the form variable depthInq1 or depthInq2 by passing that number in to the function: It is telling me it is null or not an object, when it isnt. I've tried, function doThis(i){ a = document.forms["ctrlPage"].elements["depthInq"+"i"]; } a =...
  8. 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!?
  9. 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...
  10. jl8789

    Browse button

    No because it needs to work with the CF Browse functionalities. The enctype for the form needs to be multipart/form-data and the input a type of file. <form action="" ENCTYPE="multipart/form-data" METHOD="post"> <b>Banner GIF or JPEG</b> <input type="file" name="Attachment"...
  11. 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=""...
  12. jl8789

    CFMAIL Email address validations

    This problem can easily be overcome by setting the smtp sendpartial property to true in the JVM Arguments in the CF server settting. This way, if any 'bad' addresses are in the list, they will simply be ignored and the rest of the valid addresses receive the email. -Dmail.smtp.sendpartial=true
  13. 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"...
  14. 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...
  15. jl8789

    Using CFMail

    rsvirani, did you ever find a solution to this? I am having same issue with cfmail that if one is bad in the list, the email doesn't get sent out. It works ok using my outlook, but not using my relay mail server I am supposed to use when delivering emails through applications... It appears...
  16. jl8789

    Reset Button and onblur events

    I get a "stack overflow at line 0" when trying to do that formReset function... I'm pretty sure I'd have to reset each day's text controls and know what the default values were. Cuz when I use my function that is behind my onblur it sends in the text object and the original number that was in...
  17. 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...
  18. jl8789

    CFMAIL Email address validations

    Thanks. I'm putting a list of addresses in the TO line, usually from a query. Either way, the email address has to actually exist and be valid, not just only be syntactically correct.
  19. 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...
  20. 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...

Part and Inventory Search

Back
Top