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

Search:

Type: Posts; User: tamirvs

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    1,313

    Re: system image list

    but that's the way to get icons for files by their extensions isn't it?
    if i want an icon which is not attached to any file type/extension?
  2. Replies
    7
    Views
    1,313

    Re: system image list

    lol.. and is there a solution?
  3. Replies
    7
    Views
    1,313

    Re: system image list

    basiclly i want the browse folder icon.. but any icon that is not based on extension is good (because i know how to get these..)
  4. Replies
    7
    Views
    1,313

    system image list

    Hi,
    I want to use icon from the system image list in my program.
    I know the number of the icon in the list and it works good, but if i run it on other computers, the image list won't be the same,...
  5. Replies
    2
    Views
    1,193

    Re: get icon by extension

    I looked it up before, but after your reply i looked again and found that it really can handle "virtual" files, thanks alot!!
  6. Replies
    2
    Views
    1,193

    get icon by extension

    hi,
    i want to be able to get the default icon of a file just by the extension (the file doesn't exists on the computer, i just have it's name). i've googled it and searched in this forum but...
  7. Replies
    4
    Views
    2,239

    Re: treeview with columns?

    ok thanks, i think i'll go for another idea like you said.
    another question about treeview:
    i have a treeview with the checkbox style, is there a way to make it like smart checkbox? for example, if...
  8. Replies
    4
    Views
    2,239

    treeview with columns?

    Hi,
    is there a way to create a treeview with multi-columns? like combining it with a header control or something..?

    thanks!
  9. Replies
    3
    Views
    1,681

    Re: WSAAsyncSelect crashes

    i pretty much changed the entire sending system to be more efficient and it works now :)
    thanks alot!
  10. Replies
    3
    Views
    1,681

    WSAAsyncSelect crashes

    Hi,
    my server and client use WSAAsyncSelect to handle the sockets connection.
    when my client connects to the server, the server sends an image of about 195,000 Bytes using 1 send() call.
    for some...
  11. Re: winsock problem - can't connect from outside?

    yea, i finally got that port forwarding issue.. thanks :)
  12. Re: winsock problem - can't connect from outside?

    ok i'll check it out, thanks alot! :)
  13. Re: winsock problem - can't connect from outside?

    well, i've read wikipedia and searched more in google but i still couldn't understand how's that can help me running a server behind a router which i don't have access to..?
  14. Re: winsock problem - can't connect from outside?

    i see.. thanks!
    so here's my problem:
    i am behind a router, but i can't configure it, since it's not mine personally. so other than asking the admin to open a port for me (coz he won't), is there a...
  15. winsock problem - can't connect from outside?

    Hi,

    I have a server and client programs using TCP/IP.
    I was always able to connect with no errors when i used the IPv4 that i get with the /ipconfig command (192.168.9...) but when i replace it...
  16. Replies
    1
    Views
    720

    multi send() causes connection to close?

    if my server use many sequential send() functions, can it causes a connection to crash?
    because for some reason a connection closes after multi send() calls (not a permanent number of calls)
    ...
  17. Replies
    3
    Views
    798

    Re: the "Open" Icon

    thanks alot! i got what i need and more :)
  18. Replies
    3
    Views
    798

    the "Open" Icon

    hello,
    is there any way to load the familiar windows Open (or Browse) icon without finding the specific icon file?

    thanks!
  19. Replies
    5
    Views
    1,776

    Re: WSAAsyncSelect freezes?

    yea you right.. i'll stop using it. thanks Mike!
    anyway, i'm gonna read a little about messagebox, just curious ;)
  20. Replies
    5
    Views
    1,776

    Re: WSAAsyncSelect freezes?

    thanks alot mike!
    but after MessageBox steals the loop, it does return to end the rest of the original loop (i checked it by writing another MessageBox after the first one), but for some reason the...
  21. Replies
    5
    Views
    1,776

    WSAAsyncSelect freezes?

    Hello, I have a weird problem that i'm desperately trying to solve:

    I have a server which uses WSAAsyncSelect to handle multiple clients.
    WSAAsyncSelect sends notification messages to the main...
  22. Re: how do I make a succesful send operation?

    LOL well said
  23. Re: how do I make a succesful send operation?

    tcp will send all the data it told you that was sent.
    it might not send all the data you told it to send, but it will let you know how much it did send, by the return value of send(), for example:
    ...
  24. Replies
    2
    Views
    2,697

    Re: sending struct using winsock

    ok, thanks :)
  25. Re: how do I make a succesful send operation?

    Yes, there is a better way of doing it.

    read a little about send() and recv():
    http://beej.us/guide/bgnet/output/html/multipage/syscalls.html#sendrecv...
Results 1 to 25 of 33
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured