Saturday, January 18, 2020

MFC Broher 7820N driver installation on local machine(Non-LAN)

MFC Broher 7820N driver installation on local machine(Non-LAN). download full driver package and install it on my local machine-Non LAN beside my printer.

  1. Full Driver & Software Package
  2. Full Driver & Software Package (Recommended)
  3. Rock PI compuer

Tuesday, January 7, 2020

.net framework checker

MFC quick demo

  1. MFC programming tutorial
  2. first 4 modules are good enough. it has drawing circle logic.

    quick tutorials

  3. Module 1: Microsoft Windows, Visual C++ and Microsoft Foundation Class (MFC)
  4. Module 1a: Microsoft Windows, Visual C++ and Microsoft Foundation Class (MFC)
  5. Module 2: Getting Started with Visual C++ 6.0 AppWizard 1
  6. Module 2: Getting Started with Visual C++ 6.0 AppWizard 2
  7. Module 3: Basic Event Handling, Mapping Modes, and a Scrolling View 1
  8. Module 3a: Basic Event Handling, Mapping Modes, and a Scrolling View 2
  9. Module 3b: Basic Event Handling, Mapping Modes, and a Scrolling View 3
  10. Module 4: The Graphics Device Interface (GDI), Colors, and Fonts 1
  11. Module 4: The Graphics Device Interface (GDI), Colors, and Fonts 2
  12. Module 4: The Graphics Device Interface (GDI), Colors, and Fonts 3
  13. Module 9: A Reusable Frame Window Base Class 1
  14. Module 9a: A Reusable Frame Window Base Class 2
  15. good info on include files and theory

  16. MODULE 10 THE C/C++ PREPROCESSOR DIRECTIVES 1
  17. MODULE 10 THE C/C++ PREPROCESSOR DIRECTIVES 2: #define etc.
  18. another quick tutorial

  19. MFC Tutorial
  20. MFC - Dialog Boxes: Beginning point
  21. MFC - Messages & Events:End point
  22. above two links are in one tutorial. it has clear descriptions on how to create MFC application by creating a Win32 project.

  23. MFC - GDI
  24. MFC - File System
  25. MFC - Standard I/O
  26. MFC - Document View
  27. MFC - Strings

Saturday, January 4, 2020

passing object into C++ function

good C++ video series

compiled list from Youtube of good C++ video series:

    class vs object related quick shots

  1. Class and Object
  2. Constructor Destructor in C++
  3. C++ Tutorial for Beginners - Full Course: by minutes
  4. class vs object related quick shots:by Extern CodeExtern Code

  5. C++ Tutorial from Basic to Advance: separated by minutes in one class
  6. good C++ video series from Cherno

  7. Using Libraries in C++ (Static Linking)
  8. Using Dynamic Libraries in C++
  9. How to Setup C++ on Windows
  10. Setup VS Code For C/C++ Development on Windows
  11. Welcome to C++
  12. above is good series of tutorials. worth watching,

    good video from NewBostons

  13. Buckys C++ Programming Tutorials - 30 - Function Overloading
  14. Buckys C++ Programming Tutorials - 1 - Installing CodeBlocks
  15. Buckys C++ Programming Tutorials - 58 - function Templates
  16. C++ Programming Tutorials Playlist:73 series
  17. above is good series of tutorials. worth watching,

    another series

  18. C++ Void Functions by profgustin
  19. C++ - Value-Returning Functions by profgustin
  20. another series

  21. C++ Part 51 - Void Functions Introduction by ICT Tutorial Channel
  22. C++ Part 52 - Reference Parameters
  23. C++ Part 81 - Class Constructors
  24. C++ Part 82 - Class Accessors
  25. C++ Part 01 - What You Need to Program: complete playlist from ICT Tutorial Channel
  26. one long lesson in 10 hours

  27. C++ Programming All-in-One Tutorial Series (10 HOURS!)
  28. C++ Tutorials: complete play list from Caleb Curry
  29. a complete list

  30. C++ Programming | In One Video by Mike Dane:: by minutes
  31. bad training: not so good training

  32. C Programming Tutorial - 48: Functions (Part-4) Call By Value Method

Wednesday, January 1, 2020

Resolving issues( .ipch , .db , .suo files) in uploading VS projects (VC++) to SVN repository.

to resolve issues in uploading VS projects (VC++) to SVN respository. there are some .ipch , .db , .suo files are very big and don't need to upload to SVN repository.

  1. How to avoid precompiled headers
  2. You can always disable the use of pre-compiled headers in the project settings.

    Instructions for VS 2010 (should be similar for other versions of VS):
    1. Select your project, use the "Project -> Properties" menu
    2. go to the "Configuration Properties -> C/C++ -> Precompiled Headers" section,
    3. then change the "Precompiled Header" setting to "Not Using Precompiled Headers" option.
  3. Visual Studio: Disable Precompiled Headers
    1. Open your project, then select “Project” > “appname Properties…“.
    2. Expand “Configuration Properties” > “C/C++” > “Precompiled Headers“.
    3. Set “Precompiled Header” to “Not Using Precompiled Headers“.
  4. What are these .pch and .ncb files in visual studio?
  5. PCH is the precompiled headers file. It's a temporary that you can safely delete. You can disable its creation through Project Settings > C++ > Precompiled Headers > Don't use precompiled headers and removing the stdafx.cpp file from your project.

    NCB is the database used by IntelliSense to allow you to browse the symbols defined in your project, including the inline hints and auto completion as you type. You can safely delete it. There is an option to disable IntelliSense too.

    However, both features may be useful; therefore you may not want to disable them. If you worry about the size of the backups or sending the projects to some other programmer, then you can just clean the project by removing said files.

  6. How to prevent or remove Visual Studio ipch/pch folders from the project
  7. not useful.