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: Yale
  • Content: Threads
  • Order by date
  1. Yale

    Check-in/Check-out or Form Locking Functionality is ASP

    Hello, Is it possible to implement a 'Check-in/Check-out' or 'Form Locking' Functionality in an application that is using classical ASP and SQL? Basically, what needs to be done is that if an existing request form is being edited by one user, no other user should be able to edit the same...
  2. Yale

    Server.CreateObject Failed Error

    Help! I am getting the following error message -- Server object error 'ASP 0177 : 800a8019' Server.CreateObject Failed /includes/incRetrieveCookie.asp, line 7 800a8019 Line 7 points to the following code -- Set oStateMgtSvc = server.CreateObject("SD_ICBAM.CStateMgtSvc") We have already...
  3. Yale

    blocking issue

    how do i resolve blocking issues? is there something that i could place in a sql script for it to avoid causing the blocking of transactions? thanks, YALE
  4. Yale

    simple select statemet times-out

    help!!! how come a simple "select top 1 * from mytable" times-out when the statement is supposed to just display a single row? how do i solve this? thanks, yale
  5. Yale

    URL Encode

    <script language="VBScript"> Function validateForm() dim origURL origURL = Trim(document.frmURLinfo.txtSourceURL.value) document.frmURLinfo.txtgeneratedURL.value = --> i want this field's value to be the url encoded value of origURL... how do i do that? "server.URLEncode(origURL)" does not...
  6. Yale

    Mapping Problem

    Any reason why the same piece of code that maps a folder in another server WORKS in one environment/server and FAILS in another environment/server? Sample code: dim oNet Set oNet = Server.CreateObject("WScript.Network") oNet.MapNetworkDrive "R:", "\\nbwtr12pu\folder", False, "thisistheID"...
  7. Yale

    Object doesn't support this property or method: 'Exec' error

    I'd like to know... What are the possible causes of the following error? VBScript runtime Error Number: -2146827850 Description: Object doesn't support this property or method: 'Exec' Any input would be greatly appreciated... Thanks, Yale
  8. Yale

    Timeout expired (0) Error

    ***how do i solve the following error?: TrackingID=68F9A4C263FEF8A8 764.SD_ICBAM V1.0.90.CDatabaseSvc.ExecuteQueryEx.0> error '80040e31' Timeout expired (0) Timeout expired vsSQLStatement=sp_approveContentReport_KCNet /ProcessRequests.asp, line 140 ***line 140 refers to the following...
  9. Yale

    open a new window without using &quot;window.open&quot;

    how do i open a new window without using window.open? thanks, yale
  10. Yale

    xp_regread does not return the right value

    i have the following code -- DECLARE @test varchar(20) EXEC master..xp_regread @rootkey='HKEY_LOCAL_MACHINE', @key='Software\Microsoft\Windows\CurrentVersion\Uninstall\{90510409-6D54-11D4-BEE3-00C04F990354}', @value_name='DisplayVersion', @value=@test OUTPUT SELECT @test @test returns "NULL"...
  11. Yale

    how do i retrieve subfolders in the registry?

    hello! i am trying to retrieve ALL the subfolders in "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" of the registry using the code below... for some reasons other subfolders are not listed/retrieved by the code... how can i resolve this? here is my code -- <%@...
  12. Yale

    How do i programmatically determine user's office version?

    i need to determine what office version the user is using for an "if-else" statement... any idea how to do this? btw, our application is using asp, vbscript, and javascript. thanks!

Part and Inventory Search

Back
Top