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

Search:

Type: Posts; User: Skizmo

Page 1 of 80 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    1,110

    Re: C programming Help

    Theoretically everything. You can build whatever you want in C.


    What are you looking for ?
  2. Re: Struggling with Friend classes in seperate header files

    Avoid 'friend' at all costs (a.k.a. never use it). Usually the 'friend'-option means your design is bad.
  3. Replies
    2
    Views
    1,779

    Re: FTP with progress dialog

    Here is a ftp client I 'stole' a few years ago from the internet and wrapped it in a class. The GetFile () function gives you progress that you can use for a progress window.
    30617
    30619
  4. Replies
    4
    Views
    1,479

    Re: C++ Array comparison not working

    for (int correct = 0; correct < QUESTION; correct++)
    {
    if (answerKey[answer] == testAnswers[a])
    correctAnswer++;
    }
    You keep comparing the same thing. 'a' and 'answer' never change inside the...
  5. Replies
    6
    Views
    2,997

    Re: Working with File Extensions.

    No, it is getting it out of there. printf prints, scanf scans.
  6. Replies
    5
    Views
    2,133

    Re: help with strings

    What are you trying to do... because the reason nobody responds is that we haven't got a clue what you are talking about.
  7. Thread: GRASS and Qt

    by Skizmo
    Replies
    2
    Views
    1,160

    Re: GRASS and Qt

    You probably have more luck if you post this question on a QT forum.
  8. Replies
    9
    Views
    2,224

    Re: Big O Notion Help for project

    click
  9. Re: Windows 8 phone or tablet programming questions

    'Porting' a windows app. usually means a big rewrite of the entire app. If it is written in a windows-specific language/c-dialect (for example MFC or C#) it means you need to start from scratch.
  10. Replies
    2
    Views
    1,849

    Re: Qt c++ Problem with resizing widget

    You can use the layout-grid in the resource editor. This automagically resizes everything on a widget when the widget is resized. Also, there are forums specially for QT (http://www.qtcentre.org/).
  11. Re: C++ Programing need help in writng the code ,,,,,

    click
  12. Re: Need some smart programmer to complete this code,,,my Saturday 8th,,,,thank you C

    click
  13. Replies
    5
    Views
    1,453

    Re: Do {} while errors

    while ( choice !=1 && choice !=2 && choice !=3 && choice !=4 && choice !=5 && choice !=6 && choice !=7 && choice !=8 && choice !=9 && choice !=10 && choice !=11 && choice !=12 && choice !=13 &&...
  14. Replies
    6
    Views
    1,808

    Re: break up large TCP/IP packets

    You don't have to worry about the MTU size... the network stack is doing that work.


    No.
  15. Thread: What are these?

    by Skizmo
    Replies
    8
    Views
    2,913

    Re: What are these?

    On the other hand, why are they dumped ?

    Also, the rest of the traces are exactly the same as a memory leak report from the visual studio.
  16. Thread: What are these?

    by Skizmo
    Replies
    8
    Views
    2,913

    Re: What are these?

    Looks like memory leaks to me...
  17. Re: Reading integers from a data file, and using the integers in formulae

    vector<int> x,y;
    int x,y,i=1,lines;
    You defined x and y twice.
  18. Replies
    5
    Views
    3,378

    Re: Sequential Diagram using VC++(MFC)

    We aren't google.
  19. Replies
    5
    Views
    3,378

    Re: Sequential Diagram using VC++(MFC)

    Yes.
  20. Replies
    13
    Views
    5,188

    Re: How to set same pixel size for each character ?

    What are you talking about ? What character ?
  21. Re: int WINAPI WinMain(...) ~ hey guys, can tell me what does the WINAPI mean?

    I think he ran out of pills :) his first post and the only thing he does is calling names.
  22. Thread: Invalid socket

    by Skizmo
    Replies
    6
    Views
    3,183

    Re: Invalid socket

    You just answered your own question.

    MSDN:

    Without the WSAStartup, there are no sockets.
  23. Replies
    3
    Views
    1,110

    Re: Disabling/capturing windows shortcut keys

    Nope. AFAIK, windows itself is the only one that is allowed to capture CtrlAltDel (for security reasons).
  24. Thread: Marketing mysel

    by Skizmo
    Replies
    4
    Views
    792

    Re: Marketing mysel

    Yes, but that is a mistake made by employers, but you can't fix their opinion. I am a selftought person and have written in more then 10 totally different languages, and currenty in my job, I can't...
  25. Replies
    3
    Views
    1,048

    Re: C++ and Objective C question

    Maybe QT is something you are looking for.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured