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 SkipVought 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. matt23lucier

    exporting to excel: how to group rows?

    Try something like this. worksheet.Rows.get_Range("Your row range").Group(Type.Missing, Type.Missing , Type.Missing, Type.Missing);
  2. matt23lucier

    Calling Application from Email Link

    I have a windows application that sends out an email to a person when it reaches the necessarry point. Inside the email there is a link to the application, when the user clicks this the application opens. My problem is I need to be able to send this application an argument on startup so when...
  3. matt23lucier

    Tab Control Question

    Thank you, I have figured this out.
  4. matt23lucier

    Tab Control Question

    I have a tab control on a form with 4 tab pages. Each tab page corresponds to a Record Type (ex: Mixed, Recall, Deviation, etc). Also on the form (but not on the tab control) I have a comboBox with all the available record types. When the user selects a record type from the comboBox the...
  5. matt23lucier

    Printing different file formats

    As of right now I just load up the default application for the file type and send it a print command. This works alrite but it is a little slow when printing a pdf file.
  6. matt23lucier

    Error trying to use Visio Drawing Control

    I think I may have figured out why this is happening. When I installed Visio 2003 (months ago) I never bothered to register it. For a while I was able to use this drawing control on other applications with no issues. After a certain amount of time or amount of times used visio will disable...
  7. matt23lucier

    Error trying to use Visio Drawing Control

    Yes the proper refernces are created and the Dll's can be found. Thanks Matt
  8. matt23lucier

    Error trying to use Visio Drawing Control

    I am trying to use the Visio Drawing Control in a vb.net windows application but keep getting an error everytime I try to drag the control onto my form. I am using VS2003 and I have Visio 2003 installed on my machine. I have added the control 'Microsoft Visio 11.0 Drawing Control' to my...
  9. matt23lucier

    Finding Min/Max days between dates - Need help

    I apologize but I was reading results from a few days ago when I my SQL statement was incorrect. The SQL statement is working now. I thank everyone for their help and once again apologize for the trouble. Matt
  10. matt23lucier

    Finding Min/Max days between dates - Need help

    They are defined as date/time fields within the access table.
  11. matt23lucier

    Finding Min/Max days between dates - Need help

    Here I will try and explain this again. This information is in an access database. If I have a table in my database called 'records'. The table has the following information in it: Item OpenDate CloseDate 1000 01/01/07 01/11/07 1000 05/05/07 05/10/07 1000 10/10/07 10/10/07 Now I am...
  12. matt23lucier

    Finding Min/Max days between dates - Need help

    I am trying to find the MIN and MAX number of days between an open and closing date. Everything seems to work OK except when the MIN or MAX difference between dates is 0. Here is an example: Item OpenDate CloseDate 1000 01/01/07 01/11/07 1000 05/05/07 05/10/07 1000 10/10/07 10/10/07...
  13. matt23lucier

    Printing different file formats

    I've tried this and it seems to work for text files but not for other file formats.
  14. matt23lucier

    Printing different file formats

    it will be through a windows application
  15. matt23lucier

    Printing different file formats

    I am wondering if there is a way to print out any file regardless of the format. I really only need it to work with a few formats (pdf, tif, jpg). Thanks Matt
  16. matt23lucier

    Impersonation Help

    I just read about impersonation and I thought that it could help me solve a problem I am having. I have an application that needs get and display the file names that are under a folder on our network. The problem is most users who are running the application do not have access to the folder...
  17. matt23lucier

    Screen Scrape Almost there need help!

    I am having the exact same problem as you. I have searched all over the net and could not find anything to resolve this issue. If you find a solution could you please post it here and I will do the same. Thanks Matt
  18. matt23lucier

    Excel Automation - Help Grouping Rows

    AlexCuse I appreciate your help in this matter. Matt
  19. matt23lucier

    Excel Automation - Help Grouping Rows

    Thanks for you help. I managed to figure it out for anyone who is interested. The following code will group the rows A4-A6 so they can be expanded anytime. Also this code will initially have the rows hidden. Excel.Range rang = worksheet.Columns.get_Range("A4", "A6")...
  20. matt23lucier

    Excel Automation - Help Grouping Rows

    I am creating an application that gathers information from several databases and then creates an excel report with this information. The problem is that there are thousands of rows and I do not want them all to be visible at first. I know how to create the excel report through c# but I am not...

Part and Inventory Search

Back
Top