Skip to content

Windows Forms

Desktop and Windows Forms development

This category can be followed from the open social web via the handle windows-forms@forum.codeproject.com

2.1k Topics 7.1k Posts
  • 0 Votes
    3 Posts
    2 Views
    G
    Thank you.
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    1 Posts
    2 Views
    No one has replied
  • How to get 1st date of a month

    question tutorial
    2
    0 Votes
    2 Posts
    2 Views
    C
    Are you programming Excel, or entering stuff into it ? Windows Forms means the .NET Framework windowing classes, it doesn't relate to Office. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
  • Bright Future for Winforms?

    csharp question wpf winforms
    5
    0 Votes
    5 Posts
    4 Views
    S
    Windows Forms will be around for a long time, since it is an integral part of the .NET Framework. That being said, there are no new innovations planned for the WinForms technology as the new, preferred UI platform is WPF. The drawback to WPF right now is that the tools aren't available yet to make development as easy as it is for WinForms. The other concern for WPF is that it isn't yet applicable to every application. There are some things that are just better done in WinForms right now. The best approach is to separate the business logic and the UI as much as possible. This will allow you to gradually migrate to WPF from WinForms when it makes sense. Also, you can combine WinForms and WPF in the same application, with a few technical limitations on the interop. ----------------------------- In just two days, tomorrow will be yesterday.
  • clickOnce

    help csharp dotnet workspace
    2
    0 Votes
    2 Posts
    2 Views
    H
    Hi tantoun. To me it now looks like You want to install your application to your clients without having to install this component that you've bought. My question to you is: Will your clients be able to run your application without this component? If not I think that you just have to figure a way to install this component (a dll I guess) in your clients gac. Cheers Harry. HarryS - Norway Developer/Referee
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • While loop

    c++ performance help tutorial question
    4
    0 Votes
    4 Posts
    3 Views
    M
    I wud suggest you to put it on different thread itself
  • 0 Votes
    3 Posts
    4 Views
    L
    Hi my be I can imagine you database Schema !! assume that you have a table like this Table Name = Table1 Table Fields Name | Age | Home ---------------------------- stark | 25 | MyHome sonya | 21 | HerHome if you want to delete "stark , 25 , MyHome" then you have to write an Sql Query like this Delete from Table1 Where Name = 'Stark' and Age = '25' And Home = 'MyHome' P.S the best Schema for your table should be , like this ID | Name | Age | Home ---------------------------- 1 | stark | 25 | MyHome 2 | sonya | 21 | HerHome then your query will be like this Delete from Table1 Where ID = '1' hope this will help .... if my answer was going far from you Question .. Just let me know , I still have more ideas to help you Have Good day I know nothing , I know nothing
  • Textbox

    question debugging help
    3
    0 Votes
    3 Posts
    3 Views
    M
    Also make sure that you set your textbox to multiline.
  • How to get parent MenuItems to respond to Click event?

    com tutorial question
    2
    0 Votes
    2 Posts
    2 Views
    C
    Rick Bidlack wrote: Has anyone found a way to override this? This is not an override, but a well documented API: The following events may be of interest: * DropDownOpened * DropDownOpening * DropDownClosed * DropDownItemClicked Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... * Reading: Developer Day 5 Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton My website
  • Data Binding in List and Detail Combination

    wpf wcf tutorial
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Debug a perocess

    debugging json tutorial question
    2
    0 Votes
    2 Posts
    2 Views
    O
    http://www.microsoft.com/technet/sysinternals/default.mspx[^] This is a range of utilities for monitoring stuff like file system access. It's a very handy toolkit and I highly recommend it :)
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • How to scroll two listbox together in c# ?

    csharp tutorial question
    4
    0 Votes
    4 Posts
    4 Views
    S
    Thanks Will try this :) There are 10 types of people in the world, those who understand binary and those who dont.
  • form designer view is not opening

    help
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • movin text

    winforms question
    4
    0 Votes
    4 Posts
    3 Views
    C
    Create a class derived from the label class, and have it modify the string it displays, based on a timer. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
  • Form1 to Form2

    csharp winforms tutorial
    4
    0 Votes
    4 Posts
    2 Views
    C
    You can call Hide() to hide the visible form, and then show form2 using ShowDialog() if you want a modal form ( I presume you do, why would you want a modeless form attached to an invisible form ? ) A better approach is to define both forms as user controls and put them on the one form, and just swap which one is visible. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
  • Windows Background when 'Lock Computer'

    sysadmin help tutorial question
    3
    0 Votes
    3 Posts
    4 Views
    P
    I've been looking at screensavers, but need an application that only looks at local computer files and links set by admin rights only. The application can not have any option to connect to the internet or intranet as this causes security issues.