2007/07/22

wxPython

I use wxPython 2.8 to use GUI in Python2.5.
I write MDI application with the wxPython. I have used Python, but I used wxPython for the first time. wxPython is more useful than what I guessed.

2007/07/17

PCs' Python Upgrades from 2.4 to 2.5

Python 2.5

Python for Windows requires not environment variables but registry keys

  • [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5]
  • [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5\InstallPath]
    =c:/Python25/
  • [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5\InstallPath\InstallGroup]
    =Python 2.5
  • [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5\Modules]
  • [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.5\PythonPath]
    ="c:/Python25/Lib;c:/Python25/DLLs;c:/Python25/Lib/lib-tk

At first, I had insalled the Python 2.5 form msi. Then, I I installed py2exe and wxPython, which require Python 2.5, by installer execution files.

2007/07/14

Enterprise Architect 7J Released

I will try to use mainly two functions;

  • Statement Table, which is compatible with Statement Chart in UML
  • Native C++ Debug for Sequence Chart in UML.

2007/07/01

Boost 1.34 installatoin memo

1.33 -> 1.34

Old Boost1.33 requires -sTOOLS parameter.
But on new Boost 1.34, this parameter is replaced with --toolset.

On Boost 1.33, "-sTOOLS=msvc" means only VC6. if you want to build with VC7.1(.NET 2003), you have to set "-sTOOLS=VC-7_1".
But now, "--toolset=msvc" means latest available VC of 6, 7.1, 8.0.
For example, if "bjam --toolset=msvc" runs on a PC installed both VC7.1 and 8.0, the bjam build Boost with the VC8.0. If you want forcely to use VC7.1 on the PC, you should set specified version explicitly, so "bjam --toolset=msvc-7_1".

VC(newest)
--toolset=msvc
VC7.1
--toolset=msvc-7_1
VC8
--toolset=msvc-8_0

How to set parameters to debugging program on Visual Studio 2019 with CMake

Solution: MSDN Sometimes the "Debug and Launch Settings for CMake" bottun is disabled. In this case, change to the target view. ...