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

Search:

Type: Posts; User: imperialguy

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    4,954

    Sort items in UltimateListCtrl

    I want to create an ultimate list ctrl based table where the user can sort the columns by clicking on the column header. Here's the code I attempted:


    import wx
    import wx.lib.mixins.listctrl as...
  2. Replies
    0
    Views
    4,149

    Limit the size of wxListCtrl in wxpython

    I want to limit the size of a list control box. Let us take the following code:

    import wx

    class Students(wx.Frame):
    def __init__(self, parent, id, title):
    ...
  3. Re: Creating directory and writing files in that directory ?

    I used the following code in VC++ (mS visual studio 2005):

    #include "stdafx.h"
    #include <windows.h>
    #include <sys/stat.h>
    void main()
    {
    FILE *fp;
    mkdir("c:/sample", 0777);...
  4. Creating directory and writing files in that directory ?

    whenever, i try to open a file for writing using fopen("xyz.txt", "w"), i am able to create the file only in default C:\ drive. i want to create a directory in the process of running the c code and...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured