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 wOOdy-Soft 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: HowieG
  • Content: Threads
  • Order by date
  1. HowieG

    manipulate array based on substring

    This is difficult to explain, so I'll give an example. I have the following array of file names: Array ( [38] => CP.W.CC.0805 [39] => CP.W.CC.0812 [42] => CP.W.S.0805 [43] => CP.W.S.0812 [66] => IP.W.CC.0805 [67] => IP.W.CC.0812 [70] => IP.W.SP.0805 [71] =>...
  2. HowieG

    parameter variable error in procedure

    I'm trying to do a stored procedure to update data in a couple of tables. I've written the following code: CREATE PROCEDURE procPostInvoice @InvNumber nvarchar(15) AS --SET XACT_ABORT ON --if one fails, they all fail and all data is rolled back --BEGIN TRANSACTION --GO INSERT INTO...
  3. HowieG

    Use SQL Stored Procedure as source for non-ADP Report?

    Can you use a SQL server stored procedure (uses one parameter) as the record source for a MDB (non-ADP) Access Report? Thanks, Rob
  4. HowieG

    record-level not working, doing page-level locking

    I am using Access 2002 SP-2 (XP) under Windows 98. I'm developing a database that will be shared and I want to enable record-level locking. If one using is editing record X (through a form), another user should have full access to every record in the underlying table except record X. I do not...
  5. HowieG

    record-level not working, doing page-level locking

    I am using Access 2002 SP-2 (XP) under Windows 98. I'm developing a database that will be shared and I want to enable record-level locking. If one using is editing record X (through a form), another user should have full access to every record in the underlying table except record X. I do not...
  6. HowieG

    Linking 2 fields in Table A to 2 fields in Table B

    Assuming the following tables (fields): tblJobs (Job#, Closed, JobName, ...) tblPhases (Job#, Phase, PhaseName, PctComp, ...) tblCats (Job#, Phase, Category, MonthEnd, PctComp, ...) There is a 1-M relationship between tblCats and tblPhases based on (Job# and Phase), and between tblPhases and...
  7. HowieG

    Subreport summarizing data

    I have a report that will print line-item details of any number of timesheets, and I want a summary by Job of the jobs they worked on after each change in worker. Primary Tables: tblTSHeader (TSID, WorkerID, ...) tblTSDetail (EntryID, TSID, TSDate, JobID, HrsReg, HrsOT1, HrsOT2 ...) Sort order...

Part and Inventory Search

Back
Top