CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dremmuel

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    917

    Javascript: Recursion in class

    Hello,

    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...
  2. Replies
    4
    Views
    6,420

    Re: Linking an executable to a loaded DLL

    Thank you for your responses.

    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...
  3. Replies
    4
    Views
    6,420

    Linking an executable to a loaded DLL

    Hello,

    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...
  4. Replies
    0
    Views
    1,045

    Email Structure and Construction

    Hello,

    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...
  5. Replies
    2
    Views
    5,216

    Re: ReadProcessMemory questions

    BobS0327, thanks a lot for your post. This makes a lot more sense now.
  6. Replies
    2
    Views
    5,216

    ReadProcessMemory questions

    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...
  7. Replies
    4
    Views
    1,777

    Re: Problem With STL List Sort

    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...
  8. Replies
    4
    Views
    1,777

    Problem With STL List Sort

    Hello,

    I am having a problem sorting a large list. Below is an example.



    #include <iostream>
    #include <list>
    using namespace std;
  9. Replies
    4
    Views
    1,118

    Re: Colors Shifting In 24 bit Bitmap.

    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...
  10. Replies
    4
    Views
    1,118

    Re: Colors Shifting In 24 bit Bitmap.

    Mike,

    Thank you for your reply. The padding formula I am using is

    int n = sizeof(DWORD)
    padding = (n - ((width*3) % n)) % n

    For the number of bytes in the image I am using
    ...
  11. Replies
    4
    Views
    1,118

    Colors Shifting In 24 bit Bitmap.

    Hello,

    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...
  12. Re: Two extra bytes at end of each bitmap row.

    0xC0000005, thank you for the explanation. That really clears things up.
  13. Two extra bytes at end of each bitmap row.

    Hello,

    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...
  14. Replies
    0
    Views
    522

    Information on Bitmaps

    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...
  15. Replies
    4
    Views
    836

    Re: MFC Event Message Problem

    ::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.
  16. Replies
    4
    Views
    836

    MFC Event Message Problem

    Hello.

    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...
  17. Replies
    3
    Views
    1,001

    Re: Display Bitmap in MFC

    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!
  18. Replies
    3
    Views
    1,001

    Display Bitmap in MFC

    Hello.

    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...
  19. Replies
    4
    Views
    1,087

    Re: Having trouble with Directs\Show

    Thank you for your help Alex, including the directory solved my problem.
  20. Replies
    4
    Views
    1,087

    Re: Having trouble with Directs\Show

    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...
  21. Replies
    4
    Views
    1,087

    Having trouble with Directs\Show

    Hello,

    I am trying to make a filter for DirectShow.

    My problem is with the header streams.h: the compiler cannot find the file when I include it.

    I have built strmbasd.lib and linked to...
  22. Replies
    6
    Views
    1,422

    Re: Multiplying two matrices...

    Go to http://mathworld.wolfram.com/MatrixMultiplication.html. In there you will find an algorithm for multiplying any two matrices that can be multiplied.
  23. Replies
    7
    Views
    1,025

    Re: reading text files!

    Hey Norphos. Your problem is parsing your data. The best way to solve your problem is to define your expectation of the data you get.

    For example, if you always expect the commas in...
Results 1 to 23 of 23





Click Here to Expand Forum to Full Width

Featured