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 dencom 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 mnolting

  1. mnolting

    Browse Network For Files and Return File Name VISUAL BASIC 6

    Strongm Thanks ever so much for the info on Application.Filedialog. None of us can "Know it All" and I certainly don't. Now I know a little bit more. This will certainly do the job for me. Thanks again.
  2. mnolting

    Browse Network For Files and Return File Name VISUAL BASIC 6

    Frederico It looks like you have not done very much internet searching. 600,00 hits means nothing. None of the 600,000 hits I get have anything to do with what I am looking for. If you know of anything out there that simply browses a network and returns a selected path, I would greatly...
  3. mnolting

    Browse Network For Files and Return File Name VISUAL BASIC 6

    Could you point me to a good one, still searching, not finding anything. Thanks
  4. mnolting

    Browse Network For Files and Return File Name VISUAL BASIC 6

    I have been looking for code to browse a network for files but can find none. Does anybody know of any code to do this?? Thanks
  5. mnolting

    How to set attributes / add children with duplicate node names

    I need to add children and set the attribute for a node where it is the second instance in a family of nodes. But I cant seem to find a way to "SelectSingleNode" so that I can add children and set attributes. This is what I have created so far: <Markers ObjectID="22"...
  6. mnolting

    Data Grid office 2003 on Win7

    I Encounter "The subject is not trusted for the specific action" when attempting to place a data grid on a form (msdatgrd.ocx). The control is not placed. I enabled the ocx using Active x manager but the condition does not change. I verified that the setting in the registry is set correctly (0...
  7. mnolting

    Capture non selectable text in IE Web e-mail OWA

    Hugh, The application I am using is not Outlook, it is Internet Explorer at a Outlook web page. The title bar is "my name Outlook web app Microsoft" It shows a number of e-mails on the page but only one is highlighted. That is the one I need the subject line text. Mike
  8. mnolting

    Capture non selectable text in IE Web e-mail OWA

    I need to capture text in an Outlook web app IE e-mail program. The text to be captured is the highlighted e-mail (which is yellowish / orange) I need the VB application to run formless / in the background and return to the calling program the text of the highlighted e-mail. I see a lot of...
  9. mnolting

    Exit IE editor and open Word

    I have the following task for a VBA program to run after opening a word doc attachment in a Microsoft Exchange internet server. eg https://abcdef/exchange.com 1. Obtain information within the doc to determine WHERE to store it locally and the NAME for the file (Which I already wrote and works)...
  10. mnolting

    Qut IE word editor and open same Doc with MS Word.

    Heres my task: Open an e-mail attachment that is a word doc from a web -browser based exchange server (eg at www.blabla.com/exchange), run a macro that saves the doc locally, close the IE window and document, and open the same document in WORD. I open the document so that I can run a word macro...
  11. mnolting

    Query records from a csv file using ODBC

    All, MY BAD! I was looking at the wrong copy of a modified csv file. The test was to a file where the actual name of the field is "First name" not "fname". Thanks very much for the help. Mike
  12. mnolting

    Query records from a csv file using ODBC

    Skip, "fname" is a valid field name as seen in the catalog function of WinSQL and in the first line of the file. Is there a different way to specify a field? Mike
  13. mnolting

    Query records from a csv file using ODBC

    Skip, I copied and pasted the query---"Too few parameters. Expected 1" Mike
  14. mnolting

    Query records from a csv file using ODBC

    I spoke too soon, I changed the query to "Select * from people2.csv" to ... where fname='bob'" and I get an error "Too few parameters. Expected 1" Now What?? Mike
  15. mnolting

    Query records from a csv file using ODBC

    keenanbr, Your example works! Although I had to make changes: This: Public m_adoCsv As New ADODB.Connection Public m_adoRst As New ADODB.Recordset To: Dim m_adoCsv As New ADODB.Connection Dim m_adoRst As New ADODB.Recordset This: m_adoCsv.ConnectionString = "Provider=MSDASQL.1;Persist...

Part and Inventory Search

Back
Top