Software Development Network Logo
  • .NET Development
  • Visual FoxPro
  • Visual Basic
  • Windows Forms
  • Microsoft ISV
  • Windows Vista
  • SQL Server
  • Audio and Video
  • SharePoint Products
  • VS Team System
  • Visual Studio
  • Visual C#
  • Visual C++
  • Smart Devicet
  • IE Development

Software Development Network >> Windows Forms

Windows Forms

New Question

Closing child modal form after calculations in parent form is complete
Newbie question: Common Binding Sources for several Forms?
pack my program with visual studio 2005
ProgressBar
how can i change the source code of a webpage with webbrowser control??
Adding a check box to a datagrid
Step by step instruction. Open Form2 from Button on form1 C#
Maximum number of controls on a form
3rd party dll not in global assembly cache
Adding a custom icon to a form, next to minimize, maximize and close in top right

Top Answerers

okiebugmv
osama.jasser
Pockey
Peter Eriksson
Rabtok
Phil Nicholas
l Bllizzd l
maderito
AravindaBV
hoobler
JDOM
Only Title

Answer Questions

  • Dewald Viljoen ClickOnce Auth. Proxy - Many Questions?

    When deploying clickonce install/update from the web, what is the strategy for client machines that are configured to use an authenticated proxy Are there Microsoft sanctioned methods for writing proxy settings to the .net 2.0 machine.config that a setup or msi could utilize to configure an end-user’s machine for clickonce via auth. proxy Could the same process be used by a network admin via policy updates to configure their networked client machines Is there a combined web/net share deployment approach that might workaround this issue What are the plans to change or address this issue in upcoming service packs or releases How soon ...Show All

  • Arnaud MIGEON Datagrid View

    Hello- If I write the following code to omit threading, the datagrid view will display the grid; but the code as shown below won't show the grid except occasionally if stepping through the program. I know the data is there in the DataSource member of the datagrid object of acctSummGridView. Would someone please explain what's going on... Ruel namespace ClntMgmt { public partial class frmAcctSumm : Form { private ArrayList dbRecordsHolder; public frmAcctSumm() { InitializeComponent(); dbRecordsHolder = new ArrayList (); } private void btnAcctSumm_Click( object sender, EventArgs e ) { // create and setup the SqlConnection object string connectionStrin ...Show All

  • Nick Gravelyn opening a form

    hi there, I would like to open a dialog menu/new form Within my main form by clicking a button. For example if I want to send a message I click a "send message" button and then a dialog box/form appears with a text box with "send" button where I can add text and click a the "send" button to send the message. I am not sure whether to create a totally new form Or inherited form Or user control I am using Visual Studio 2005 programming in C#. Also I wish to hold down the touch pad pen on the screen to enable a menu where I can select certain options, what menu is this known as and how can I program this Does Visual Studio have this menu in its Toolbox Help Thanks. Kin Im not sure how to ...Show All

  • A1Programmer Problem with animated Gif in Richtextbox control

    With chat application, it's normal to display animated emoticons inside the chat message. I am using richtextbox control for user to enter their chat message. This chat also provide users with emoticons list, where they can pick any emoticons available. Once they click on one of the emoticons, it will be copied (using clipboard) and pasted on the richtextbox at the position of the caret. Everything is fine up to here. There are two problems that bugged me for 3 days without any solution. 1) Pasted image in the richtextbox is not animated (only still image pasted) 2) Pasted image is not transparent despite property of the PictureBox has been set to Transparent or even Color.White. Here is the code i am using: private void pictureBoxPic1_ ...Show All

  • Maranello publish to all users

    Hi!! When i have publish a application, and then install this on a Pc. then my application is only install under the current user, so when a new user come to this Pc the new user must also install my application, is there a way to say thist the application shall install under all users sorry my bad english regards alvin Thanks Brendan Is there a way in Studio where i can build a msi file regards Alvin If you are running Visual Studio 2005 Standard Edition or higher (not Express) you can click on the File menu, and then choose New, and then Project. From the New Project window that has been displayed, under the Other Project Types item, select the Setup and Deployments option. You will now ...Show All

  • Daffodils UpdateCommand, query and databinding...

    Hi all, could you kindly explain me the differences between the two following queries *1*) UPDATE `TabellaEsp` SET `IDPersona` = , `IDMisura` = , `Tempo` = , `ID_Tabella` = WHERE ((`IDEsp` = ) AND (( = 1 AND `IDPersona` IS NULL) OR (`IDPersona` = )) AND (( = 1 AND `IDMisura` IS NULL) OR (`IDMisura` = )) AND (( = 1 AND `Tempo` IS NULL) OR (`Tempo` = )) AND (( = 1 AND `ID_Tabella` IS NULL) OR (`ID_Tabella` = ))) *2*) UPDATE `TabellaEsp` SET `IDPersona` = , `IDMisura` = , `Tempo` = , `ID_Tabella` = WHERE (`IDEsp` = ) I developed a VB 2005 application that uses an Access (.mdb) database. Sometimes I got the following error message: "Concurrency violation: the UpdateCommand affected 0 of the expected 1 records." So, I modified by mys ...Show All

  • Mr. Howe datagridview cell focus and reset datagridview

    Hi, How do I do to the "cell focus" don’t pass to the next row when I press <enter> in a unbound datagrindview Insert or edit row I would like that "cell focus" stay on the same row that I Insert or Edit ! and... How I reset the unbound DatagridView I have a "New Button" on my form and I need to clean the datagridview, but I don’t know how do that Thanks This thread is off topic for the Visual Basic General forum, moving to Windows Forms General. ...Show All

  • Magnus M&amp;#252;ller anyone no how to sort the extension type column and group

    can some one help me out binding a dir info object to my data grid i have built a homemade directory browser and i need to get it in my grid and sort all colums even file type thanks if you can help You can create DataTable and add the data you want to it and then bind the data table to the grid some thing like the following DirectoryInfo df = new DirectoryInfo ( Environment .CurrentDirectory); DataTable dtFileInfo = new DataTable (); //Create the headers dtFileInfo.Columns.Add( "Name" ); dtFileInfo.Columns.Add( "Extension" ); //add more columns if you want foreach ( FileInfo f in df.GetFiles()) { DataRow drFile = dtFileInfo.NewRow(); drFile[ "Na ...Show All

  • MuscleHead Multi thread

    Hi, I have a while loop which keeps showing words in a label on a Form. I can still do events with the Application.DoEvents(). But the while loop contains 2 thread.sleep(). Which makes it slowing down in handling events. Its getting stuck for 5 seconds in total. I thought i might solve this problem by using multi threads. Once the first thread starts which contains the while loop, it should start a second thead that contains the Application.DoEvents() and not slowing it down anymore. Can this be done like how i described it Or does anyone has a better solution I'm all ears, thanks in advance! avoid using Application.DoEvents() as it can cause some unpredicted results. Try using label.Update() instead an ...Show All

  • wasimf Automatic Event Handler creation when clicking on controls in designer.

    Is there a way to disable the automatic creation of event handlers generated from clicking on the design surface This feature seems very buggy in VS 2005 SP1. I am clicking through several controls on a form and the designer keeps generating event handlers that I don't want it to. The handlers are being created when I am SINGLE clicking on controls which makes it very frustrating to try and select anything on the form. Thanks, Daniel http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=220437&SiteID=1 I think your problem is related to this thread.  There doesn't seem to be any solution yet. ...Show All

  • ooboyle Setup Project: Execute vsi file inside the msi

    I assume the title says it all but anyway; I am creating a setup project and adds my exe's and dll's to that project. I now want that, as part of the installation, a vsi file should be executed. How do I indicate that in the setup project Niels Thanks!! Niels Would it be possible for me to get this information as well I am trying to setup a way to manage custom code snippets and install them via a .vsi file within one of my projects when the framework is deployed to developers workstations. Yes, please share this information. I can create Item Templates and package them within a .vsi file, but my templates use custom Wizard extentions. My Wizard dll needs to be i ...Show All

  • Wedgetail Want Treeview tooltip to act like in vs.net

    I want the vs.net's solution explorer tool tip behavior. The one where the tooltip only appears if the item has text longer then is visible, and if so, the tooltip appears ontop of the node in order to show you whats not visible... I'm trying various unmanaged-dllimport-sendmessage and managed methods to do this but so far got nowhere. Umm... you know... the solution explorer tree from VS is actually a system tree view just like the TreeView. I suspect that you have set the ShowNodeToolTips property of the TreeView to true. If you set it to false you'll get the same behavior that solution explorer has. Ya that works... turns out i was doing some wndproc ncpaint drawin ...Show All

  • blanc0 Stretch font horizontally in Visual C# (Frame work 2.0)

    I need to stretch a character width in rich text box in Frame work version 2.0. Thanks in Advance Charles pratheepan Hi, I am not sure this is possible. If this the best place will be to look at Specs for RichText http://www.biblioscape.com/rtf15_spec.htm#Heading42 , but from what I can see this is not possible. I would look at potential third party components. Worth maybe looking at www.componentsource.com for a third party component. James The same feature is available in .net framework 3.0 that is Font has stretch property. Is there any way to do the same in framework 2.0 without using any third party tools I tried converting the character to bitmap and stretched and paste it in r ...Show All

  • Jason D. Camp Tab Control problem

    Hi, I have a really interesting problem with tab control. I have a tabcontrol with allignment set to Bottom. All the tab pages are added programatically. If the tab pages are few then everything is fine. I get the left right buttons when I resize the form. When I have many tab pages, I don't get any left right buttons to scroll to the hidden tab pages. It looks really bad. I have not been able to find out what I am doing wrong. Can some one suggest a solution I am sure it just a small problem that I am not able to figure out. Thanks! Please post Windows Forms related questions in the Windows Forms forum. Please reserve the .NET BCL forum for questions related to the core .NET library ( ...Show All

  • AlbinCN Installing pre-requisites using low-level users (2005)

    Hi all We have some pre-requisites on some of our apps (.Net Framework, Crystal Reports), however the users do not have permissions to install these pre-requisistes on their machines and it fails when they try and install the app. Is there any way around this Thanks Kev I'm receiving the same error but at this site we do not have SMS...Is there another workaround using Click Once Raul I thought that might be the way, we do have a solution that does that in the organisation, so I'll use that. Thanks Kev The way to do that is to use a push solution that can elevate or bless installs like Active Directory or SMS. These tools hav ...Show All

5678910111213141516171819202122

©2008 Software Development Network

powered by phorum