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

Search:

Type: Posts; User: k_nenad

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    1,387

    Re: DefaultView.Sort is resetting

    The problem was that in the designer window, when I previously set the Sort property of the BindingSource to some value, and then later I deleted it, the designer was initializing it's value to an...
  2. Replies
    1
    Views
    1,387

    [RESOLVED] DefaultView.Sort is resetting

    Hi all,

    I need help with this code:


    DataAdapter1.Fill(DataSet1);
    DataSet1.Tables[0].DefaultView.Sort = "sortcolumn";
    BindingSource1.DataSource = DataSet1.Tables[0].DefaultView;

    After...
  3. Re: [RESOLVED] WINAPI FindFirstFile & FindNextFile problem

    Here is a sample app:




    using System;
    using System.IO;
    using System.Collections.Generic;

    namespace DirectoryList
  4. Re: [RESOLVED] WINAPI FindFirstFile & FindNextFile problem

    Yes, but it's much slower, especially if I use FileInfo.Length.
  5. Re: WINAPI FindFirstFile & FindNextFile problem

    The problem is solved by adding:

    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]

    before

    struct WIN32_FIND_DATA

    Thanks
  6. [RESOLVED] WINAPI FindFirstFile & FindNextFile problem

    Hi all,

    I'm trying to get the list of files in a directory using WINAPI functions FindFirstFile and FindNextFile.
    The problem is that WIN32_FIND_DATA.cFileName returns only the first character of...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured