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 TouchToneTommy 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 sathandle

  1. sathandle

    Moving Tablesfrom Access to MS SQL Server

    ********* You may want to consider exporting your data to a fixed length text format instead. Set the field length for the memo field to the maximum length + 100. ********* Access also has an upsize wizard that "upsizes" the Access database to SQL Server. You may want to look into that. Look...
  2. sathandle

    Print Multiple Copies of Same Report

    It seems as if someone else has had similar issues. r937 answered my post in the SQL Server Programming Forum and I thought it would be appropriate to post the answer here as well (I posted in both forums). see thread 701-553683 in "Access Queries and JET SQL Forum" It has been a GOOD day...
  3. sathandle

    Duplicate Order Details and Increment

    THANK YOU!!! It worked like a charm!!! To add to the efficiency of the creation of the integers table: DECLARE @Value int SET @Value = 1 create table tblIntegers (i integer) WHILE @Value<=100 BEGIN PRINT @Value insert into tblIntegers (i) values (@Value) SET @Value = @Value +...
  4. sathandle

    Duplicate Order Details and Increment

    I have an order fulfillment application that is trying to generate multiple copies of the same order so the order document can be placed on each individual box. How can I create a data source that duplicates all of the orders a given number of times. Therefore, if I need 7 copies of Order...
  5. sathandle

    Print Multiple Copies of Same Report

    I have an order fulfillment application that is trying to print multiple copies of the same order so the entire order document can be placed on each individual box. How can I have Reporting Services print the order X times with a number on each print? Therefore, if I need 7 copies of Order...
  6. sathandle

    Merge Replication Restriction

    This would best be done at the .NET interface level. Don't beat your head against the wall unless you know how to plaster.
  7. sathandle

    Change Linkage on tables to Access From SQL Server

    I have a db that has several linked tables. They are currently linked to SQL server (MSDE Client). I want to change the properties of the links to link the tables to an Access db. When I run code that will automatically link the tables that includes the following Dim oCat as Catalog Dim...
  8. sathandle

    How refer to control on tab of tabbed form?

    Controls on a tabbed form are referenced the same as a control on the form itself. Use Me.ControlName Don't beat your head against the wall unless you know how to plaster.
  9. sathandle

    Storing the path of a Word document in Access automatically

    Have you considered to save the document automatically and not allow the user to enter the file name? Pre-established file path example: &quot;\\servername\clientID (or Client Name)\2004\&quot; & templatename & now() & &quot;.doc&quot;, where templatename is based on the 5 pre-established...
  10. sathandle

    BIOS not adding failed drive to drive table

    Words are so inadequate sometimes to fully explain a process... Here are the step by step processes completed thus far. On computer A (550 MHz, Award BIOS, Soyo 5EHM, circa 1998): (1) Hook up drive to secondary IDE Controller, master (2) BIOS recognizes drive (drive's specs are listed when...
  11. sathandle

    BIOS not adding failed drive to drive table

    I have an older IDE hard disk that has a confirmed failure that is being recognized by the BIOS, but the BIOS fails to assign the failed drive a drive letter/allow the machine to recognize the drive/add the drive to the drive table so I can run my data recovery software. I am running Award BIOS...
  12. sathandle

    Poblem tabing, Need Help.

    In the AfterUpdate or LostFocus of the last control on page 1, add the following line to your code: me.tab2.setfocs me.tab2control1.setfocus Good Luck :-) SATHandle Don't beat your head against the wall unless you know how to plaster.
  13. sathandle

    Dsiplaying last /new record first in Contineous Sub Form

    I'm out of 'viable' ideas. You may try a blank record for each customer that becomes the first record in the group??? This isn't very elegant, but doable - Like I said, I'm out of 'viable' ideas. :-) Don't beat your head against the wall unless you know how to plaster.
  14. sathandle

    Export Form-Design to HTML

    Why not export to XML? I have Access 2002, so I am not certain if this is available in previous versions of Access, which I am sure it is not. :-) Don't beat your head against the wall unless you know how to plaster.
  15. sathandle

    Code Running when Form Opened in Design View??

    I have a form that is running code when it is being opened for editing in design view. The steps I am doing is as follows: 1. Open database using shift key bypass. 2. Highlighting form. 3. Click on Design so I can make changes to the form 4. I am now prompted for my territory (i.e...

Part and Inventory Search

Back
Top