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. actionbasti

    SQL Server 2000 - on delete cascade problem

    Hello SQLers! Working Code: create table Rules( RuleID int identity(1,1) not null, UserID int not null, AccountIDSource int, AccountIDTarget int, ActionID int, ActionValue money, NextActionDate datetime, Foreign Key(UserID) References Users(UserID) on delete...
  2. actionbasti

    SQL Server 2000 - on cascade delete question.

    Thank you.. I will check out that forum. Seb
  3. actionbasti

    SQL Server 2000 - on cascade delete question.

    Hello SQLers, Working Code: create table Rules( RuleID int identity(1,1) not null, UserID int not null, AccountIDSource int, AccountIDTarget int, ActionID int, ActionValue money, NextActionDate datetime, Foreign Key(UserID) References Users(UserID) on delete cascade, Foreign...
  4. actionbasti

    Access Executable

    Thanks Everybody
  5. actionbasti

    Closing a form?

    Thank you that worked.
  6. actionbasti

    Access Executable

    When I have finished my Access .adp Database. Is there a way to create an execuatble so that my team doesn't have to start access and then go to 'Forms' and then click on the Main form to start up the DB app. ? I am asking because I found one in a tutorial, but i cannot find how to create it. thx
  7. actionbasti

    Closing a form?

    Hi, I am really new to adp and access. I am trying to open a form based on a listbox selected item. That works great but i cannot close the origin form. This code gives me an error. The close command just closes everything and brings the following error message: The expression you entered...
  8. actionbasti

    passing listbox values to filter criteria

    Hello, I am trying to wirte a db program that holds projects and tasks associated with those projects. Now i want to have a listbox with the project names (one table) and a second listbox that has all the task that belong to that project (second table). And when i click on the first listbox...

Part and Inventory Search

Back
Top