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!

Recent content by JasonSummers

  1. JasonSummers

    C# Word Interop

    Hello, I am trying to programatically add an Image to a word document. I have managed to do that with the COde below. However, I need to insert it into a table that is in the document header. I can insert it into a table in the main body, but cant figure out how to set the range to a cell...
  2. JasonSummers

    Find Values in a Recordet

    I have the following code in a form to create a recordset. Dim rst As ADODB.Recordset, MyVal As Currency Set rst = New ADODB.Recordset rst.Open "SELECT TableName, MAX(UpdateDate) from stblTableUpdateLog GROUP BY TableName", CurrentProject.Connection I have a table called...
  3. JasonSummers

    Find and replace, text parser on multiple files

    Hello, I need to create an application that can perform a simple "find and replace" across multiple text files. The text files are large and numerous. >300 files totaling > 100 mb. Does anyone know of any examples that have been published or familiar with an easy way to do this? Thank you, JG
  4. JasonSummers

    tableadapter query parameters

    jmeckly, Thank you for the microsoft link, it was a provided most of the information I was looking for. Your reply was greatly appreciated. JAson
  5. JasonSummers

    tableadapter query parameters

    I have a Listview control on my form that is filled with data from a table (Main_Table). Right clicking a row on the listview opens up a form (my edit data form))with data fields (connected to a dataset ) for editing. I pass the 'Task Number' (the record number or item number) value to this...
  6. JasonSummers

    Page border missing sides

    dhookom, Thanks for the input. I tried enlarging the line size initially without success. I also tried offsetting the draw, left, right, up, down. Since it prints fine when I print to adobe, I'm thinking that it is drawing the lines correctly, but the print view in access may have a...
  7. JasonSummers

    Page border missing sides

    I have used the following code for my access 2000 report to generate a report (page) border. Private Sub Report_Page() Me.Line (0, 0)-(Me.ScaleWidth, Me.ScaleHeight), , B End Sub However, the right side border (and sometimes the top or bottom) does not show. It does not print on another page...
  8. JasonSummers

    Access to reports in c#.net express edition

    Using C#.NET Express Edition SQL Server Business Intelligence Server I have created a set of reports in SQL Server Business Intelligence Server Studio using the reporting services. All of the examples and instructions I come across are how to integrate reports into your ASP.NET application. I...
  9. JasonSummers

    How peculiar…word DDE, cache, mouse wheel

    Unfourtunatly, our company has blocked all methods of disablinfg it's McAfee software. Any other ideas ?
  10. JasonSummers

    Strange problem. Word, DDE, Cache...?

    I understand that this might not be the right thread... Microsoft XP Professional Version 2002 SP2 Microsoft Word 2003 11.6.. SP2 This one has me stumped. I have an application that opens up a DDE connection with Microsoft word that populates database information in the header of a word form...
  11. JasonSummers

    How peculiar…word DDE, cache, mouse wheel

    First, thank you for taking the time to reply to my post. I have not disabled the AntiVirus, my company would not be happy. The tmp files normally do not clear. This is another problem I am having. Thanks Jay
  12. JasonSummers

    How strange...word cache

    Microsoft XP Professional Version 2002 SP2 Microsoft Word 2003 11.6.. SP2 This one has me stumped. I have an application that opens up a DDE connection with Microsoft word that populates database information in the header of a word form at the appropriate bookmarks. This has worked fine on all...
  13. JasonSummers

    How peculiar…word DDE, cache, mouse wheel

    Microsoft XP Professional Version 2002 SP2 Microsoft Word 2003 11.6.. SP2 This one has me stumped. I have an application that opens up a DDE connection with Microsoft word that populates database information in the header of a word form at the appropriate bookmarks. This has worked fine on all...
  14. JasonSummers

    What is the e. !!!!

    Thank you Tipgiver and chiph. The responses helped clear up things a little better that Microsofts explanations. Thanks, Jason
  15. JasonSummers

    What is the e. !!!!

    I have been programming simple C# application for a short time. I still do not understand the eventArgs e parameter, as in 'Form1_Paint(object sender, PaintEventArgs e)' Will somebody please explain this to me ?

Part and Inventory Search

Back
Top