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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dwu1998

  1. dwu1998

    Get data from a report

    Hi all, How can I retrieve data programatically from a crystal report using vb.net? Thanks in advance for any help.
  2. dwu1998

    Newline character

    If I use Notepad to open a text file written by a Java program, the new line character displays as a special char rather than actually breaks to a new line. If I use Wordpad or read the file in Unix, it displays normally - it breaks to a new line. Anything I can do to resolve this? Thanks!
  3. dwu1998

    Hi, I have a web server (NT4.0/I

    Hi, I have a web server (NT4.0/IIS4.0/sp6) running several intranet applications and is inside a domain. All web applications use domain user IUSR_servername for anonymous access. Recently, I have experienced high frequency of error message saying "The referenced account is currently...
  4. dwu1998

    The referenced account is currently locked out

    Hi, I have a web server (NT4.0/IIS4.0/sp6) running several intranet applications and is inside a domain. All web applications use domain user IUSR_servername for anonymous access. Recently, I have experienced high frequency of error message saying "The referenced account is currently...
  5. dwu1998

    Why do I get "type fault" error with Array creation:

    In this case, you can try delete "redim" part. So, you'll have something like this: Dim nameArray 'Redim Preserve nameArray(3) nameArray = Array("User_name","Password", "Bill_Company") Good luck,
  6. dwu1998

    ASP query & logic

    Add one line to your code, something like this: If not rs.BOF then Do While NOT rsEOF Count = Count + 1 Redim Preserve PhoneNum(count) PhoneNum(count) = rs("PhoneNum") rs.movenext Loop end if Good luck,
  7. dwu1998

    setting a server-side hidden variable in client-side script

    Have you tried change "onClick="Javascript:Arrows('end', 'endValue');" to "onClick="Javascript:CheckValues('end', 'endValue');"? Good luck,
  8. dwu1998

    Can't access website using internal IP address

    Hi all, We have a website running on IIS4.0. After installing and turning on SSL, an intranet application using internal IP address (because of firewall) did not work, getting "The page cannot be displayed" error. The website grants access to only certain IP addresses, which include...
  9. dwu1998

    web server not accessible

    Thanks! The server on which my app is running called "server1". I used to be able to access the app by this url - "http://server1/my_app". Now, "server1" is within domain "domain1". I got "This page can not be displayed." error when I try to...
  10. dwu1998

    web server not accessible

    I have an intranet application running on an NT server. When this server was put under another domain, the web server stopped running. The err: "Access denied". How can I make it work? Any help would be highly appreciated.
  11. dwu1998

    web server down, help!!!

    I have an intranet application running on an NT server. When this server was put under another domain, the web server stopped running. The err: "Access denied". How can I make it work? Any help would be highly appreciated.
  12. dwu1998

    Exiting a For Each Next loop

    use &quot;exit for&quot; like For Each <file> in <directory> 'Find InStr(&quot;text&quot;,<file>) if textFound then exit for end if Next
  13. dwu1998

    Access Database Variable Problems

    What is the data type of RMA#? If it is text, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = '&quot; & variable &&quot;'&quot; One more thing, there should be a space between &quot;&&quot; and varable.
  14. dwu1998

    Access Database Variable Problems

    If you are using vbscripts, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = &quot; & variable If javascripts, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = &quot; + variable Good luck!
  15. dwu1998

    keep requesting client browser

    Yes it makes sense. Maybe I didn't describe the problem clearer. Page2.asp does not know in advance which question process.asp will ask, so there is no way that page2.asp can have an answer before calling process.asp. Process.asp has no access to a database that stores the answers to its...

Part and Inventory Search

Back
Top