Search:

Type: Posts; User: Dahwan

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    11,236

    This is how i open files! A good piece of code. ...

    This is how i open files! A good piece of code.



    public void LoadMyFile()
    {
    // Create an OpenFileDialog to request a file to open.
    OpenFileDialog openFile1 = new OpenFileDialog();
    //...
  2. Replies
    4
    Views
    1,745

    For that you'll probably need to make the popup...

    For that you'll probably need to make the popup dialog yourself.
    Here it pops up up a window, and you can freely choose between the windows.



    using System;
    using System.Drawing;
    using...
  3. Replies
    5
    Views
    10,345

    Just have a normal textbox that supports...

    Just have a normal textbox that supports multilines.



    textBox1.MultiLine = true;

    foreach(string str in StringArray) textBox1.Text += str + System.Environment.NewLine;


    If the number of...
Results 1 to 3 of 3