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

    Firehose mode

    Hi thanks, Ok this is great. One more thing. I thought we could change a database cursor setting somehow so we don't have this problem.
  2. Eduu

    Firehose mode

    Hi, I have a problem trying to edit my records in an SQL Server 7 database from Enterprise Manager. I right click on the table select open table - return all rows. When I try to save my changes it gives me an error - Transaction cannot start while in firehose mode. How can I work round this...
  3. Eduu

    Cannot connect to Database

    It seems to me like you just copied the connection string from somewhere and pasted it in there - I could be wrong though! Is password(small letters) the password you use to connect to your database? Is UserID your user name? Replace db_name with the name of the table you want to connect to...
  4. Eduu

    Preventing Prompts when running sql from macros

    I created a macro that has a RunSQL action in it. Everytime it runs I'm prompted to verify that I want to allow these changes to the database. How do I stop the prompts from popping up?
  5. Eduu

    NEED FUNCTION TO REPLACE CHARACTER IN STRING

    Why don't you just multiply the number by 100?
  6. Eduu

    Cloning servers

    Thanks but I can only use this to clone workstations. I want to clone servers. Do you know of any tool. Thanks.
  7. Eduu

    Cloning servers

    Where can I find a software like "Ghost" for system duplication (cloning). I need a tool to clone servers. Thanks
  8. Eduu

    Using Active Directory

    Thanks. I have a few problems with this. Firstly, if someone types in a valid username without the correct password, it shouldn't let him in. I'm not try to validate that the user exists on system but on a network. I'm running Windows 2000.
  9. Eduu

    Using Active Directory

    Has anyone tried programming with the Active Directory Services Interface(ADSI)? I just want to be able to verify that my users exists on my network when they logon with their username and passwords? Any suggestions,links etc? Thanks
  10. Eduu

    Populating Combo Boxes from a Access Database

    vbscript has an equivalent method document.formname.Submit so what you do is that you have Three subs, one for each of the combo's eg Public Sub ComboBox1_OnChange document.formname.Submit End Sub On submission populate the appropriate combos. Does this help or was your problem how to...
  11. Eduu

    I'm trying to send email from my as

    Thanks, but that isn't exactly what I wanted. I want to be able to customize the message programmatically and have the user only select the recipients. Where can I find the CDONTS examples?
  12. Eduu

    I'm trying to send email from my as

    I'm trying to send email from my asp application. I don't mind if I have to do it on my server-side or client-side script. I want to use my exchange to do this. I want to be able to let the user select his recipients from a dialog box, containing the names in his address book. Is this possible...
  13. Eduu

    Send Outlook mail in text/html format

    You'll need to format your HTML code especially if it contains double quotes ("). You can either replace these with this(""), as shown in the example above(I've never tried this myself) or use single quotes('). Also FrontPage puts numbers in quotes (eg size="10") you...
  14. Eduu

    Database insert

    I found it. The syntax is "INSERT INTO....SELECT..." Thanks anyway.
  15. Eduu

    Database insert

    Ok something like thiS INSERT INTO XXX VALUES(SELECT SUM(XXX) FROM YYY) or something
  16. Eduu

    Database insert

    How do I insert a record into one table, using a calculated field from another, without having to first store the value in a variable?

Part and Inventory Search

Back
Top