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!

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

    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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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 ?
  11. 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...
  12. 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
  13. 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...
  14. JasonSummers

    "show all" Combo Box

    In my "print reports" form I have multiple combo boxes that are bound to a query. Combo box record sources are from tables that may not be modified. I would like to add an ALL option to each combo box. What is the best way to do this? Thanks in advance...Jason
  15. JasonSummers

    Write to PDF

    Could somebody please guide me towards the resources on writing from my access tables into an abobe pdf file? I currently have my fields populated manually.
  16. JasonSummers

    File Browser

    I need to have a user interface to locate files in a "browse files" type screen. (from a form) Similar to the screen after clicking on the "Run" command under the "Start menu" Thanks in advance, Jason USA Proud
  17. JasonSummers

    Auto number / serial number

    I am currently modifying a lotus approach database. The “Item Number” field has the following definitions FIELD NAME = pl_no DATA TYPE = Numeric SIZE = 5.0 FORMULA/OPTIONS = Auto-enter Serial, Unique … it has been set to increment by 1. This works great if you are entering data through...
  18. JasonSummers

    Select Query Problem

    I have a table (cables) with fields - CableNo, System, TOequipment_cnt, FROMequipment_cnt. My (Equipment) table has fields Equipment_cnt, equipmentID and so on. I want to populate a a report With CableNo, System, and the equipment ID (from my Equipment table) equal to the ToEquipment_cnt AND the...

Part and Inventory Search

Back
Top