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

Search:

Type: Posts; User: Raute50

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    8,025

    Version of vcredist_x86.exe

    Hello folks,


    I am using tools which are developed with the c++ and VS2005, so in some cases i should install Microsoft Visual C++ 2005 Redistributable Package (x86)


    relating download can be...
  2. Re: how can i get author, comments, ... from a file ?

    thanks a lot ...

    i have seen some pieces of your example during my search ... but quit yet these things are put together ...

    it is working well and currently it is exactly what i need ...

    ...
  3. Re: how can i get author, comments, ... from a file ?

    in my self made examples the files should have already some "Comments" ...
    perhaps the comments i mean are not the comments VerQueryValue does mean ?!
    for completenes (and perhaps for finding an...
  4. Re: how can i get author, comments, ... from a file ?

    i tried to adapt the information from the VeryQueryValue Page and your post, but unfortunately i did not get the 'comments' Information :(

    i used the following lines:

    /* when i looked with my...
  5. how can i get author, comments, ... from a file ?

    Hello everybody,


    i want to get some informations of a file, but i did not know how i could recieve this ?!
    fortunately i found how i could read the file version, what is shown at the end of...
  6. Replies
    7
    Views
    5,648

    Re: Scrollbar within an AfxMessageBox

    Hello everybody ...


    i am still working on solving my problem ... unfortunately ...

    my new way is to use another box to show the message.

    first question:
    what kind of message box would you...
  7. Replies
    7
    Views
    5,648

    Re: Scrollbar within an AfxMessageBox

    Thanks a lot for the answers.

    one point why i am using AfxMessageBox is, that i did not know another possibility in this special situation ...
    can you give me a more detailed hint what you think...
  8. Replies
    9
    Views
    1,331

    Re: Find all directories in a directory

    one of them caused the following MessageBox
    MessageBox("ERROR_FILE_NOT_FOUND");

    the other caused a MessageBox where the only entry was:
    found these files : \n

    i did not remember which...
  9. Replies
    9
    Views
    1,331

    Re: Find all directories in a directory

    solving my own problem:

    i used WIN32_FIND_DATA FindFileData; in my code, which has to be replaced by CFileFind FindFileData; !!!
    Afer some more changes and with the right use of...
  10. Replies
    9
    Views
    1,331

    Re: Find all directories in a directory

    the only other way i tried to was "C:\\MyDirectory\\Textfiles\\*\";

    error C2001: newline in constant
    error C2146: syntax error : missing ';' before identifier 'hFind'


    but as i wrote down i...
  11. Replies
    9
    Views
    1,331

    Re: Find all directories in a directory

    no ... it doesn't help anyway ... because i already know how to find files .... i want to know how i find directories.

    Thats why i chose the title of this thread! ;)

    #50
  12. Replies
    9
    Views
    1,331

    Re: Find all directories in a directory

    i tried to but it did not work ?!

    my code for finding files looks like this:


    void CMyDlg::OnButton1()
    {
    WIN32_FIND_DATA FindFileData;
    HANDLE hFind;
    CString argv =...
  13. Replies
    9
    Views
    1,331

    solved: Find all directories in a directory

    hi all,

    i did not find any answer to my following question: how can i find all directories which are inside a specified directory using the MFC.

    I wanted to use a similar approach to finding a...
  14. Replies
    7
    Views
    5,648

    Re: Scrollbar within an AfxMessageBox

    i need a vertically scrollbar, because there are to many lines ... ;)
  15. Replies
    7
    Views
    5,648

    Scrollbar within an AfxMessageBox

    Hello everybody,

    my problem is that i have an AfxMessageBox(msg) where msg is a CString object.
    msg is too long, it does not fit on the screen, so i need a scrollbar.

    I did not found anything,...
Results 1 to 15 of 16





Click Here to Expand Forum to Full Width

Featured