Search results for query: *

  1. M

    Formatting Word bookmark text

    Range is, unforunately, 'not a menber of Range' :apologetic: BUT, kicking your VBtin can down the road I came upon a working solution, so many thanks for the responses. Dim oWord As Word.Application oWord = CreateObject("Word.Application") oWord.Visible = True oDoc =...
  2. M

    Formatting Word bookmark text

    Yes, my typo (that was one of my thrashng about attempts....:apologetic:) Dim oWord As Word.Application oWord = CreateObject("Word.Application") oWord.Visible = True oDoc = oWord.Documents.Open("C:\WelfareForm.doc") Dim oDoc As Word.Document Dim wdrng As Word.Range wdrng =...
  3. M

    Formatting Word bookmark text

    Fresh from the help on the IDE forum, and having extensively Googled, I am now stuck on trying to format text written to a Word bookmark. I have successfully done this in Excel and tried replicating the code with no success. The code runs ok with no errors but does not produce the required text...
  4. M

    Question 'FtpClient' is not defined

    Many thanks - alles klar
  5. M

    Question 'FtpClient' is not defined

    Ineeds, Sir, as per previous post. Nowell past the problem with System.Net.FtpClient thnaks to Ian. Still ike to know the significance of the light and dark fonts. Imports System.Net Imports System.Net.FtpClient - both in 'dark' font Imports System - in 'light' font
  6. M

    Question 'FtpClient' is not defined

    Seems to have cleared the debug issuem Ian, thanks, and I now have a server directory listing!! - but I am still a little in the dark! I had referenced system.net at the outset, but installing the System.Net.FtpClient 1.0.5281.14359 has certainly removed the problem HOWEVER I now have both...
  7. M

    Question 'FtpClient' is not defined

    I am trying to convert from VBA to VB.net. I thought I had already posted this but cannot find it. I have a routine in VBA which parses an HTML form, through Excel to a word doc. I need to access FTP in vb.net. I have gleaned that I need to import system.net Working Win7, Visual Studio...
Back
Top