Posts Tagged ‘L2’
Silverlight – What you need to create a Game
I will write many stuff needed to write a game in Silverlight. Maybe you can find better solution but It works for me ![]()
It like a tutorial to create Game in silverlight.
Click to continue…
Silverlight – Ressources to create a Chat very easily in Silverlight/C#
All you need to create a TCP/IP chat in Silverlight using socket. If you want more details about the server and the socket client please refer to the previous post.
Silverlight – Security Policy Server (Needed for TCP Socket)
If you try to use TCP socket in Silverlight you must have this security server running.
C++ – Share a QT (trolltech) application with MySql (sql driver)
My last post was about creating the MySql driver for QT (trolltech).
But, I want to write a little post for people who, like I did, do want to share their QT Application with others. In fact, even if it works correctly on your computer, it is not the case on another one you have the (very ugly) : “SQL Driver is not loaded”, lets look at the solution…
When I shared my application with a friend, the program started without any error. But, when it tried to connect to the database it showed an error “Driver not loaded”. It was a surprise because, I put every dlls in the application directory : mingwm, mvscr90, qtcore, qtgui, qtsql,and also qsqlmysql4.
I checked with Dependency Walker no error were found…
But it was clear that something was missing… After some research, you have to copy every dll from C:\Qt\2009.X\qt\plugins\sqldrivers on the computer where you want to test your application. You have to use the same directory as usual plugins :
So copy sqldrivers dir into your executable dir. So near your executable, you must have usual dlls and sqldrivers directory (with every dll needed into it).
Then it will work.
If it doesn’t copy the sqldrivers dir in the same (original) path (for example C:\Qt\2009.X\qt\plugins\sqldrivers).
Good luck!
Matlab – Sound (& Speech) recognition using MFCC
A quick and easy way to recognize a sound.
This method can be seen as a base to create a speech to text method but I will not treat this subject here
