Re: Problem with showing Windows Form ??? Programming Software Development by destruct0 WindowsForm windowsForm = new WindowsForm(); windowsForm.Show(); It shown for a moment after that the form closes itself. Work with word document in windowsform Programming Software Development by johmolan I have a windowsform where I have a listbox who displays all the pdf … Creating a Class Library Programming Software Development by sonia sardana …-Build ClassLibrary. RUNNING A DLL FILE— 1)Project-->Add WindowsFormRename it to Yogesh 2) Server Explorer-->Right Click… Updating and writing to Access Database in C# Programming Software Development by RemyDk … tabelen igennem. //"Console" som skal byttes ud med Windowsform!. while (oleDataReader.Read()) { // Søge funktionen "Søgeord"… Datagridview to Database table Programming Software Development by sharsha Hello all, I have a datagridview in my windowsform applicataion, The user enters the data in the datagridview columns(Comboboxcolumn,textboxcolumn), on the click of a button ,I want to store the data in the datagridview to my Database table. Thanks a lot for the help in advance.. sharsha Design Report using ReportViewer Wizard in Visual Studio 2005 Programming Software Development by S2009 … the reportViewer control. I have added the ReportViewer control to WindowsForm from the toolbox. From the smart tag I, I selected… Working with progressbar while updating another control. Programming Software Development by ddanbe … and experiment by commenting out the Refresh. Start a new WindowsForm project. From the toolbox, add a Label, ProgressBar and Button… Best way to display and edit a matrix. Programming Software Development by Dragonator … necessary. What is the best way to represent in a WindowsForm a mathematical matrix? Is there a way to draw/display… printing problem Programming Software Development by johmolan I have a windowsform, on that form I have put a panel. on this … To Retrieve particular datas from sql column into RichtextBox using C# Code Programming Software Development by Anonymous3 Hi, Im trying to retrieve some particular datas from SQL column into RichTextBox in WindowsForm. Im Getting only whole SQL column from SQL Table. If u know the answer, Kindly post. Thanks in advance cannot convert from 'string' to 'int' help. Programming Software Development by summey … like add, subtract, etc... this is the button for my windowsform app that connects to the webservice it has 2 text… use a sql query in c# Programming Software Development by I make a WindowsForm application on visual studio in C# I could connect to my database on sql server but I do not know how to add data in my database from my application in c# How to lock a textbox to a cell? Programming Software Development by johmolan Hi, I have a windowsform in visual studio 2008, I connect to a ms sql-… Read xml into Datagridview Programming Software Development by npmiller …> </Deflections> </DEFLECTIONS_TABLE> I made my windowsform and put a datagridview inside called deflection_datagrid. Dim filepath As… Copy Control Values in an Array() Programming by DobyMoby Hello, My question is not so simple: I have a WindowsForm with a diffrent controls like: textboxes, comboboxes, checkboxes, datetimepickers, listview … How to disable sound on KeyDown event Programming Software Development by SoftBa Hi, I'm using WindowsForm and I want to pass throu all textboxes with Enter (… Re: Problem with showing Windows Form ??? Programming Software Development by yash_shukla hey i think u should try changing the objecy name instead of WindowsForm windowsForm = new WindowsForm(); windowsForm.Show(); should write WindowsForm win = new WindowsForm(); win.Show(); Re: Problem with showing Windows Form ??? Programming Software Development by Momerath [QUOTE=destruct0;1628130]WindowsForm windowsForm = new WindowsForm(); windowsForm.Show(); It shown for a moment after that the form closes itself.[/QUOTE] Provide the whole method that is in. I suspect the method ends right after the Show, which makes the variable windowsForm go out of scope, which closes the window. Re: GUI for C++ Program Programming Software Development by triumphost … it. start a new project, give it a name.. choose WindowsForm Application.. it will set up a default looking form where… Re: Problem with showing Windows Form ??? Programming Software Development by ddanbe Explain: What type is a [B]WindowsForm[/B]? When I use a form it is normally derived from the Form class. A class that lives in the System.Windows.Forms namespace. Re: Problem with showing Windows Form ??? Programming Software Development by Mitja Bonca This doesnt make any difference. Do you have any other code maybe, which would intentioanlly close your "WindowsForm"? There`s got to be something, because form can close just by it self. Please double check whole code!! Re: Help with creating a form application? Programming Software Development by ddanbe To elaborate on what thines01 already mentioned: Start a new windowsform application. In the designer, drop a TextBox and set the … Re: Starting a second message loop on a single thread is not valid operation Programming Software Development by caKus … : In the main thread, I want to start a new WindowsForm : Thread t = new Thread(StartMyForm); t.TrySetApartmentState(ApartmentState.STA); t… Re: Calendar Control? Programming by JOSheaIV So I did some quick Googling real quick, from what I can tell, the Calender control is designed for System.Web.UI, not System.Windows.Form which is what you'd be using for a Windows Form design. It looks like, the MonthCalender is the WindowsForm equivalent of the Calender Can't open new WindowsForm Programming Software Development by msr Hello, Im trying to open a new windows form by clicking in a menustrip item. Its not the first time I make that but now it doesn't work and I dont know why. Here it is the code I have: [CODE] private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { AboutBox about = new AboutBox(); about.Show… Re: Can't open new WindowsForm Programming Software Development by jatin24 Check the code of HelpBox.cs. Im assuming that the name of the partial class inside that file may not be matching with the filename - HelpBox.cs. Maybe the name of the form was changed after it was initially created but the class name was not changed. Re: Can't open new WindowsForm Programming Software Development by msr Thanks Jatin. I didnt remember that I had changed "default namespace" in project options so every new windows forms was created with the wrong namespace. Now its working! SOLVED Re: Creating a Class Library Programming Software Development by Ramy Mahrous Dim xyz AS new ClassLibrary.Assembly xyz.Add(your parameters...) I am not VB programmer; syntax may be wrong.. Re: Creating a Class Library Programming Software Development by Ramy Mahrous You may need Imports ClassLibrary.Assembly Re: Creating a Class Library Programming Software Development by Narue >I also do not know what to write on the click event of the button. It's kind of hard to tell you what to write when I have no idea what you want the form to do. :icon_rolleyes: