Results 1 to 4 of 4

Thread: Problems with doc.printout() and zedgraph

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2006
    Posts
    9

    Question Problems with doc.printout() and zedgraph

    hello , I'm the classmate off "Gleba"

    I use alsa microsoft visual basic express edition (2005)

    I also use zedgraph

    my problem is that :

    I print my graph out with microsoft word (in word you must create booklet indicators to link them)

    this is my code:

    Code:
    Code:
          Dim wordapp As New Word.Application
    
    
                    doc = wordapp.Documents.Add("C:\Documents and Settings\Proximedia\Bureaublad\horizontale en schuine worp\Oefening op een horizontale worp.doc")
                    doc.Bookmarks.Item("beginv").Range.Text = v
                    doc.Bookmarks.Item("hoogte").Range.Text = txthoogte.Text
                    doc.Bookmarks.Item("tottijd").Range.Text = txttott.Text
                    doc.Bookmarks.Item("totafstand").Range.Text = txttotafst.Text
                    doc.Bookmarks.Item("tekeninggrafiek").Range.Text = zg1.Created                  
                    doc.WebPagePreview()
    
                    CType(doc, Word.Document).Close(False)
                    CType(wordapp, Word.Application).Quit()

    Can someone say to me what I must change on the code with zg1.created ?




  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Problems with doc.printout() and zedgraph

    If you can save zg1.Created to a file you would then be able to use doc.Bookmarks.Item("tekeninggrafiek").Range.InsertFile(FileName, Range, ConfirmConversions, Link, Attachment)

    The .Text property of the Range object is expecting a text value not an image or some other type of object.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    New Member
    Join Date
    Nov 2006
    Posts
    9

    Re: Problems with doc.printout() and zedgraph

    but there are so many ways to get that
    can you explain how ?

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Problems with doc.printout() and zedgraph

    I am not familiar with "zg1" so I have no idea what and how its used.
    If you can save your chart to an image file then its easy to insert into a bookmark.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

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



Click Here to Expand Forum to Full Width