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

    Multiple-step operation generated errors

    I am using ADO. The following SQL query will retrieve 1 record correctly. Select Distinct hrSsn as hrSn, ' ' as OsnText From table_abc Where hrSsn = 119928443 For Fetch Only But the following code gives error: "Multiple-step operation generated errors". Debug pinpoint the...
  2. bmcc

    refresh client screen on time

    What I am trying to do is when user click on a web forms button, a "Processing...." text will show up on a label. The following is the code for this button. Problem: click on the button, the text will only show up in the lable AFTER the startprocess() is completed. Is there anyway to make it...
  3. bmcc

    Etched Border

    I used Shape control to draw a rectangle on a form. How can I change the border of this rectangle to be etched? or inverted, or sunken? Many thanks.
  4. bmcc

    Record internet radio programs

    I listen to radio programs via internet. I wonder how to record them as mp3 files so that I can listen to the recorded programs later. Can this be done with vb6 and which controls will achieve it? Many thanks.
  5. bmcc

    Global temporary table error

    I get the following error message when I create a funtion to test Global temporary table. DB2 version is 5.x Many thanks for your help. SQL0199 - Keyword TABLE not expected. Valid tokens: NOT DEFAULT. Here is my program: CREATE function testtemptable() returns integer LANGUAGE SQL...
  6. bmcc

    onblur question

    In my code, "chkdup()" will do the followings: open a child window, validate user input against database data, then close itself (child window). If onblur is triggered by pushing Submit button, then immediately after the validation (as above) , it should invoke the Confirm.asp (if...
  7. bmcc

    onblur question

    I'm using onBlur() to validate a field in a form.(following code, btw chkdup() is a Javascript function) <form name=&quot;survey&quot; method=&quot;post&quot; action=&quot;Confirm.asp&quot;> <input type=&quot;text&quot; name=&quot;a&quot; onBlur=chkdup()> <input type=&quot;text&quot...
  8. bmcc

    How to Pass Array to a Form without Losing Data

    Neversleep, thanks for your help. However, your fix will pass the array in test2.pl as a string to test3.pl : $class[0] has 'cis100cis200'. Is there a way to fix it so that in test3.pl, $class[0] has cis100, and $class[1] has cis200 ? Also, I wonder what's causing the original problem ? How...
  9. bmcc

    How to Pass Array to a Form without Losing Data

    Neversleep, thanks for your help. However, your fix will pass the array in test2.pl as a string to test3.pl : $class[0] has 'cis100cis200'. Is there a way to fix it so that in test3.pl, $class[0] has cis100, and $class[1] has cis200 ? Also, I wonder what's causing the original problem ? How...
  10. bmcc

    How to Pass Array to a Form without Losing Data

    In the following test2.html code user does multiple selection. When Submit is pushed,the selections are passed correctly to an array in test2.pl. (e.g. cis100cis200) However, if I pass this array in test2.pl to test3.pl as a hidden filed as a hidden field, only the first entry out of the...

Part and Inventory Search

Back
Top