Posts Tagged ‘Cpp’
Just testing code
ImageFix::ImageFix()
{
GdiplusStartupInput input;
GdiplusStartup(&m_token, &input, NULL);
// Comment
UINT size;
UINT numEncoders;
GetImageEncodersSize(&numEncoders, &size);
ImageCodecInfo *encoders = (ImageCodecInfo *)malloc(size);
GetImageEncoders(numEncoders, size, encoders);
for (UINT i = 0; i < numEncoders; i++)
{
ImageCodecInfo encoder = encoders[i];
m_aEncoders.Add(encoder);
if (encoder.FormatID == ImageFormatPNG)
{
m_defaultEncoder = encoder;
}
}
free(encoders);
}
Wow! This is great!
I received some information via e-mail. Actually a few. One person told me about CPP and Delphi components, ActiveX and such.
Thank you very much for you to care about this software.
I looked at the things the one recommended.
New Audio Components v.2.5 (for Delphi)
Their (or his) Demo “Recorder”, did not record anything. I changed my Windows’ mixer setting, but it did not work either. So I did not want to try more. I threw them to the Trash.
AudioLab v.4.3.1 for Visual Studio, Cpp Builder, Delphi…
This is heavy duty! And it worked, I could record the sound. It was very easy, too. But how to do more than very simple? Their demo works but “So what?”, I must say.
Their help is not at all helpful, but they explain so many classes they have done. Easy but a bit more advanced demo could not be wrong.
It is free for Non-profit products, but without source code. They have made some silly dialogue, too. They were a little rush of new version or what?
Without the help that really helps, also demo as not good enough. What if it is really good! There is nothing to do with me but I think they will lose many customers.
And I could not play the MIDI file with it. They want to say it’s “Audio Stuff” blah blah blah …
It feels like this is pretty useless.
I still have it on my computer, because it is free, but I do not think I will use them.
I’ve made a little progress.
This is the next version.

Small numbers at the end of the version number can be a little more then when I release it.
A new interesting feature there. Do you see it? I do not mean to Skins. You can record sound from other audio sources. So far, I have tested with YouTube, Internet radio, DVD, CD, Windows Media Player, RealAudio Player, Quick Time … and it worked!
Once again.
Thank you, you told me about it, Mr… It was actually quite fun to examine them.
Memo is an advanced plain text editor for common programming languages. I made this program, because I want to modify some code in Delphi, Cpp or C (can be anything else). Using a program like CppBuilder is OK, but those programs are very heavy and not handy – of course it is working so slow. I do not want to launch a big program for modifying some part of the source code. I wanted a simple – and handy program for viewing, checking and modifying some codes. And now, you can compile your source file with MEMO.
Features
With Memo, the users are able to:
- load and modify common programing code
- syntax highlighting for common programming languages such as Pascal, Cpp, PHP, Perl, Python
- use spell checker
- pick up C++ templates (C++Builder like templates) and Object Pascal templates (Delphi like templates) – Press Ctrl + J to get these stuff
- Cut/Copy/Paste operations
- drag and drop
- unlimitted Undo / Redo (depends on your computer memory)
- convert characters (lowercase to uppercase or uppercase to lowercase)
- save selected block as a file
- insert a plain file into the chosen point
- select block (colum mode)
- read and save PC, Unix and Mac file formats (default is PC format)
- easy access prompt
- compile and see compiler output
and several more..