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 Wanet Telecoms Ltd 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: Dutt
  • Order by date
  1. Dutt

    Finding DB Tables without indexes

    Thanks Man...works like a charm!
  2. Dutt

    Finding DB Tables without indexes

    I'm trying to find out which tables in my DB don't have an index. Is there a select statment I can run that will give me a list of tables without indexes? Cheers
  3. Dutt

    String Manipulation

    I get the error when I try both examples: Arithmetic overflow error converting numeric to data type numeric. The statement has been terminated. Is there a way to do it in a Update Statement? Cheers, Justin
  4. Dutt

    String Manipulation

    I have a table called table1. It has a column called column1 and the datatype is numberic. Each record in that column has a trailing ".00000". I'm trying to build an update statment that will trim off the .00000. Any help would be great! Justin
  5. Dutt

    Printing question: Portrait/Landscape

    Hello, In CR 8.5 I compiled a report to make a .exe and .crf file. The report itself is landscape, so when I execute the exe and print to a windows the report doesn't show up in landscape. Is there a setting that controls this? Thanks
  6. Dutt

    Automate Mail merge when file is opened in Word 2000

    Thanks Jeff I'll give it a try!
  7. Dutt

    Automate Mail merge when file is opened in Word 2000

    Hello, I'm having some trouble trying to get a Word 2000 mail merge to automatically insert the data from it's data source(TAB-Text file)when the file is opened. I know you can do it in VBA, but I was wondering if there is a way to do it in the mail merge wizard that I missed. Thanks for the...
  8. Dutt

    Word 2000 Mail Merge

    I am trying to set up a mail merge document that when I open the word doc it will automatically do the mail merge in that particular file not open another. The merge would get the data from an outside ODBC text file. Anyone know how to set this up? Thanks Dutt
  9. Dutt

    Summing a Formula

    I'm trying to find the sum of a formula I have created in CR 8.5. I'm getting an Error message: The summary/running total field could not be created. code: sum(@formulaName) @formulaName = abs(@Def) @Def = field - field If you can help it would be greatly appreciated! Thanks
  10. Dutt

    Screen Caption????

    Hello, I'm starting the documentation part of my program at the present time and am having a little bit of trouble trying to Print screen the form. How do you Print screen JUST the form and not the whole desktop??? Thanks
  11. Dutt

    creating multiple queries in vba

    ...Set xlbk = xlApp.Workbooks.Add Set xlsht = xlbk.Worksheets(1) Set mydb = CurrentDb() MySQL = ("SELECT * FROM [Table Name]")'Enter Query Here 'Open the recordset with the mySQL Variable Set myrec = mydb.OpenRecordset(MySQL) myrec.MoveFirst...
  12. Dutt

    Export Access Query to Excel Spreadsheet

    Thanks a bunch! I didn't see it at all. Now that you point it out it makes perfect sense. I have only been programming for less then 6 months, thanks for taking the time to help!!!!!
  13. Dutt

    Export Access Query to Excel Spreadsheet

    ...Manager" 'make counter = 2 -->1st line is teh headings x = 2 'Set query in the variable MySQL MySQL = ("SELECT * FROM [Project ID Master]") MySQL = MySQL & " WHERE (([Project ID Master].[Project Start Date]) " MySQL = MySQL & &quot...
  14. Dutt

    Export Access Query to Excel Spreadsheet

    ...Manager" 'make counter = 2 -->1st line is teh headings x = 2 'Set query in the variable MySQL MySQL = ("SELECT * FROM [Project ID Master]") MySQL = MySQL & " WHERE (([Project ID Master].[Project Start Date]) " MySQL = MySQL & &quot...
  15. Dutt

    Export Access Query to Excel Spreadsheet

    Thank you very much for the help!! Everything worked out great! Dutt
  16. Dutt

    Export Access Query to Excel Spreadsheet

    ...one should I use: txtSDate.SetFocus SDate = txtSDate.Text txtEDate.SetFocus EDate = txtEDate.Text Set rstMaster = dbs.OpenRecordset("SELECT * FROM [Project ID Master]" _ & "WHERE (([Project ID Master].[Project Start Date]) AND (([Project ID Master].[Project Close Date])...
  17. Dutt

    Export Access Query to Excel Spreadsheet

    So if I only want to create the query in code and export it in code what would I have to do? Would the code look like this: 'open database Dim db As DAO.Database Dim qryRDT As QueryDef Set db = CurrentDb 'set the dates the user entered into variables txtSDate.SetFocus...
  18. Dutt

    Export Access Query to Excel Spreadsheet

    Hello All, I'm trying to export a Query from a Access 2000 database to a Excel spreadsheet. The user will enter two dates that he/she would like to the data between. EX. All data between 10-Aug-01 To 20-Aug-01. I'm not really sure how to go about doing this, I'm relatively new to VBA. Here is...
  19. Dutt

    Inserting 00 infront of field

    I figured it out, my Table had the wrong name Thanks ide Dutt
  20. Dutt

    Problem with Browse Button Control

    Thanks Aivars, Everything worked out great with the control! Thanks for the help Dutt

Part and Inventory Search

Back
Top