+ Reply to Thread
Results 1 to 6 of 6

HELP Request: VBA Code Convert to Word 2010

Hybrid View

imshah HELP Request: VBA Code... 01-28-2013, 09:53 PM
macropod Re: HELP Request: VBA Code... 01-29-2013, 04:29 AM
imshah Re: HELP Request: VBA Code... 01-29-2013, 06:09 AM
arlu1201 Re: HELP Request: VBA Code... 01-29-2013, 04:46 AM
macropod Re: HELP Request: VBA Code... 01-30-2013, 02:58 AM
imshah Re: HELP Request: VBA Code... 01-30-2013, 04:28 AM
  1. #1
    Registered User
    Join Date
    01-22-2013
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    4

    HELP Request: VBA Code Convert to Word 2010

    Dear All,

    My colleague was using the MACRO for fetching the photos for its quality control work. The VBA code is defined to simplify their work for enhancing the maximum possible productivity in less time! (File is Attached..please open and check the code by pressing Alt+F11)

    But now as the company has upgraded to the latest version of Microsoft Office Word 2007 to Microsoft Office Word 2010. The code is not supported to the newer version or perhaps the coding framework not supporting.

    I have also uploaded my screen shots for further clarification, if in case you need other info, please do let me know. But please expedite!

    Following is the VB Code:

    Dim pic(12), pictext(12)
    Dim fotoname(1000) As String
    Dim zahler, zahler2 As Integer
    Dim strA
    Private Sub Browse_Click()
    Location.Hide
    ChangeFileOpenDirectory ("C:\")
    Set opendialog = Dialogs(wdDialogFileOpen)
    opendialog.Display
    Path.Text = CurDir
    Location.Show
    End Sub
    Private Sub Cancel_Click()
    End
    End Sub
    Private Sub OK_Click()
    If OK.Value = False Then
    Location.Hide
    zahler2 = 1
    strA = 1
    Set fs = Application.FileSearch
    With fs
    .LookIn = Location.Path.Text
    .FileName = "*.*"
    If .Execute(SortBy:=msoSortByFileName, _
    SortOrder:=msoSortOrderAscending) > 0 Then
    MsgBox "There were " & .FoundFiles.Count & _
    " file(s) found."
    zahler = .FoundFiles.Count
    Selection.PageSetup.TopMargin = InchesToPoints(0.13)
    Selection.PageSetup.BottomMargin = InchesToPoints(0.25)
    Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
    Selection.Font.Size = 14
    Selection.Font.Bold = wdToggle
    Selection.Font.Name = "Arial"
    ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=2, NumColumns:= _
    2, DefaultTableBehavior:=wdWord9TableBehavior
    
    With Selection.Tables(1)
    .AllowAutoFit = False
    End With
    
    With Selection.Tables(1)
    .Borders(wdBorderLeft).LineStyle = wdLineStyleNone
    .Borders(wdBorderRight).LineStyle = wdLineStyleNone
    .Borders(wdBorderTop).LineStyle = wdLineStyleNone
    .Borders(wdBorderBottom).LineStyle = wdLineStyleNone
    .Borders(wdBorderHorizontal).LineStyle = wdLineStyleNone
    .Borders(wdBorderVertical).LineStyle = wdLineStyleNone
    .Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
    .Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
    .Borders.Shadow = False
    End With
    Selection.Tables(1).Select
    Selection.Rows.HeightRule = wdRowHeightExactly
    Selection.Rows.Height = InchesToPoints(3.1)
    
    Selection.TypeParagraph
    For i = 1 To .FoundFiles.Count
    fotoname(i) = .FoundFiles(i)
    HelpText = Len(fotoname(i))
    HelpText = Mid(fotoname(i), HelpText - 2, 3)
    If HelpText = "JPG" Or HelpText = "jpg" Or HelpText = "bmp" Or HelpText = "tif" Then
    
    
    Selection.InlineShapes.AddPicture FileName:=fotoname(i), _
    LinkToFile:=False, SaveWithDocument:=True
    Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
    Selection.InlineShapes(1).Fill.Visible = msoFalse
    Selection.InlineShapes(1).Fill.Transparency = 0#
    Selection.InlineShapes(1).Line.Weight = 0.75
    Selection.InlineShapes(1).Line.Transparency = 0#
    Selection.InlineShapes(1).Line.Visible = msoFalse
    Selection.InlineShapes(1).LockAspectRatio = msoTrue
    Selection.InlineShapes(1).Height = 180#
    Selection.InlineShapes(1).Width = 239.75
    Selection.InlineShapes(1).PictureFormat.Brightness = 0.5
    Selection.InlineShapes(1).PictureFormat.Contrast = 0.5
    Selection.InlineShapes(1).PictureFormat.ColorType = msoPictureAutomatic
    Selection.InlineShapes(1).PictureFormat.CropLeft = 0#
    Selection.InlineShapes(1).PictureFormat.CropRight = 0#
    Selection.InlineShapes(1).PictureFormat.CropTop = 0#
    Selection.InlineShapes(1).PictureFormat.CropBottom = 0#
    Selection.MoveRight Unit:=wdCharacter, Count:=1
    Selection.MoveLeft Unit:=wdCharacter, Count:=1
    Selection.TypeParagraph
    Selection.ParagraphFormat.Alignment = wdAlignParagraphLeft
    Selection.Font.Size = 11
    Selection.Font.Bold = wdToggle
    Selection.TypeText Text:="Pict. "
    Selection.TypeText Text:="0" + strA
    Selection.HomeKey Unit:=wdLine
    Selection.TypeText Text:=vbTab & " "
    Selection.EndKey Unit:=wdLine
    strA = strA + 1
    Selection.TypeParagraph
    Selection.MoveRight Unit:=wdCell
    Selection.TypeParagraph
    
    End If
    Next i
    End If
    End With
    End If
    End Sub
    Attached Files Attached Files
    Last edited by arlu1201; 01-29-2013 at 04:47 AM.

  2. #2
    Forum Expert macropod's Avatar
    Join Date
    12-22-2011
    Location
    Canberra, Australia
    MS-Off Ver
    Word, Excel & Powerpoint 2003 & 2010
    Posts
    3,835

    Re: HELP Request: VBA Code Convert to Word 2010

    Cross-posted at: http://www.vbaexpress.com/forum/showthread.php?t=45099
    For cross-posting etiquette, please read FORUM RULE 8
    Cheers,
    Paul Edstein
    [Fmr MS MVP - Word]

  3. #3
    Registered User
    Join Date
    01-22-2013
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: HELP Request: VBA Code Convert to Word 2010

    Quote Originally Posted by macropod View Post
    Cross-posted at: http://www.vbaexpress.com/forum/showthread.php?t=45099
    For cross-posting etiquette, please read FORUM RULE 8
    So what i understand is that i don't have to violate the RULE 8 which is mentioning that similar post on other forums is not allowed.

    In compliance of your signature [moderator] I will also take care to put whenever i need to put my code for any help.

    Is it right that what i understand.

    Regards,

    /imshah
    Last edited by imshah; 01-29-2013 at 06:14 AM.

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: HELP Request: VBA Code Convert to Word 2010

    Thanks Paul.

    Imshah,

    I'm afraid your post does not comply with Rule 8 of our Forum RULES. Cross-posting is when you post the same question in other forums on the web. You'll find people are disinclined to respond to cross-posts because they may be wasting their time solving a problem that has been solved elsewhere. We prefer that you not cross-post at all, but if you do (and it's unlikely to go unnoticed), you MUST provide a link (copy the url from the address bar in your browser)to the cross-post. Expect cross-posts without a link to be closed a message will be posted by the moderator explaining why. We are here to help so help us to help you!

    Read this to understand why we ask you to do this, and then please edit your first post to include links to any and all cross-posts in any other forums (not just this site).

    Also,

    I have added code tags to your post. As per forum rule 3, you need to use them whenever you put any code in your post. Please add them in future. If you need more information on how to use them, check my signature below this post.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  5. #5
    Forum Expert macropod's Avatar
    Join Date
    12-22-2011
    Location
    Canberra, Australia
    MS-Off Ver
    Word, Excel & Powerpoint 2003 & 2010
    Posts
    3,835

    Re: HELP Request: VBA Code Convert to Word 2010

    Posts of the same questions to other forums are allowed. What is required is that you provide links to those posts.

  6. #6
    Registered User
    Join Date
    01-22-2013
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: HELP Request: VBA Code Convert to Word 2010

    Quote Originally Posted by macropod View Post
    Posts of the same questions to other forums are allowed. What is required is that you provide links to those posts.
    Ok i got it....Thanks Macropod.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1