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

Search:

Type: Posts; User: Millig

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    874

    Re: Toggle and numeric component for .net

    Checkbox and RadioButton give the toggle effect. NumericUpDown is a numeric control. What more do you need?
  2. Replies
    1
    Views
    1,518

    Re: Reading Data from Grid of Another Process

    I am not sure about this but I would look at the System.Reflection namespace in the first instance. That is a way to find out what information is contained in classes, and a controls are just a...
  3. Thread: DataGdirView

    by Millig
    Replies
    1
    Views
    1,057

    Re: DataGdirView

    Can't say that I have ever heard of this one before. The text entry takes place in the textbox i.e. the key presses are captured by the textbox. So I assume the textbox is also responding to the...
  4. Thread: SQL in vb.net

    by Millig
    Replies
    1
    Views
    1,064

    Re: SQL in vb.net

    As well as making your data easy to read, you will need to make your questions easier to understand. The Access database format is considered a perfectly acceptable way to display data. Why would you...
  5. Replies
    1
    Views
    1,772

    Re: DataGridView Total

    Your attached image is not at all helpful. What do you mean by 'add to the total at the end of each column'? You can get the column totals using the SQL SUM() function.
  6. Replies
    1
    Views
    988

    Re: Auto sizing forms

    If you obtain the Graphics object from the PaintEventArgs, it use the method MeasureString() to return the size of a string. The method call takes as parameters the text, and the font.
  7. Re: .NET libraries that allow "interact" with windows

    I was wondering which .NET libraries could I use if I need an apliccation to run while windows is using other programs.

    All of them! Windows is a multi-tasking operating system.

    You don't make...
  8. Thread: GetPoint Method

    by Millig
    Replies
    2
    Views
    6,538

    Re: GetPoint Method

    Because the getpoint method has to wait for the user to pick a point!
  9. Re: List Directory and Files inside a TreeView

    Your second version doesn't pick up the files in each directory. Add the following method:

    void AddFiles(TreeNode dNode, DirectoryInfo Di)
    {
    FileInfo[] fis =...
  10. Thread: GetPoint Method

    by Millig
    Replies
    2
    Views
    6,538

    GetPoint Method

    A common feature of cad programs is a getpoint() function. The getpoint() function prompts the user to pick a point which is the return value of the function. I am trying to implement the very same...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured