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

    Pass parameter to stored procedure and return EDITABLE recordset

    Haven't ever tried a pass-through query. I have now created three stored procedures just to get the thing up and running (have one years worth of work to do in 5 weeks!!) so i'll probably try it when i have some more time. Thanks...
  2. jacq

    Pass parameter to stored procedure and return EDITABLE recordset

    According to Microsoft Help and Support: Microsoft Access forms will only allow you to edit data from an ADO recordset if the ADO recordset is created by using a combination of the MSDataShape and SQL Server OLEDB providers. I have also tried changing the select from a WHERE to INNER JOIN but...
  3. jacq

    Pass parameter to stored procedure and return EDITABLE recordset

    In case anyone is interested, i changed my stored procedure to include only one table (it previoulsy had 3 tables joined) and it allowed me to pass a parameter and return an updateable recordset using the code as RoyVidar suggested. Id does say in the MSDN site that you can have joined tables as...
  4. jacq

    Pass parameter to stored procedure and return EDITABLE recordset

    Thanks, but it still doesn't work. I have used those two articles before and they helped me a lot. I have decided that it can't be done and will just use dsn links instead. Thanks for your help anyway...
  5. jacq

    Pass parameter to stored procedure and return EDITABLE recordset

    Thanks I tried that and am still getting This recorset is not updateable. This is my full code, is there something else that I am missing? Set cnnServer1 = New ADODB.Connection Dim prmCallID As ADODB.Parameter With cnnServer1 .Provider = "MSDataShape" .Properties("Data Provider").Value...
  6. jacq

    Pass parameter to stored procedure and return EDITABLE recordset

    Hello I have two methods for a recordset based on a stored procedure. Without parameter (creates an editable recordset): Set rstSP = New ADODB.Recordset With rstSP .Source = "usp_getOpenCalls" .ActiveConnection = cnnServer1 .CursorType = adOpenKeyset .LockType = adLockOptimistic...
  7. jacq

    Problem with collecting data from the web - Please help!

    i do a similar thing. i have my main db with it's own tables, and then links to the tables in the web based db. every time i download the db i run queries etc to copy the new data from the linked tables into the live tables, clear out the data from the linked tables and upload the empty...
  8. jacq

    response.redirect/request.form problem

    thanks, but isn't that javascript. i have some information in a form that i want to pass to the url. when i tried to do it in javascript i could redirect the page, and retrieve the values from the form in the second page, but i couldn't mix the asp with the javascript code to pass the variable...
  9. jacq

    response.redirect/request.form problem

    if i run this from page1.asp: <form action=&quot;page2.asp&quot;> and on page2.asp write: request.form(&quot;field1&quot;) i get the value from field1, page1.asp. OK if i use: <form action=<%call function()%>> and the function is: if radio button = 1 then...
  10. jacq

    cookies in IIS

    i am very new to this. i am running xp professional and iis on my pc. i am trying to create cookies but it does nothing. i uploaded the same asp pages onto my isp they were created fine. are there some settings i should know about? jacq
  11. jacq

    change users passwords from the admin login

    i am using user level security, but i also store the logins in a table with a date so that users have to change their passwords every two months (i initially set up the code to store all information, so by default i have the password but i don't want the users to know). the dB user/administrator...
  12. jacq

    change users passwords from the admin login

    i have a dB with many users who frequently forget their passwords (i have a table - tblName - that contains all the users passwords and logins). i tried to use object.NewPassword oldpassword, newpassword, but i can't set the object (user), as it wants the workgroup user, and won't accept a...
  13. jacq

    dB Not Responding

    Thanks I have closed and set all recordsets to nothing. I have no open loops. If I run the code using F5 it locks, if I run the code using F8 it locks, if I put msgbox's in it locks. But it has run for me several times so I know intrinsically the code is ok.
  14. jacq

    dB Not Responding

    I am having a problem with 3 specific forms that keep freezing, and when I look at Task Manager it says Not responding (it seems to be at between 12MB and 17.5MB). I think it is because I am manipulating a lot of data via recordsets. Is there any way I can somehow reset the memory halfway...
  15. jacq

    create a report through code

    i am trying to create a report based on data i have inserted into a temporary table (each time the table is created it has different fields). i need to create a report based on the fields in the temporary table each time the user runs the report. i can createreport, i can createreportcontrol in...
  16. jacq

    location query - passing a variable

    thanks, i can pick up the ID now, but i still can't get it to pick it up in the URL reqID = location.search location = &quot;../folder1/comment.asp+reqID&quot;; returns http://server1/asps/folder1/comment.asp+reqID instead of http://server1/asps/folder1/comment.asp?ID=2 what am i doing wrong?
  17. jacq

    location query - passing a variable

    i am trying to add an ID to a web page URL. i have (in ASP) reqID = request.QueryString(&quot;ID&quot;), and can read this with response.write, but when i try to put this value into my URL is returns nothing: location = &quot;../folder1/comment.asp?ID=&quot; + reqID; if i put location =...
  18. jacq

    Function to Delete a Users Password

    thanks for the replys what i have is a secure database in which every user has the ability to change their password, and 2 admin people who administer the data via a seperate menu form. but, when users forget their passwords i have to delete them via the User and Group Accounts as i cannot...
  19. jacq

    Function to Delete a Users Password

    Can anyone tell me if it's possible to delete a users password, or reset it without knowing what it is and without going into User and Group Accounts. We allow users to change their passwords using the NewPassword function - object.NewPassword oldpassword, newpassword, but they are constantly...
  20. jacq

    insert current date on click in one column

    how do i select as a range a whole column, so that if someone clicks into any cell in that column it inserts the TODAY()

Part and Inventory Search

Back
Top