Search:

Type: Posts; User: freedik

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    2,452

    Bah, forget this whole google thing, _Elixia_...

    Bah, forget this whole google thing, _Elixia_ saved our ..........es :D



    Im at 94% download, I hope it is what I think it is :)
    It was quite annoying anyway how MSDN throwed you a tons of pages when...
  2. Replies
    13
    Views
    2,345

    So "threads" is the magic word. I suspected that...

    So "threads" is the magic word. I suspected that they could be key to solution but they looked too scary(read: complicated) to get deeply into right away :p.
    You see, I'm learning programming...
  3. Replies
    13
    Views
    2,345

    Heh, that's an interesting experiment you got...

    Heh, that's an interesting experiment you got there. Didn't get any good ideas from there tho. I need some Windows programming concept but I'm not even sure what I'm looking after. I don't want to...
  4. Replies
    13
    Views
    2,345

    Excuse me my ignorance but... I still haven't...

    Excuse me my ignorance but... I still haven't figured out how to do it. It's actually about how to build up the program.

    I want my program to control some physical process. It needs to supervise...
  5. Replies
    12
    Views
    2,452

    Gee, thanks a lot :) No more waiting for MSDN...

    Gee, thanks a lot :)
    No more waiting for MSDN server.
  6. Replies
    12
    Views
    2,452

    Dam! I wish I knew that earlier! The DevC...

    Dam! I wish I knew that earlier!

    The DevC packages are definetely great things, too bad I can't get em cause I'm heavily firewalled here. I'll get them at home and upload to my HTTP server, so...
  7. Replies
    12
    Views
    2,452

    I meant "can't find anything" literally. I enter...

    I meant "can't find anything" literally. I enter the keyword while staring at it on the navigation menu tree (WM_CREATE for example) and search comes up with nothing at all. At least 'windows' or...
  8. Replies
    12
    Views
    2,452

    MSDN site - is it just me or...

    Periodically search yields no results in that site. Sometimes it works great, sometimes can't find absolutely anything. Is it happening to everyone or is it just me?

    Are there some other options...
  9. Replies
    10
    Views
    5,416

    I haven't done any games or anything like that...

    I haven't done any games or anything like that myself but I think you should use offscreen drawing. There's a lot of information about it in MSDN. Basicly you draw your things and then BitBlt them to...
  10. Replies
    3
    Views
    3,548

    The GetTickCount function retrieves the number of...

    The GetTickCount function retrieves the number of milliseconds that have elapsed since the system was started. Use a little math if you need dates or daytime.
    It's limited to 49 days but I doubt if...
  11. Replies
    13
    Views
    2,345

    That's why I made this thread. There's a...

    That's why I made this thread. There's a difference between lacking knowledge and being unreasonable.
  12. Replies
    13
    Views
    2,345

    Thank you both, these 2 things are exactly what I...

    Thank you both, these 2 things are exactly what I was looking for.

    SetTimer would probably be best solution but in my case inserting some Sleep(fewmillisecs) here and there will probably be...
  13. Replies
    13
    Views
    2,345

    Pause/idle thing

    As some of you have noticed, I'm new to winprogramming :)
    My aim is to create a program that would send messages to some other program, without user interference, with specified delays.
    Currently...
  14. Replies
    0
    Views
    1,270

    Finding window handle again (pic)

    Heres the pic of window hierarchy:
    http://www.zone.ee/freedik/tree.jpg

    I need to get a window handle that is located in the branch shown with arrow. Trying to find it using FindWindowEx.
    Notice...
  15. Replies
    12
    Views
    3,531

    Thanks novacain for pointing out this example,...

    Thanks novacain for pointing out this example, but yesterday I already managed to create a function that saves HBITMAPs to BMPs. Now I'm trying to figure out how to do opposite action:)

    Dang, I...
  16. Replies
    12
    Views
    3,531

    That's more or less what I thought about it... In...

    That's more or less what I thought about it... In my own fuzzy noob way :)
    But this handle is still some kind of variable, such as int. Right?

    I guess it means that I can't get bitmap data from...
  17. Replies
    12
    Views
    3,531

    simple noob question: HWND, HDC etc.

    I've been learning winprogramming for several days now but I still haven't found out what EXACTLY are HWND,HBITMAP,HDC etc. I understand that theyre some sort of handles, but what type? No...
  18. Replies
    6
    Views
    1,371

    Thats what I thought too. But windows cant find...

    Thats what I thought too. But windows cant find this window simply by class name(it has no title). Could it have anything to do with this "index" attribute that spy program showed me about this...
  19. Replies
    6
    Views
    1,371

    Oh my god! I just found out that the window I...

    Oh my god! I just found out that the window I want to use is over 10 levels lower than its topmost parent. Does that mean that I have to write over 10 FindWindowEx's to finally get my handle?
    The...
  20. Replies
    6
    Views
    1,371

    Getting smarter... Looked up at WinSight that...

    Getting smarter...
    Looked up at WinSight that notepads class is "Notetab" and used wnd = FindWindow("Notepad",NULL); instead. Also found out that I have to target it's child window ("Edit") instead....
  21. Replies
    6
    Views
    1,371

    newbie question: SendMessage

    Does the following code make any sense at all or am I way off?


    wnd=FindWindow(NULL,"target window");
    SendMessage(wnd,WM_RBUTTONDOWN,0,LPARAM(100,100));


    The idea is to simulate a mouseclick...
  22. Replies
    8
    Views
    2,244

    I started learning C++ for windows just...

    I started learning C++ for windows just yesterday, I had experience in DOS and UNIX C++.
    Dev-C++ is FREE. Also one can download Borland C++ builder 60 day trial for FREE. So no need to blame ppl in...
Results 1 to 22 of 22