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!

Search results for query: *

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

    ConnectionTimeout

    ASP, IIS6 Set con = Server.CreateObject("ADODB.Connection") con.ConnectionTimeout = 10 con.CommandTimeout = 10 con.cursorlocation=3 strConnection = "DSN=blab ...;uid=...;pwd=...." con.Open strConnection These timeout setting don't work. My query run for 15 seconds and it's not time out. How...
  2. Kendel

    No updates, deletes or inserts are allowed in SQLPrepare

    I'm trying to insert a record to a db and I got this error. Set con = Server.CreateObject("ADODB.Connection") con.Open "DSN=MyDB;uid=myuid;pwd=mypwd" con.Execute("insert into myTable values (...,...,blab,blab)") Microsoft OLE DB Provider for ODBC Drivers error '80004005' [CA][ODBC...
  3. Kendel

    System date time

    I'm trying to set up some restriction on a web page. I have this piece of code: <% if time() >= CDate("8:00:00 AM") and time() <= CDate("5:00:00 PM") .... blab ..blab ... end if %> I tested it on the server, it works as expected. But for some unknown reasons, this setting doesn't work for...
  4. Kendel

    Database driver

    Hi All, How do I know what diver my app is using? Thanks.
  5. Kendel

    Can't get combo box value in FF

    Can someone please show me how to get a combo box value in FF? With IE7, I can use this: var comboVal = document.getElementById("combo1").value; OR var selIndex = document.getElementById("combo1").selectedIndex; comboValue = document.getElementById("combo1").options[selIndex].value; OR var...
  6. Kendel

    buttons onclick

    Hi all, Is it possible that clicking on one button will make another submit button get clicked? The "fake" button is form1. The "real" submit button is in form2 and it is hidden by default. Click on the fake button will make the real button get clicked and then hide the fake button. There is...
  7. Kendel

    Disable security

    I'm using this command: WPSConfig disable-security –DWasPassword=wpsadmin –DPortalAdminPwd=wpsadmin to disable Portal 6.0.0.0 server. It ran for about 12 minutes, everything seems to work fine but then I ended up with the error: BUILD FAILED Target '?DWasPassword=wpsadmin' does not exist in...
  8. Kendel

    conver float to string in the query

    Hi All, I know I can break a column's value after I get the result set but can I break it in the SQL statement. something like: Select Left(column2,4) as first4, Right(column2,4) as last4 from ...blab ..blab The data type of column2 is a float so I need to convert it to a string first. Can...
  9. Kendel

    break a colummn

    Hi All, I know I can break a column's value after I get the result set but can I break it in the SQL statement. something like: Select Left(column2,4) as first4, Right(column2,4) as last4 from ...blab ..blab Thanks.
  10. Kendel

    Page break

    Hi All, <p style='page-break-after: always'> This will work in FF but won't work in IE. Does anyone know how to break the page in IE7? Thanks. -kendel
  11. Kendel

    loading message with image

    I'm trying to display a loading message while the page is being loaded. On IE, the image is not changing the color. I'm talking about the image that has some dots in color that looks like a progress bar. It works fine in FF. How can I fixed it so that it will work with IE as well. If the form...
  12. Kendel

    CSV Export

    Hello: I'm using Crystal 10.0.5.1177, when exporting my report to CSV file, it got a couple errors: 1. Page header repeat on every record. 2. Conditional suppress was displayed in the file Does anyone has this kind of problem? How to fix it? Thanks.
  13. Kendel

    Problem when exporting to CSV

    Hi All, I'm using Crystal 10.0.5.1177, when exporting my report to CSV file, it got a couple errors: 1. Page header repeat on every record. 2. Conditional suppress was displayed in the file Does anyone has this kind of problem? Thanks.
  14. Kendel

    date picker

    Hi All, Does anyone has an example of date picker using DIV instaed of popup window that works with jsp? Thank you so much.
  15. Kendel

    ASP won't wok on the server

    Hi All, I have an ASP app, it works fine on my local machine. When I copy to the server, it won't work. Can someone please show me step by step that I need to do. Do I need to install ASP on the server? How? Thank you in advance.
  16. Kendel

    jsp + popup calendar

    Hi all, This is a jsp + javascript problem. I'm trying this forum first, if you tell me it's wrong forum, I will move my thread to javascript forum. Thanks. I found this link: http://www.mattkruse.com/javascript/calendarpopup/ Followed this link to get the js file...
  17. Kendel

    edit mask

    Can someone please tell me how to get to edit mask? Thanks
  18. Kendel

    summary

    Hi all, My query returned hundreds of records but only those that meet my criteria are being displayed in the report. I need to count the number of records being displayed. How can I do this? Thank you in advance. -k
  19. Kendel

    condition like '%'%'

    Hi All, I'm trying to search for customer's name with an apostrophen how can I do that? I'm testing it in Query analyzer and this won't work: Select * from CustTable where customerName like '%'%' Thanks.
  20. Kendel

    Cross-tab: new group in new page

    Hi All, I'm using crystal 10. Using cross-tab, how do you start new group on the new page? Thanks -kendel

Part and Inventory Search

Back
Top