Search:

Type: Posts; User: samsam1

Search: Search took 0.01 seconds.

  1. Replies
    86
    Views
    14,408

    Toga, they , re all uniformed

    Toga,

    they , re all uniformed
  2. Thread: a+ cert

    by samsam1
    Replies
    13
    Views
    3,726

    A+ certification for dummies. $34.00 .good book

    A+ certification for dummies. $34.00 .good book
  3. Thread: fread readfile

    by samsam1
    Replies
    3
    Views
    1,472

    fread readfile

    can fread do everything that readfile does almost?

    howabout bitmaps if i use binary flags?. havent tried it with bitmaps yet.

    if yes wont bother with readfile anymore.
  4. Thread: DIB & DDB

    by samsam1
    Replies
    3
    Views
    1,877

    DIB & DDB

    Hi;

    If im making an application for my self on my own system and dont plan to share it with other computers wouldnt it be a better idea to use DDB than DIB because it seems DIB for a little...
  5. Thread: headers&lib

    by samsam1
    Replies
    1
    Views
    1,245

    headers&lib

    Once and for all can anyone tell me what library files to put in my setting\link section of VC++ 6 to run a simple direct draw app
    i put dxguid.lib gdi32.lib is there anymore what about direct3d...
  6. Replies
    4
    Views
    1,477

    thx but can we set up a lookalike constructors...

    thx but can we set up a lookalike constructors and destructors as well or virtual functions that we can reference later?


    oh that one answered my question

    very good example but is default the...
  7. Replies
    4
    Views
    1,477

    structures fooloing to look like classes

    Hi c++ ppl;

    I do program in C and couple of years ago finished reading

    the book "C++ how to programm" by deitel&deitel which is a great book and give me scoop on the language(i had read their...
  8. Replies
    16
    Views
    2,872

    Or may be if you realy love programming for the...

    Or may be if you realy love programming for the fun of it ,

    you open a bussiness that makes lots of money on its own,

    in my case "courier" and hate it but having fun after work

    programming...
  9. Thread: test

    by samsam1
    Replies
    2
    Views
    901

    test

    http\\www.cprogramming.com


    YA I KNOW
  10. Replies
    4
    Views
    2,113

    re;clean code

    OK im sorry.

    im simplifing for you with more detail;

    SYSTEMTIME ST;
    static char s[40], a[40],;
    FILE *pfile;


    first i created a sequential file "time.dat" then i used:
  11. Replies
    4
    Views
    2,113

    reading file problem

    Hi everyone;

    i am making a program to get familiar with writing and reading files,this program is to write the time that lets say an employee comes to work and what time she checks out ,and only...
  12. Thread: global func

    by samsam1
    Replies
    1
    Views
    908

    global func

    Hi;
    In win programs if we define a function as global are the variable belonging to that functions global as well?just like structurs?
  13. Replies
    3
    Views
    1,806

    DIRECTDRAW DIRECT3d

    Hi;

    Since direct3d and direct draw since directx 8 are unified into one,as a beginner what do u suggest i should start with .
    learn directdraw version 7 first & then start on direct3d 8

    or...
  14. Thread: Wm_creat

    by samsam1
    Replies
    3
    Views
    1,151

    My.... That was the fastest responce i ever...

    My....

    That was the fastest responce i ever got making a coffee comming back its there WOW;

    thx
  15. Thread: Wm_creat

    by samsam1
    Replies
    3
    Views
    1,151

    Wm_creat

    Hi

    Is it possible to get more than one WM_CREATE in the same program other than sendmessage function?
  16. Replies
    9
    Views
    27,221

    how about strtok. char *tokchar; tokchar =...

    how about strtok.

    char *tokchar;
    tokchar = strtok(trim_string, " ");
    while(tokchar != NULL){

    printf////////

    tokchar = strtok(NULL, " ");
    }
  17. Replies
    8
    Views
    1,326

    int i; char a[10]; TextOut(hdc, x, y, a,...

    int i;
    char a[10];

    TextOut(hdc, x, y, a, wsprintf(a, "%d", i));
  18. Replies
    6
    Views
    901

    while(*ptstring++ != '\0'); help

    if ptstring is a pointer to a memo block of strings i saw this statment in a book and assumed it would be the same as

    while(*ptstring != '\0')
    ptstring++;

    but its not and if i change it to the...
  19. Replies
    6
    Views
    1,880

    Use windows SUBCLASSING and intercept the enter...

    Use windows SUBCLASSING and intercept the enter or tab key


    tempeditproc =(WNDPROC)SetWindowLong(hwndedit, GWL_WNDPROC, (LONG)editproc);

    then process enter msg in your edit procedure which is...
  20. WM_PAINT SetClassLong(hwnd, GCL_HBRBACKGROUND,...

    WM_PAINT

    SetClassLong(hwnd, GCL_HBRBACKGROUND, (LONG)CreateSolidBrush(RGB(255, 255, 255)));

    is it what u wanted?
Results 1 to 20 of 20