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

  • Users: engrfurqan
  • Content: Threads
  • Order by date
  1. engrfurqan

    Creating COM Addins in VB6 for microsoft word application

    Hi, I want to create COM addins on Vb6 for Microsoft word application. Can anybody tell how can I do that or post some link where I can find how it should be done. Actuallay I have some functions and I want to make them centralized so that word application can call them. Regards, Furqan
  2. engrfurqan

    Problem with calling dll

    I have two standard dll developed in VB and I am calling one of them in vba for word. This dll has a function which calls the other dll and returns an integer which should be passed to vba, code is bellow ///// Public Declare Function Increment Lib "D:\VBA\VB Library Files\MathLib2.dll" (var2 As...
  3. engrfurqan

    VBA formatting in use

    Is there any way to view the the "formatting in use" in word document through vba. its not same as styles Regards, Furqan
  4. engrfurqan

    Help needed in Office clipboard

    Hi, In my VBA program I am doing some copy and paste operations and if user have copied something before running the program then it wouldn't accessible through normal paste operation (ctrl+v) one has to view office clipboard to look for his desired copy. I want to avoid this by restoring the...
  5. engrfurqan

    Help needed in Styles and Formating

    I want to go through with all the formatting in use in a word document and collect some description i am using the following code but it is not working sub test() dim sty as style for each sty in activedocument.styles if sty.inuse = true the msgbox(sty.font.name) end if next end sub this...
  6. engrfurqan

    help needed to view page setup properties

    Hi, I would like to know that is there any other way to look into page setup properties using vba without opening the word document. Actually I have lorge no of files and I need to gather seetings in pagesetup for all the files I am using following code set doc = documents.open(FilePath) if...
  7. engrfurqan

    Help needed with dll file

    when we are using declare statment like bellow Private Declare Function GetTempPath Lib "abc.dll" _ Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long What would be location where vba will look for this dll file? This file is not there in...
  8. engrfurqan

    Problem with referencing a file

    I have a strange problem with file reference. I am trying to reference a word template which has some macros that I want to use. The problem is that whenever I try to reference this file the link got broken even though the file is present in the specified location but vba start to look for the...

Part and Inventory Search

Back
Top