Results 1 to 21 of 21

Thread: Window>Docu 1,docu 2,docu 3 Ect Ect

  1. #1

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Smile Window>Docu 1,docu 2,docu 3 Ect Ect

    Hello all: included a small code for you to look at :

    VB Code:
    1. Private Sub tbToolBar_ButtonClick(ByVal Button As MSComCtlLib.Button)
    2.     On Error Resume Next
    3.     Select Case Button.Key
    4.         Case "New"
    5.             LoadNewDoc
    6.         Case "Open"
    7.             mnuFileOpen_Click
    8.         Case "Save"
    9.             mnuFileSave_Click
    10.         Case "Print"
    11.             mnuFilePrint_Click
    12.         Case "Cut"
    13.             mnuEditCut_Click
    14.         Case "Copy"
    15.             mnuEditCopy_Click
    16.         Case "Paste"
    17.             mnuEditPaste_Click
    18.         Case "Bold"
    19.             ActiveForm.rtfText.SelBold = Not ActiveForm.rtfText.SelBold
    20.             Button.Value = IIf(ActiveForm.rtfText.SelBold, tbrPressed, tbrUnpressed)
    21.         Case "Italic"
    22.             ActiveForm.rtfText.SelItalic = Not ActiveForm.rtfText.SelItalic
    23.             Button.Value = IIf(ActiveForm.rtfText.SelItalic, tbrPressed, tbrUnpressed)
    24.         Case "Underline"
    25.             ActiveForm.rtfText.SelUnderline = Not ActiveForm.rtfText.SelUnderline
    26.             Button.Value = IIf(ActiveForm.rtfText.SelUnderline, tbrPressed, tbrUnpressed)
    27.         Case "Align Left"
    28.             ActiveForm.rtfText.SelAlignment = rtfLeft
    29.         Case "Center"
    30.             ActiveForm.rtfText.SelAlignment = rtfCenter
    31.         Case "Align Right"
    32.             ActiveForm.rtfText.SelAlignment = rtfRight
    33.         Case "Back"
    34.             'another todo,add the screen back code
    35.         Case "Forward"
    36.             'ToDo: Add 'Forward' button code.
    37. 'So i want this button to move 1 Forward like from Document 1 towards document 2(without opening a new instance Just to goto the next one)
    38.             MsgBox "Add 'Forward' button code."
    39.     End Select

    Okay what i want the forward and back code to do is move to the next instance of frmbrowser(like when you click on Windows> frmbrowser1 and then plus one)I hope you understand,Help me please :-(
    Last edited by Neo-dark; Jan 24th, 2005 at 03:57 PM. Reason: Wrong subject
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Sounds like your trying to create your own MDI 'type' web app?
    How are you keeping track of the instances?
    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
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Talking Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Uhm..okay i just used the wizzard in VB 6.0 enterprise and made a MDI project with IE form,deleted frmdocument and made it all point at Frmbrowser i included the source so you can see what i want to do..

    (thanks for responding)
    Attached Files Attached Files
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Ok, probably change the LoadNewDoc procedure so the frmD is public to the
    app by declaring it Public in Module1 Declarations section. Then you can use
    the .Tag propert of the form to keep track of the instance number. Then in
    the next and back nuttons you would just need to show or hide to desired
    tag form number desired.

    HTH
    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

  5. #5

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    And i would do that like this ?

    VB Code:
    1. Show frmd.Tag - 1
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    You can iterate through the Forms collection that you are creating and
    check the tag property. Then when you get the one you need do a
    frmD.Show

    VB Code:
    1. For Each frm In Forms
    2.     If frm.Tag = 3 Then
    3.         frm.Show
    4.     End If
    5. Next
    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

  7. #7

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    I dont understand :-( okay i put this in the module :

    Public frmD As frmBrowser


    Then added your code like this:
    VB Code:
    1. Case "Back"
    2.         For Each frmD In frmBrowser
    3.     If frmD.Tag = 2 Then
    4.         frmD.Show
    5.     End If
    6. Next

    Im a n00b :'(
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

  8. #8
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    you have to search thru Forms, and use frm to check each one. then you check the tag of the frm, like RobDog did.

    just paste his code

  9. #9

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Okay...now..in english ?..i really dont understand,..:-( have a sample prog/code for me ? thats easier then robs..coz rob just rocks
    Last edited by Neo-dark; Jan 24th, 2005 at 05:53 PM. Reason: typo
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Place this code as your Module1 and remove the "Static lDocumentCount As Long" from your LoadNewDoc procedure.
    VB Code:
    1. Public fMainForm As frmMain
    2. Public frmD As frmBrowser
    3. Public lDocumentCount As Long
    4.  
    5. Sub Main()
    6.     Set fMainForm = New frmMain
    7.     fMainForm.Show
    8. End Sub
    Then we need something to keep track of the history so we can go back and fourth through it.
    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

  11. #11

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Okay..done that..pretty much looking it over at first to undersatdn..if i am correct i need to add this to the 'back' ?

    VB Code:
    1. Case "Back"
    2.              For Each frmD In Forms
    3.     If frmD.Tag = 3 Then
    4.         frmD.Show

    Or else? im sorry if i am asking to much guys..its just for a girl i know
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    It would be something like this but I think there is a better way.
    VB Code:
    1. 'Declare mlCurrentindex in the forms General declarations section.
    2.  
    3. Case "Back"
    4.             mlCurrentindex = IIf(mlCurrentindex = 0, 0, mlCurrentindex - 1)
    5.             For Each frm In Forms
    6.                 If frm.Tag = mlCurrentindex Then
    7.                     frm.Show
    8.                     Exit For
    9.                 End If
    10.             Next
    11.         Case "Forward"
    12.             mlCurrentindex = IIf(mlCurrentindex = lDocumentCount, lDocumentCount, lDocumentCount + 1)
    13.             For Each frm In Forms
    14.                 If frm.Tag = mlCurrentindex Then
    15.                     frm.Show
    16.                     Exit For
    17.                 End If
    18.             Next
    19.     End Select
    20.  
    21. 'And this would be you Loadnewdoc procedure.
    22. Private Sub LoadNewDoc()
    23.     lDocumentCount = lDocumentCount + 1
    24.     Set frmD = New frmBrowser
    25.     frmD.Tag = lDocumentCount
    26.     frmD.Caption = "Document " & lDocumentCount
    27.     frmD.brwWebBrowser.GoHome
    28.     mlCurrentindex = mlCurrentindex + 1
    29.     frmD.Show
    30. End Sub
    On second thought I think there is a way to call the menu Window click event
    to simulate the user clicking Window 1 or 2 or whatever the order would be. I
    need to go to a meeting righ now. so I wil be back in a few hrs.

    HTH
    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

  13. #13

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Hey sorry for the late response,it didnt work ! :'( well it doesnt give any errors at all,but it does nothing like switching windows :-( have i made an impossible question ? included the new version of happy browser,to maybe see what i did wrong ?
    Attached Files Attached Files
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Hey Neo, I'm back. I just wanted to let you know that I am looking into a
    method to switch windows easier. I remember there is something with the
    Window menu that we can do. I'll be back with a post in a while.
    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

  15. #15

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Ah okay cool,i think allot of people could use this sorta code at the moment =P i gave you some 'rating'on there too i hope you'll get it to work and to hear from you soon,im trying to find it out myself but i aint good in looking(lol)

    Hope to hear from you soon-Neo
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    I found a link on MDI forms that I think you may like.

    Also, there is a short cut key sequence that you can send to navigate
    between the windows, but I cant remember what it is. Maybe someone else
    remembers it? That would be allot easier then writting your own procedure to
    navigate between instances.

    HTH
    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

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Doh! Remembered it. Send the keys Alt + W + (the index number of the Windowed menu list to display).
    Ex.

    VB Code:
    1. SendKeys "{%W2}", True
    Will send Alt + W + 2 to change to the second child form.

    You can use SendMessage which is more reliable, but for demo I just showed SendKeys.

    HTH
    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

  18. #18

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    so its just:

    VB Code:
    1. case "back"
    2. SendKeys "{%W2}", True
    Gawd im so confused :-( Coz it didnt work :'(
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Sorry for the confusion, but if you look at the Window menu you will see that
    it contains a list of the open child windows. There are shortcuts visible with
    the underlining of the index numbers usually by pressing the Alt key. Then if
    you press the desired window number it will bring that window as the active
    child window.

    HTH
    Attached Images Attached Images  
    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

  20. #20

    Thread Starter
    Lively Member Neo-dark's Avatar
    Join Date
    Oct 2004
    Location
    The neather world
    Posts
    114

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    Yes i understood that,but the code doesnt work :-( im tried sendkeys and sendmessage,but none worked

    VB Code:
    1. Case "Back"
    2.            SendKeys "{%W2}", True
    3.         Case "Forward"

    what should i change...?
    i got kicked out of barnes and noble once for moving all the bibles into the fiction section"--FD

    Of course I'm a real doctor! I'll draw up my own diploma some time to prove it!-Dr Dis

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

    Re: Window>Docu 1,docu 2,docu 3 Ect Ect

    You need to send the number of the window that you want to become active.
    You must also have that window number already loaded too.

    VB Code:
    1. Case "Back"
    2.     SendKeys "{%W2}", True 'Activate the second child window
    3.     'Or
    4.     'SendKeys "{%W1}", True 'Activate the first child window
    5. Case "Forward"
    The only drawback for SendKeys is that the window must be the one with the current focus (active).

    HTH
    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