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

    how to open and import files in Zeves within Java

    @stefanwagner: But that is clearly intended to be the first argument being the full path pointing to a pyw file, and that is needed as far as the cmd window on windows os. Well, I pass and it needs only a simple test to establish the need.
  2. tsuji

    how to open and import files in Zeves within Java

    Have you read my response to your thread of the same problem? http://www.tek-tips.com/viewthread.cfm?qid=1637183&page=1 I did not post it lightly. You need to wrapper the path to pyw file with quotes because the path contains spaces. String[] cmd = {"C:\\Python23\\pythonw.exe"...
  3. tsuji

    Getting XML data using ASP

    For i = 0 To (getVouchers.Length - 1) set getVouchersChildNodes=getVourchers.item(i).ChildNodes For j=0 To getVouchersChildNodes.Length-1 response.write getVouchersChildNodes.item(j).tagName & " = " & getVouchersChildNodes.item(j).text & "<br /><br />" Next Next
  4. tsuji

    Regular expression

    So? you can't even test correctly.
  5. tsuji

    Regular expression

    As I am not, I test it then. The result: it does.
  6. tsuji

    Regular expression

    >123456789123 - should yield 456789123 It does, does it not?
  7. tsuji

    Regular expression

    [2] That seems to confirm my suspicion that the spec of the requirement is actually incomplete. To reconcile the case (3) with cases (1) and (2), I can only impose that the numeric has digits longer than 3 just to eliminate the 3-digit results for (1) and (2). 4-9 digits is very contingent...
  8. tsuji

    Regular expression

    [0] Just to assure the reading is correct: >the last 9 digits presented before a separator of -,/ or space. I take it as 1 to 9 digits; separator -, /, or space (not including the comma). >123456 should return 123456 I take it the end of string is also a "separator"/delimiter. To reconcile...
  9. tsuji

    XmlDocument.appendChild (et al.) is not closing tags immediately

    I bet the List (myXmlDocumentList) is wrongly established. It would have .Count=1 only and the sole item is mixed up. The line concerning the big should be working just fine.
  10. tsuji

    XSD conditions

    wxsl v1.0 is not expressive for this kind of constraints. It would be relegated to the application level "validation" in tandam with the validation process to the letter of wxsl. However, v1.1 work-in-progress will certainly give partial satisfaction of this kind of constraints. So the short...
  11. tsuji

    How do I pass One JSON Record to a Function

    [0] >var users = eval(trim(xmlhttp.responseText)); Since you're not using json library, I can thereby suppose xmlhttp.responseText is what sometimes called json text and users is the parsed json object. First, you've to correct the obvious mistake. trim is not a js function. var...
  12. tsuji

    onmouseover script not working with link to new page

    Please do not use red/bold or the sort in a prolonged block of message. It is unreadable.
  13. tsuji

    help with cURL script to login into yahoo.

    Post the question to php forum. http://www.tek-tips.com/threadminder.cfm?pid=434
  14. tsuji

    How do I pause this function?

    I detect some lack of spirited approach to programming. That does not help a career. function strBrowser() { var i=1; for (i=1;i<=varNUM;i++) { var cmd = 'window.open("'+varURL+'")'; setTimeout(cmd, (i-1)*5000); } } This time you need to read every comma and apostroph of what I posted rather...
  15. tsuji

    displaying a &quot;catalog list&quot; of items with photos stored in oracle tabl

    If you don't want to use session which involves some more variable matching that you can do wrong, you can always write the src attribute with the proper querystring and then in the oneitem.asp query again the db to write out the byte(). That takes two trips of fetching hence taking more time...
  16. tsuji

    How do I pause this function?

    First thing first, why you take that mile to set i=1 and don't care to define what varNum is? and then varURL?
  17. tsuji

    displaying a &quot;catalog list&quot; of items with photos stored in oracle tabl

    In the looping page, you establish session("x_1002")=rs("photo_front").value 'when 1002 is the mtarget or whatever in the querystring Then in the oneitem.asp, pick up the querystring and use response.binarywrite of the session("x_1002") or the corrsponding one and then clear the session...
  18. tsuji

    How do I pause this function?

    There are only four lines in the link. I am sure you can read it again and again many times including the commas and apostrophes before you finish your lunch.
  19. tsuji

    Help with looping through records

    >@row = $sth->fetchrow_array; >foreach $row (@row){ > etc etc... >} This instead (it moves while fetching): while (my @row=$sth->fetchrow_array()) { #etc etc... }
  20. tsuji

    How to Send Line to a URL

    [0] Q:>how i am supposed to go about looking into the source code A: Every browser has some button so that user can look at the source code. But if you have no idea of html, then it falls into the category of "lost control to everything." [1] Q:>and even how to put a link in the URL in the...

Part and Inventory Search

Back
Top