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 jamesdavies

  1. jamesdavies

    Spell Check

    We use one Called Sentry Spell Checker - distributed as .DLL and very easy to implement - been using it for several years now, so our version's probably a bit out of date. See www.spellingchecker.com We've implemented a user object with one function: public function string uof_spellcheck...
  2. jamesdavies

    PowerPrinter 1.1

    Rose, I'm afaraid I dont know anything about PowerPrinter, but am interested in finding out about it. We have a number of powerbuilder 6.5 programs doing various things for printing under different operating systems, and still have a couple of print processes that only work under windows...
  3. jamesdavies

    16 Bit App GPF with SQL 7

    Hi, I have a 16 bit Win 3.11 app which works fine against sql 6.5, but one query causes a GPF when connected to a SQL 7 database. Query is a select statement with 57 columns including 2 text fields and 2 outer joins (a report, to be printed on custom stationary, requiring win 3.11 as setting...
  4. jamesdavies

    Beginner Question - Monitor users on Database

    You should be able to create a teble to store all logins, then add a trigger tp the table with the last_login column to populate it: create table login_history ( staff_id int NOT NULL, logged_in datetime NOT NULL) GO create trigger a_name on a_table for update AS if update (last_login)...

Part and Inventory Search

Back
Top