Ali Mojtabaee
Posts
-
Refactor! For Visual C++ 2005 -
resource hidingLord_Vader wrote:
Anyone knows if and how I can hide my resources(like textures) in an executable file? I mean if there is a way to hide my jpg file as a whole in an exe file
you can use an exe protector like this http://www.codeproject.com/cpp/peprotector1.asp[^] it's simple but powerful! Ali
-
space tourisimThe first female space tourist blasts off.Iranian-born American Anousheh Ansari begins her 10-day journey to ISS http://www.cnn.com/2006/TECH/space/09/18/space.female.tourist/index.html[^] do you want to reserve your seat now? :)
-
A tool to identify the specific causes of "Limited User Account" bug -
Add CodeProject Button to Your Google ToolbarMichael Dunn wrote:
Add a CodeProject toolbar to your browser![^]
:)
-
Add CodeProject Button to Your Google Toolbarpeterchen wrote:
what does it DO?
It shows RSS feeds in a menu that is cool, but it can not compose CP search string properly and needs a small modification.
-
Add CodeProject Button to Your Google ToolbarAdd CodeProject Button to Your Google Toolbar !:) [^]
-
Google are sorry...sergaly wrote:
It doesn`t work for me. I have just "Not Found" error.
it does not work for me too! :)
-
Pls suggest some resourcesthis [^]
-
thread/application priorityWindows is not a real-time OS, It’s true! But there are techniques to satisfy timing constraints of a windows real-time application with 1 millisecond accuracy. Some of them may be complex and hard to implement but they are possible. see this on MSDN: http://msdn.microsoft.com/library/en-us/dnxpembed/html/hardrealtime.asp[^] -- modified at 0:47 Thursday 5th January, 2006
-
thread/application prioritytonyro wrote:
Is it possible to make my program such that it is the only task that is running on the computer?
I don't think so.there are many OS tasks that manage your system and you can not stop them , if you try to stop them (if you can!) the system may crash or go to an unstable condition.can you tell me the smallest unit of time you use in your program?
-
What kind of hw/sw do i need to automate a phoneservice?Yes! It’s possible! you can do it using TAPI and a voice modem : 1- for making a new call you can use
lineMakeCall
2- For checking that your destination picked up the phone you can uselineGetCallStatus
and check dwCallStateMode or you can check TAPI LINE_CALLSTATE messages. 3- And for generating some digits on your call you can uselineGenerateDigits
As you know before using these functions you must initialize the line. it's easy! isn't it? :)