When StartCheck is called by itself this.finished no longer points to tm.finished. this.finished shows "undefined" in the alert. Can someone tell me why? Is it possible to have...
The major reason why I would like a centralized location as opposed to installing assemblies on each machine is that I have no control over the machines, and...
I have an application that is being deployed on an intranet. The main executable is a windows form that references several DLLs, and these DLLs need to be updated from time to time. Users...
I am trying to automate the sending of email to recipients using Outlook, and I need to be able to send stuff like meeting appointments. The system I am using doesn't support these options...
Hello. I am trying to understand how a process in memory is stuctured. To explore this I am trying to use ReadProcessMemory to write the memory of a process to a byte array, and I am then printing...
Maybe it's just an issue with Visual Studio 6.0. I was able to sort the list by sorting parts of it and merging the parts together. I suppose it will have to do until I can get my hands on Visual...
I solved the problem. I was using standard IO functions to read and write the bitmap information. For some reason ofstream.write was adding bytes to each row. The bitmaps are being written...
I am experiencing some difficulty changing the colors of a bitmap. For each pixel of a bitmap I am assigning it a shade of blue based on its horizontal placement. The function is similar...
I wrote a function that reads the BITMAPFILEHEADER, then the BITMAPINFOHEADER, and finally the byte array containing the color values of a 24 bit bitmap into memory. Then, I saved the...
Hello. I am looking for some information about bitmaps. Is there a comprehensive book anyone can recommend on the subject? Right now I am just trying to create a bitmap, edit it, store it in...
::SetWindowsHookEx() is what I was looking for, and it should help me with some other things I am trying to accomplish. Thank you very much for all of your replies.
I am trying to write a simple MFC program to show the current cursor position. I am using OnMouseMove() to do this right now but it is only giving me the postion of the cursor when it is...
Thank you Golanshahar, those threads gave me enough information to figure out what I needed to do. My app is now one big step closer to where it needs to be!
I have a BITMAPINFO structure holding a bitmap I would like to write to my app window. I have tried using SetDIBitsToDevice() but the program crashes when I use this function. I...
Thank you very much for the reply. I do have the file streams.h but the compiler still cannot find it. The only way I can get the compiler to find it is to copy everything in the base classes...
Go to http://mathworld.wolfram.com/MatrixMultiplication.html. In there you will find an algorithm for multiplying any two matrices that can be multiplied.