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

Search:

Type: Posts; User: Arkon

Page 1 of 19 1 2 3 4

Search: Search took 0.76 seconds.

  1. Replies
    2
    Views
    734

    Re: Virtual RAM/Motherboard/Cache info in C++

    check this out for start
    http://qsoft.ragestorm.com/tutors/windows/ramsize.txt

    QSoft
    http://qsoft.ragestorm.com
  2. Replies
    7
    Views
    14,778

    Re: Load Bitmap From File

    or the win32api way :)
    HBITMAP hBitmap;

    // From File:
    hBitmap = (HBITMAP)LoadImage(hInstance, "myimage.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE | LR_CREATEDIBSECTION);

    // From Resource:...
  3. Replies
    5
    Views
    1,555

    Re: How to use GetToolBarCtrl().EnableButton?

    you got it right
    altough we are trying to avoid the use of glocl scope variables
    so you could put that val in the class or something...

    QSoft
    http://qsoft.ragestorm.com
  4. Thread: Win32 Socket

    by Arkon
    Replies
    2
    Views
    694

    Re: Win32 Socket

    if you need source codes let me know
    it's pretty easy
    don't give up man!

    QSoft
    http://qsoft.ragestorm.com
  5. Replies
    5
    Views
    1,555

    Re: How to use GetToolBarCtrl().EnableButton?

    hello
    as i remember that doesn't work well
    you'll have to create with the wizard a on command ui handler for that button and then in that func call pcmdui->Enable(false);

    good luck

    QSoft...
  6. Thread: exception this

    by Arkon
    Replies
    1
    Views
    528

    exception this

    hello
    i still don't get it....
    why should i use exception
    (no flame) just a good reason
    maybe you can show me something that makes it easy then using if statements
    or maybe there IS something...
  7. Thread: empty class size

    by Arkon
    Replies
    0
    Views
    684

    empty class size

    hello

    i was wondering why the size of an empty class is 1??


    QSoft
    http://qsoft.ragestorm.com
  8. Replies
    1
    Views
    532

    Re: Keyboard presence

    could you disable keyboard failure in bios?

    QSoft
    http://qsoft.ragestorm.com
  9. Thread: Bitmaps & pixels

    by Arkon
    Replies
    6
    Views
    891

    Re: Bitmaps & pixels

    this will help you i thinkhttp://qsoft.ragestorm.com/tutors/windows/dib.txt


    QSoft
    http://qsoft.ragestorm.com
  10. Re: How to start my application when Windows start?

    yeah just after you run your app,if you use some sort of installation prog you could add it to there...

    QSoft
    http://qsoft.ragestorm.com
  11. Re: How to start my application when Windows start?

    here is the registry way
    http://qsoft.ragestorm.com/tutors/windows/registry.html

    this will teach you how to use a few basic registry apis

    then you open...
  12. Replies
    3
    Views
    720

    Re: How to put dialog into icon tray?

    here is a tutorial i wrote
    that should show you the way
    there are two source codes you better take a look at.

    http://qsoft.ragestorm.com/tutors/windows/systray.html
    enjoy

    QSoft...
  13. Replies
    1
    Views
    493

    Re: Easy way to process single sample audio

    waveOut and waveIn functions i guess
    not sure tough

    QSoft
    http://qsoft.ragestorm.com
  14. Replies
    2
    Views
    528

    Re: Operating exe writen in C

    maybe this will help you
    http://qsoft.ragestorm.com/tutors/windows/crproc.txt

    QSoft
    http://qsoft.ragestorm.com
  15. Replies
    15
    Views
    1,697

    Re: Formatting the hard disk

    i know it's something with magnet like a film works....
    all sort of :)

    hmm but say you format and you set the magnetic particles to -(assum minus signal is 0) then how can they know that it was...
  16. Replies
    15
    Views
    1,697

    Re: Formatting the hard disk

    but HOW?

    QSoft
    http://qsoft.ragestorm.com
  17. Replies
    15
    Views
    1,697

    Re: Formatting the hard disk

    "I imagine computer scientists could probably reconstruct the data with time and money.."
    how could anyone do it after you set everything to 0 or other char???

    or do i miss something in how h.d...
  18. Thread: ProcessID

    by Arkon
    Replies
    1
    Views
    526

    Re: ProcessID

    http://qsoft.ragestorm.com/tutors/windows/crproc.txt

    QSoft
    http://qsoft.ragestorm.com
  19. Thread: Hook Keyboard

    by Arkon
    Replies
    2
    Views
    535

    Re: Hook Keyboard

    check these:
    http://qsoft.ragestorm.com/tutors/windows/kbhook.html
    http://qsoft.ragestorm.com/tutors/windows/disablereboot.txt
    all luck

    QSoft
    http://qsoft.ragestorm.com
  20. Thread: Apllication Path

    by Arkon
    Replies
    3
    Views
    651

    Re: Apllication Path

    haha

    try this as well
    char dir[256] = "";
    GetModuleFileName(NULL, dir, 256);
    for (int i = strlen(dir); dir != '\\' && i > 0; i--) dir[i] = '\0';
    MessageBox(NULL, dir, "", 0);

    [i]QSoft...
  21. Re: How do i check if the audio port is being used

    you can try to open a wav out device
    you can...nothing is being played
    otherwise....


    QSoft
    http://qsoft.ragestorm.com
  22. Replies
    2
    Views
    642

    Re: disable/enable sreensaver

    well i know how to disable it

    in your windproc you process

    switch(message)
    {
    case WM_SYSCOMMAND:
    switch (wParam)
    {
    case SC_MONITORPOWER:
  23. Re: How can I get the entire list of exported functions of a DLL file.

    i'm not sure how it works
    i once saw a source of GetProcAddress
    and i saw that it searches the function's name among all other names...

    like an array of function names - it seems to me
    i might...
  24. Replies
    2
    Views
    467

    Re: How to add accelrator keys to a dialog?

    are you using mfc or win 32 api?

    if you are using mfc then add a accelerators table in the resource editor

    QSoft
    http://qsoft.ragestorm.com
  25. Re: how can I make the text appear in the edit box part of the CComboBox (simple) on initialization?

    m_Combo.SetWindowText

    QSoft
    http://qsoft.ragestorm.com
Results 1 to 25 of 469
Page 1 of 19 1 2 3 4





Click Here to Expand Forum to Full Width

Featured