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 Bwintech

  1. Bwintech

    Execute ASP Script within T-SQL

    Hi, Thanks so much for your reply. I have gotten to a stage whereby I can create an instance of the object but cannot execute any of its methods. I keep on getting an 'Bad Variable Type' error. The object is written in Delphi I think, the method is below: function Logon(OperatorGroupID...
  2. Bwintech

    sp_OAMethod and Bad Variable Error

    Hiya I am trying to execute a COM objects method from T-SQL. I am using sp_OAcreate to create an instance - which is not producing an error. The Method expects 3 variables, int, string, string. and returns a 1 or 0. I am referencing it as below.. EXEC @hr = sp_OAMethod @object, 'OLogon'...
  3. Bwintech

    Execute ASP Script within T-SQL

    Hi Thanks so much for your reply. The only reason I need to execute an asp page is because I need to execute a COM object. Can the object rather be executed via the Sproc sp_oa? Regards, Brett
  4. Bwintech

    Execute ASP Script within T-SQL

    Hi I have an asp script that I need to execute as part of a SQL stored procedure, passing paramaters in between. Is this possible? Thank you kindly for any help. Regards, Brett
  5. Bwintech

    Email application to send ASP based email

    Hi I have previously been using cdonts and cdosys to send asp based mail - basically looping through a recordset of emails adresses and generating the body of the each email with the results of a query to the db using that email address. Hence each email is dynamically sent and generated. This...
  6. Bwintech

    Windows Account regularly locks on IIS driven intranet

    Hi We are running a intranet fired up by IIS 5.0 (windows 2k)and have encountered a bizarre problem with one of my users. This user only has access to a certain part of the intranet but every time he brings up the appropriate URL - he is prompted for a password BUT his account locks out...
  7. Bwintech

    Using a Trigger to Insert updated columns only

    Thanks John Any column may be updated, I only want the trigger to fire if column A is updated though..
  8. Bwintech

    Using a Trigger to Insert updated columns only

    Great! Thanks John. Works perfectly. What if I want to only insert that row if column A has been updated? Where do I add this to the insert statement?
  9. Bwintech

    Using a Trigger to Insert updated columns only

    Hi I want to use a trigger to insert a row into a new table if one particular column (within that row) has been updated. How do I code the SQL SYNTAX for Insert 'Updated Row into new table' within the body of the trigger? Thank you kindly for your help. Brett
  10. Bwintech

    Disable internet access for accounts in Windows 2000 GPO

    Hi I want to create a GPO for certain users and restrict them from accessing the internet. I have looked through the polocies and can only locate restricting levels of access and IE options but I want to restrict any internet access for this GPO. Can I deny access to the DNS servers maybe...
  11. Bwintech

    Updating multiple records in one form

    Hi Jonax This worked like a charm! Thank you so much for your help. :)
  12. Bwintech

    Updating multiple records in one form

    Hi Jonax Thanks again for your help. The unique identifier for these users is userid column, I want to update the AmountOwed and TotalPaid columns as text boxes next to each userid. The table is in a SQL2000 db, name is ClientPayment. Cheers
  13. Bwintech

    Updating multiple records in one form

    Hi, thank you for your help. Currently I have a initial screen to choose the user you wish to modify. Once a user is selected, you enter the user's details in a form as below.. <FORM METHOD = 'GET' ACTION = 'ConfirmChange.asp'> Enter New value </font><INPUT TYPE = HIDDEN SIZE = '1' NAME =...
  14. Bwintech

    Updating multiple records in one form

    Hi I want to create one form that has an text entry for each record, the user to enter a value for each record in a seperate text box and have one submit button to process an db update for each record. I am very comfortable doing this for one record but unsure how to do it for many records...
  15. Bwintech

    How can I export ASP recordset to Excel Spreasheet

    Hi Can I export a SQL-Driven recordset directly to a excel spreadsheet, without use of a export wizard - i.e. through ASP code? Thanks in advance for your help, Regards, Brett

Part and Inventory Search

Back
Top