Results 1 to 29 of 29

Thread: [RESOLVED] movie playing with MMcontrol

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Resolved [RESOLVED] movie playing with MMcontrol

    hey guys I am makign a media player but how do I get it so that a movie would play on the same form as the buttons are. AS I use MMcontrol hen I play a movie it opens it own window, can I make a picture box and put the movie in that? Thanks!

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

    Re: movie playing with MMcontrol

    Which player are you using? Media Player or Multimedia control?
    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
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    Multimedia Control.

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

    Re: movie playing with MMcontrol

    Ok then you must be shelling the file being played? Can you show some code?
    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
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: movie playing with MMcontrol

    Just a hunch but are you specifying the UsesWindows property in the open command or setting that property?
    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

  6. #6

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    lol I have no idea, I got this code from another website...

    VB Code:
    1. Option Explicit
    2. Private path As String
    3. Private fname As String
    4. Private i As Long
    5. '''Code for shutting down stuff
    6.  
    7. '' Code for opening webpages ''
    8. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _
    9. ByVal hwnd As Long, _
    10. ByVal lpOperation As String, _
    11. ByVal lpFile As String, _
    12. ByVal lpParameters As String, _
    13. ByVal lpDirectory As String, _
    14. ByVal nShowCmd As Long) As Long
    15. Public Sub UnloadAllForms(AForm As Form)
    16.     'This code shuts down all forms and prevents multiple instances
    17.     ' if any other programs are made, make sure they include this code.
    18.     Dim frm As Form
    19.    
    20.     For Each frm In Forms
    21.         If frm.Name <> AForm.Name Then
    22.             Unload frm
    23.             Set frm = Nothing
    24.         End If
    25.     Next
    26.    
    27.     Unload AForm
    28.     Set AForm = Nothing
    29.  
    30. End Sub
    31.  
    32.  
    33. Function GetFileLocation() As String
    34.    
    35.     With CommonDialog
    36.     .ShowOpen
    37.     GetFileLocation = .FileName
    38.     End With
    39.  
    40. End Function
    41.  
    42. Private Sub MMControl1_Done(NotifyCode As Integer)
    43. MMControl1.FileName = ""
    44. MMControl1.Command = "Close"
    45. MMControl1.Command = "Stop"
    46. End Sub
    47.  
    48. Private Sub Form_Load()
    49. Dim file_name As String
    50.  
    51.     file_name = App.path
    52.     If Right$(file_name, 1) <> "\" Then file_name = file_name & "\"
    53.    ' txtFilename.Text = file_name & "Gears.avi"
    54.  
    55.     ' Prepare the MCI control for AVI video.
    56.     MMControl1.Notify = False
    57.     MMControl1.Wait = True
    58.     MMControl1.Shareable = False
    59.     MMControl1.DeviceType = "AVIVideo"
    60. End Sub
    61.  
    62.  
    63. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
    64. UnloadAllForms Me
    65. End Sub
    66.  
    67. Private Sub Timer1_Timer()
    68. Slider1 = MMControl1.Position
    69. End Sub
    70. Private Sub Image1_Click()
    71.  
    72. txtFilename.Text = GetFileLocation
    73. Slider1.Max = MMControl1.Length
    74.  
    75.  
    76.  
    77.     ' Set the file name.
    78.     path = txtFilename.Text
    79.     MMControl1.FileName = txtFilename.Text
    80.  
    81.     ' Open the MCI device.
    82.     MMControl1.Wait = True
    83.     MMControl1.Command = "Open"
    84.  
    85.     ' Play the video.
    86.     MMControl1.Wait = True
    87.     MMControl1.Command = "Play"
    88.  
    89.     ' Close the device.
    90.     MMControl1.Command = "Close"
    91.    
    92. MMControl1.FileName = path
    93. MMControl1.Command = "Open"
    94. MMControl1.Command = "Play"
    95.  
    96. i = InStrRev(Me.MMControl1.FileName, "\")
    97. fname = Mid(Me.MMControl1.FileName, i + 1)
    98. Me.List1.AddItem fname
    99.    
    100. End Sub
    101.  
    102. Private Sub Image4_Click()
    103. MMControl1.Command = "stop"
    104. End Sub
    105.  
    106. Private Sub mnuAbout_Click()
    107. MsgBox "MHX Mega Media Player by Microhardxce Enterprises."
    108. End Sub
    109.  
    110. Private Sub mnuExit_Click()
    111. UnloadAllForms Me
    112. End Sub
    113.  
    114. Private Sub mnuMore_Click()
    115. ShellExecute Me.hwnd, "open", "http://www.geocities.com/nitrogenocide2003/MHXDownloads2.html", vbNullString, vbNullString, ByVal 1&
    116. End Sub

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

    Re: movie playing with MMcontrol

    Set the UsesWindows =False in your code and see if it helps. Its dependant upon the file type being desired played.
    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

  8. #8

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    Ok, where abouts in my code would I set that,

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

    Re: movie playing with MMcontrol

    [colornavy]In your form_load event.[/color]
    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

  10. #10

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    Ok i added it, but I get the error variable not defined??

  11. #11
    Member BytePtr's Avatar
    Join Date
    Apr 2007
    Location
    EE
    Posts
    44

    Re: movie playing with MMcontrol

    Use this instead of UsesWindows.

    Code:
    MMControl1.hWndDisplay = hWnd
    But MMControl is buggy or just bad. Coz whole form just hangs when playing AVI. It will response again after AVI playing is finished.

  12. #12

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    What else could I use?

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

    Re: movie playing with MMcontrol

    You could use the Windows MediaPlayer control.
    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

  14. #14

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    ok I added the compoenent, but how do I get the buttons and commands to work?

  15. #15
    Member BytePtr's Avatar
    Join Date
    Apr 2007
    Location
    EE
    Posts
    44

    Re: movie playing with MMcontrol

    Check attachement for simple example i coded for you.
    You can change the
    Code:
    wmp.URL = "C:\WINDOWS\CLOCK.AVI"
    to something else of course.
    Attached Files Attached Files

  16. #16

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: movie playing with MMcontrol

    thank you very much!!

    Edit, am I allowed to make this part of a program to be available for download? Will microsoft be mad?

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

    Re: [RESOLVED] movie playing with MMcontrol

    No, as the user will need to have Media Player installed.
    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
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    So in order for this to work, other people will already need to hav windows media player???

    lol

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

    Re: [RESOLVED] movie playing with MMcontrol

    Yes, that a normal fact as you have to signup and register for distribution of their copyrighted program.
    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
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    what other things of theirs would I have to sing up and register for to distribute programs I made in VB?

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

    Re: [RESOLVED] movie playing with MMcontrol

    Its not just sign up and your in type of thing. You have to be approved and sign a contract etc. Your better off just prompting the user to download from MS and provide the link upon detection that they dont have WMP installed.
    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

  22. #22

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    So I am allowed to distribute the media player I am making, but as long as I tell them to download windows media player too?

    Oh crap, I have made other programs in VB and distributed them, did I have to make a contract for that?

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

    Re: [RESOLVED] movie playing with MMcontrol

    No, you can distribute the control but it will not work without the WMP neing installed as the users system needs the dependancy files and rest of the program to make WMP player work like you see it in your app.

    Think of it as with the rest of your program. You need to distribute a vb control in your app but it wont work if you dont also distribute the msvbsm60.dll runtime file. It is just that MS allows the distribution of the vb runtimes as its not an actual complete program but a dependancy file. The WMP is a complete standalone program that you are using a small feature of. Basically automating the WMP program within your app.
    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

  24. #24

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    Aww I understand now, thanks for clearing that up.

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

    Re: [RESOLVED] movie playing with MMcontrol

    Whatever other programs you have written will not have the same requirements. Its the same legality as if you were using an Access database in your app. Its legal to redistribute the database file you have created and MDAC engine is redistributable so you can access the database via your app without ever showing or displaying the actual GUI of Access because there are alot more files and dependancies that would be needed to run the full Access program. Access the program is NOT redistributable. Each end user needs to have a purchased licensed copy of it in order to view and display any of its GUI and have it work via is GUI front end.

    There is an exception to this for Access but I wont confuse you with 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

  26. #26

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    Ok so dependencies are alright to include, but you can't redistribute entire programs, makes sense lol.

  27. #27

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: [RESOLVED] movie playing with MMcontrol

    Out of curiosity, is there a media control that does not need the user to have wmp installed prior to using the app I make?

  28. #28
    Hyperactive Member
    Join Date
    Dec 2007
    Location
    Canada
    Posts
    297

    Re: [RESOLVED] movie playing with MMcontrol

    Quote Originally Posted by Justin M
    Out of curiosity, is there a media control that does not need the user to have wmp installed prior to using the app I make?
    Dude, ither way you look at it.. Your devloping "software" for Windows, and almost all Windows machines have WMP, maybe not the latest but still WMP. Work with what you have. If not, Google it.

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

    Re: [RESOLVED] movie playing with MMcontrol

    But not all machines will have it installed on their Windows. But you can redistribute the setup packages with acceptance of your license application.

    http://msdn2.microsoft.com/en-us/lib...11(VS.85).aspx
    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