Search:

Type: Posts; User: neel_basu

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    2,223

    Thank You I Have Got That What I Was trying To Do...

    Thank You I Have Got That What I Was trying To Do

    char* result = malloc(count * sizeof(char));
    Didn't Work
    I Used
    char *result = (char *) malloc(count * sizeof(char));
    But It Gets 1 Character...
  2. Replies
    17
    Views
    2,223

    Here Is An Another ...

    Here Is An Another

    ..................................................................
    case WM_LBUTTONDOWN:
    m_edit_val = hwndEdit.dwStyle;
    MessageBox(0,"Text On The Edit box Would Be...
  3. Replies
    17
    Views
    2,223

    No It Doesn't Work In MSVC++

    No It Doesn't Work In MSVC++
  4. Replies
    17
    Views
    2,223

    OK Can I Do It Like This ?? char...

    OK Can I Do It Like This ??

    char edit_text[GetWindowTextLength(hwndEdit)];
    GetWindowText(hwndEdit, edit_text, GetWindowTextLength(hwndEdit));
  5. Replies
    17
    Views
    2,223

    But char edit_text[512] Will Limit The Lenth Of...

    But char edit_text[512] Will Limit The Lenth Of The string But I Wanna Let The User Type
    Text In The Textbox AS LONG He/She Wants Then How Can I Do It ??
  6. Replies
    17
    Views
    2,223

    Oh! Ya Now I Understand GetWindowText Justs...

    Oh! Ya
    Now I Understand
    GetWindowText Justs gets The Texts And Put It In a Var.
    So If I Use

    char* edit_text[];
    GetWindowText(hwndEdit, edit_text, strlen(edit_text));
    Would It Work ??
  7. Replies
    17
    Views
    2,223

    C Under Windows Problem

    Hello Its Not Related To PHP I Need Some help In C
    I am Trying to Create Windows Programs With C
    Would Anyone lease Tell Me How To Get The Text In a edit box ??
    And This Is The Edit Box

    C:...
Results 1 to 7 of 8