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 strongm 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: *

  1. jaredmcguire

    Dell AXIM Backup Battery

    I have an Axim and have had no problems. It sounds like you have a loose connection inside the unit. Try contacting Dell support. If its under warrenty, get it replaced.
  2. jaredmcguire

    Good SQL Statement Excute No Go

    I see nothing wrong with your code. Check the permissions on your database. INSERT statements require write access and you will get this error if write permissions are not set. FYI: On the the line: SET pcolors = conn.execute(strSql) You can simply shorten this to: conn.execute(strSql) INSERT...
  3. jaredmcguire

    EventLog.WriteEntry Method Question

    OK, I've foud out that the log entry cannot be more than 16K in length. So now my question is 16K equals a string that is ?? characters long?
  4. jaredmcguire

    EventLog.WriteEntry Method Question

    My question is for the EventLog.WriteEntry Method. What is the maximum length of a string that the event log can handle?
  5. jaredmcguire

    VB.NET: EventLog.WriteEntry Method Question

    I couldn't find a forum for VB.Net so I put this here. My question is for the EventLog.WriteEntry Method, what is the maximum length of a string that the event log can handle?
  6. jaredmcguire

    Advanced Delete Statement

    thanks swampBoogie, that worked wonderfully.
  7. jaredmcguire

    Advanced Delete Statement

    swampBoogie: I am only trying to delete from the EmailList table. The Optout table is what I am using for criteria. I want it to delete any records from the EmailList teble that have a matching EmailAddress field in the Optout table. I know I can do this as a SELECT statement. tlbroadbent: I...
  8. jaredmcguire

    Advanced Delete Statement

    I have a database with 2 tables EmailList and Optout. The EmailList table contains 3 fields: FirstName, LastName, and EmailAddress. The Optout table has one field: EmailAddress. I have figured out how to perform a SELECT query that will display records from the EmailList table if there email is...

Part and Inventory Search

Back
Top