Search:

Type: Posts; User: marsface

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,201

    you are right! it's quite useful. I didn't know...

    you are right! it's quite useful. I didn't know it is so.
    Better to see a dialog than reboot from time to time. :)


    ok, the aim is always to produce crashfree and stabil software ;)

    Thanks!
  2. Replies
    5
    Views
    1,201

    thanks guys for your explanation, now it works...

    thanks guys for your explanation, now it works correctly with the suggested changes ....

    Thanks!
    :)
  3. Replies
    5
    Views
    1,201

    Oh yes. Destructor Troubles

    Hi all,

    i'm using VC++ .NET 7.0 and have the following probem with the following code.



    // Dummy.h
    //
    #pragma once
  4. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    nvoigt Thanks a lot for help and suggestions!

    nvoigt Thanks a lot for help and suggestions!
  5. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    this is what i meant, but didn't know how to...

    this is what i meant, but didn't know how to find. This is kinda STL isn't it ?, in pure C# there is the possiblity to do own storage classes or mechanisms, aren't there ?

    What about the...
  6. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    another question about the list node class ...

    another question about the list node class



    class ListNode
    {
    public int data;
    public ListNode next;
    };
  7. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    Hello! Do you mean stuff like this ...

    Hello!



    Do you mean stuff like this


    G:\coding\cs\linked_list\bin\Debug>linkedlist

    Unbehandelte Ausnahme: System.FormatException: Die Eingabezeichenfolge hat das f
  8. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    Hi all, i've found something that is well...

    Hi all,

    i've found something that is well described and commented.
    for interested go here:
    http://csharpcomputing.com/Tutorials/Lesson9.htm
  9. Thread: Linked list

    by marsface
    Replies
    8
    Views
    2,258

    Linked list

    Hello,
    do somebody have an clear and easy to understand example of how to release a simple linked list with CS.

    i mean the eqivalent to a c example.


    typedef struct _myListNode
    {
    ...
  10. Thread: Reading File

    by marsface
    Replies
    5
    Views
    1,743

    hello, in fact the typecast errors disappeared...

    hello,

    in fact the typecast errors disappeared with this version.
    i've posted the previous message while i was changing
    the fs.Read .... line.




    private void m_Open_Click(object sender,...
  11. Thread: Reading File

    by marsface
    Replies
    5
    Views
    1,743

    i've tested this code: . . private...

    i've tested this code:


    .
    .

    private byte[] fileMem;
    .
    .
  12. Thread: Reading File

    by marsface
    Replies
    5
    Views
    1,743

    nvoigti want a simple binary file. This file will...

    nvoigti want a simple binary file. This file will then be identified by some tags and headers.
    Example:
    0000000000E00000 ..... upto 4MB filledup with data.

    This file would tell me then that i...
  13. Thread: Reading File

    by marsface
    Replies
    5
    Views
    1,743

    Reading File

    Hi all,

    i'm working with Borland C# and want to load a binary file into memory.



    private void m_Open_Click(object sender, System.EventArgs e)
    {
    if ( openFileDialog.ShowDialog() ==...
  14. Thread: Direct X ?

    by marsface
    Replies
    2
    Views
    1,409

    not the fastest, Fordy but it's worth to wait i...

    not the fastest, Fordy but it's worth to wait i think.

    Thanks for help!
  15. Thread: Direct X ?

    by marsface
    Replies
    2
    Views
    1,409

    Direct X ?

    Hello,

    i want to use an C# examples source that includes the following lines

    using Microsoft.DirectX;
    using Microsoft.DirectX.AudioVideoPlayback;

    The compiler says that this Classes aren't...
  16. MFC CEdit: Could please somebody explain this ?

    Hi all!

    while learing to code a CEdit box i encouterd something that i don't understand.

    The below code 1st pre-clears a string using ZeroMemory function.
    The TRACE statement always gives...
  17. Replies
    3
    Views
    1,701

    thanks , but i'd like to use the...

    thanks , but i'd like to use the SetWindowPlacement function instead of manipulation the CREATESTRUCT

    Meanwhile i've moved the code



    WINDOWPLACEMENT *wp;
    UINT nByte=0;
    if...
  18. Replies
    3
    Views
    1,701

    i've added some TRACE lines ... if...

    i've added some TRACE lines ...



    if (AfxGetApp()->GetProfileBinary (_T("Window"), _T("WP"), (LPBYTE *)&wp, &nByte))
    {
    TRACE("WINDOWPLACEMENT:\n");
    TRACE("Flags: %ld\n",...
  19. Replies
    3
    Views
    1,701

    MFC: Need help with WinodwPlacement

    Hi all!,

    i've generated a standard MFC application using the Wizzard under VC++6.0.

    I want to save the WINDOWPLACEMENT when the window closes and load the data when it opens.



    ...
  20. Replies
    5
    Views
    1,571

    Thanks a lot guys. It helped me much. ...

    Thanks a lot guys.
    It helped me much.

    Regards,
    Robert
  21. Replies
    5
    Views
    1,571

    Hi Fordy, but when editing something on...

    Hi Fordy,
    but when editing something on Win2000/NT/XP aren't the files saved as UNICODE text files.
    Depends the format of the text on the filename suffix ??

    I don't have a Win2000 at home. :)
    ...
  22. Replies
    5
    Views
    1,571

    non-unicode app reading unicode texts

    Hi all, :)

    i'm working on a simple script compiler that reads sort of *.ini files.
    The app is compiled on a win98 with non-unicode options.

    Is there a clean way how to recognize that someone...
  23. Replies
    3
    Views
    980

    i thought the same, ... any suggestions how make...

    i thought the same, ... any suggestions how make it
    to be a clean code ?

    -
    Robert
  24. Replies
    3
    Views
    980

    MFC: Loop within OnXYZ methods

    Hi all!,

    I want to do some operations after a button has been clicked.
    The operation needs some calls to return a true so it can be returned from this method.
    Code sample:



    void...
  25. Thread: MD5 Hash

    by marsface
    Replies
    1
    Views
    1,837

    Try this http://www.faqs.org/rfcs/rfc1321.html...

    Try this
    http://www.faqs.org/rfcs/rfc1321.html

    There is a C sourcecode at the end of the doc.

    -
    Robert
Results 1 to 25 of 49
Page 1 of 2 1 2