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

Search:

Type: Posts; User: phenixa

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    936

    Re: member static function pointers

    i meant that yeah

    like this

    //class.cpp

    a::a()
    {
    y = some function address;
  2. Replies
    7
    Views
    936

    Re: member static function pointers

    thank you very much lindley
  3. Replies
    7
    Views
    936

    Re: member static function pointers

    let me give an example;

    //class.h

    class a
    {
    public :
    a();

    static int x;
  4. Replies
    7
    Views
    936

    member static function pointers

    when i call a member static function pointer which is initialized in constructor. it gives me unresolved external linking error.

    any ideas?
    thanks already
  5. Replies
    13
    Views
    2,797

    integer pointer conversion

    hi,
    is there any way to convert unsigned char to int* on the fly?
    like this

    unsigned char c = 0x05;

    int *a = &(int) c;

    this code give me "Must take address of a memory location" error
    any...
  6. Replies
    0
    Views
    3,211

    Charset and unicode codes

    hi,

    i am using a textbox to receive input from user

    i gotta inspect every char and decide which charset it belongs

    m - english
    ة - arabic (m key in english keyboard)
    μ - greek (m key...
  7. Replies
    1
    Views
    3,598

    Re: TBitmap & TMemoryStream issue

    got it!
    just don't forget to set position of TMemoryStream to "0" after operations
  8. Replies
    1
    Views
    3,598

    TBitmap & TMemoryStream issue

    TMemoryStream *mem = new TMemoryStream();
    mem->LoadFromFile("c:\\image.bmp");

    BYTE *data = (BYTE *) malloc(mem->Size);

    memcpy(data,mem->Memory,mem->Size);
    int size =...
  9. Thread: Events

    by phenixa
    Replies
    3
    Views
    728

    Re: Events

    i had set it auto reset
    while creating event
  10. Thread: Events

    by phenixa
    Replies
    3
    Views
    728

    Events

    hi,
    i am using events in my code,
    i set event at function a
    and wait for it at function b
    but as i see function b receives the same (LAST) event 4 times
    anybody have an idea?


    HANDLE...
  11. Replies
    4
    Views
    685

    Re: threads and gui - how to?

    you are right,
    as i said i am new to borland,
    i didn't have a problem so far,
    hope, it is thread safe as u said,
    i ll search for it..
  12. Replies
    4
    Views
    685

    Re: threads and gui - how to?

    Edit1->Text EQUALS NOT PLUS EQUALS
    that was all about
    Edit1->Text = mssage;
    and it was okay
    and thanks for reply Marc G
  13. Replies
    4
    Views
    685

    threads and gui - how to?

    hi,
    i am new to c++ (used to program in java and c#)
    for several days i have been trying to change gui from a thread,
    i searched all the internet but couldnt find anything related,
    i am using...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured