User Profile

Collapse

Profile Sidebar

Collapse
complete
complete
Last Activity: Jul 4 '10, 12:27 AM
Joined: Aug 12 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • complete
    started a topic Visio Line Question

    Visio Line Question

    Visio Line Question
    -------------------

    How do you create a long curvy seamless line in Visio?

    Whenever I draw a line it seems to have only the ability to connect objects and that is all.

    What f I want to draw a loop that starts from one object and then swoops over the top of another object to make a 300 degree arc?

    I have tried this with lines drawn end-to-end. How do I merge the...
    See more | Go to post

  • complete
    started a topic How do you add system Icon to a WPF App?

    How do you add system Icon to a WPF App?

    How do you add system Icon to a WPF App?

    I have an icon made already. How do I add it to the app so that it will represent the application on the desktop, in the minimize system bar, etc..
    See more | Go to post

  • How do you make one line bold in a TreeView Class in WPF/C#?

    How do you make one line bold in a TreeView Class in WPF/C#?

    I mean, how do you make just one line in a Tree View bold at runtime?
    See more | Go to post

  • What is the name of the Windows System Menu button?

    What is the name of the Windows System Menu button?

    I am talking about the round glass-orb looking object (on a Windows 7 operating system) that appears in the lower left of the screen -- usually -- that you can click on to see the menu selection of programs on your compter.
    See more | Go to post
    Last edited by Niheel; May 31 '10, 09:02 PM. Reason: spelling fix

  • complete
    started a topic How do I work with WIndows Forms in WPF?

    How do I work with WIndows Forms in WPF?

    In my WPF program I created a Windows Form class.
    In this Form, I placed an OK button and I went into the properties of the button and set the DialogResult to OK.
    Now, I am calling this Dialog (Window Form) from the MainWindow.xaml .cs:
    Code:
                            dres = form.ShowDialog();
                            if (dres != DialogResult.OK) return;
    The compiler is complaining:

    Code:
    Error	3
    ...
    See more | Go to post

  • It had to do with screen resolution.
    I found "Snap To Pixel" commnds that worked
    See more | Go to post

    Leave a comment:


  • How do you draw a line on a canvas in WPF that is 1 pixel thick?

    How do you draw a line on a canvas in WPF that is 1 pixel thick?

    This is the method I am using for drawing a line on a canvas in WPF that uses the line class set to 1 pixel thick but it actually draws a line that is two pixels thick:

    Code:
                Line myLine = new Line();
    
                myLine.Stroke = System.Windows.Media.Brushes.Black;
    
                myLine.X1 = 100;
    ...
    See more | Go to post

  • complete
    started a topic Declaring an array of linked list in C#

    Declaring an array of linked list in C#

    Declaring an array of linked list in C#

    How do I declare an array of some class in C#? I wonder if it is even allowed or possible.

    I got the compile error message "Array size cannot be specified in a variable declaration (try initializing with a 'new' expression)" when I tried to declare an array of linked lists.

    public LinkedList<Leve lNode>[2] ExistingXMLList ;

    Also, if...
    See more | Go to post

  • complete
    started a topic Using set and get in C Sharp

    Using set and get in C Sharp

    What is the point of using set and get in C Sharp?
    It seems variables are used differently in this language than in C++.
    For some reason, you have to have a static variable defined like this:
    Code:
    public static uint Somenum
    {
       set { m_somenum = value; }
       get { return m_somenum; }
    }
    and prior to this declaration, you need to have this:
    public uint m_sumenum;
    This seems to be the...
    See more | Go to post

  • complete
    replied to C# dll
    in .NET
    I have done a few things. I have created a console app to use as the front-end to the project. Then I have added the DLL as a reference like this:

    1) In the Solution Explorer right-click "References " and select "Add Reference ...".

    2) Select the "Browse" tab.

    3) Navigate to the DLL and select it.

    4) Add the appropriate using directive to the code file(s) where...
    See more | Go to post

    Leave a comment:


  • complete
    started a topic C# dll
    in .NET

    C# dll

    After someone creates a DLL in C# using the Microsoft Visual development environment, how would another programmer take that code, make a new project that includes the DLL's source and make a GUI that uses the DLL'S API?
    See more | Go to post
No activity results to display
Show More
Working...