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: *

  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 ?
  16. JasonSummers

    User Controls, Accessing SubControls from a Windows Form

    Using Microsoft Visual C#.net Express Edition Version 8.050727.42 Using .NET Framework 2.0.50727 I have been studying C#.net for only a few months now. Please forgive me if I am not using correct vocabulary to describe the problem I am having. Completed Tasks - Design a User Control...
  17. JasonSummers

    Datagrid Headers - Excel

    jebenson, I'm using an OleDbDataAdapter that fills a dataset using an OleDbConnection to excel. The data adapter selects all * from the first sheet in the excel workbook. I may be going about this the wrong way. I intended to develop a form that could read from a spreadsheet or csv file...
  18. JasonSummers

    Datagrid Headers - Excel

    I have a vb.net form that imports data from an excel spreadsheet into a datagrid control. Is it possible to extract the column header names from the datagrid itself, of do I need to figure out how to grab the headers (from excel) during the excel import? Thanks, Jason
  19. JasonSummers

    ListView (All Items)

    How do I read all items in my ListView ??? I have a ListView control that I can drag and drop items into. I would like to read all contained (not only selected) items (no need for subitems) in this ListView into an array or another table. The goal being to use the items from the ListView to...
  20. JasonSummers

    "show all" Combo Box

    Thanks for the input...I look forward to trying both ideas. I have been out of the office and have not had time to implement them. Just wanted to say thanks...JAson

Part and Inventory Search

Back
Top