Software Development Network Logo
  • Windows Live
  • Smart Device
  • VS Team System
  • VS Express Editions
  • Visual J#
  • Visual C++
  • Windows Forms
  • Visual C#
  • Visual Basic
  • Visual Studio
  • SQL Server
  • Architecture
  • Visual FoxPro
  • Windows Vista
  • .NET Development

Software Development Network >> Windows Forms

Windows Forms

New Question

Is it possible to create a desktop icon using ClickOnce
Scrolling with mouse wheel beyond the selected row
setting datagridview's editing icon and glyphs manually
Combobox data retrieval errror
Default Font Size for Labels
postdata in webbrowser.navigate
Event handler and disappearing desktop icons...
addition date
[VB.NET] DataTable: Add new row at specific position
Why 2 bytes for a boolean data type?

Top Answerers

Phil Atkin
rsk7
Fredriko
TP Diffenbach
Radek Matej
hpassant
LHERMITTE
Arthur72
Javier Carvajal
bob12354
Dreamclic
Only Title

Answer Questions

  • BauNZ Uploading Books To Amazon with their WebServices?

    Hi, has anyone already programmed a book upload for the Amazon Marketplace  My goal is especially to get the Amazon batch number of the upload back because I need this number to check the processing and error state later. Myabe anyone can share some ...Show All

  • jadeice half listview half datagrid

    Been looking for a solution for a while to imitate something that I see in Microsoft products, if you could point me in the right direction (preferably in vs2003) I would really appreciate it.   The control looks/behaves like half listview and half datagrid. A sample of it can be found (among other places) in vs2005 when you have an rdlc table in design mode and you edit group – on the ‘Details Grouping’ windows that open the first ...Show All

  • jagan_unique Hide a tab Page in vs 2005 is this possible?

    In vs 2003 you had to remove a page and then readd it. In my eyes I could not see the reason of MS not providing a visible property I see that in vs2005 is still the same thing They say is by design mmm... What is it the proper way to handle the visibility of a tab page in vs2005 thanks for your help Thanks for replying. I will continue to add and remove as suggested. However when readding it will it go to th ...Show All

  • pgorbas .NET application crashes until it is moved to another directory

    Hello I have a very strange behaving: I have a compiled .NET application which uses System.Windows.Forms and some dlls which I have written. All dlls are pure managed code dlls. I work with .NET Framework 1.1 and Visual Studio .Net 2003 on a platform with Windows XP professional SP 2. When I start the application in its Debug folder It crashes when I close its main window. In the Folder Debug thre is only my application (MyApp.exe). The ass ...Show All

  • NatalieE Windows Forms Inheritance Bug ?

    I have a 3 level inheritance. class Level1 : System.Windows.Forms {} class Level2: Level1{} class Level3 : Level2 {} in the load event from Level1 I call a overidable method, that in Level2 is override and in this I make some initialization for information on the form, DataBinding and one SqlDataAdapter, but when I whant to see the designer for the Level3 the designer show me errors, why If this a problem in my whay of programming or ...Show All

  • 78Spit1500Fed MDI child call parent variable/object

    Can MDI child call back parent variable or any object e.g. - frmParent -Public String conn = "abc.mdb"; - frmChild - Public String test = "demo"; - frmChildTest - how can we frmParent.conn - and can we call frmChild.test , too the issue i would like to call parent variable, It would like to create the database connection in parent , so each child only need to call parent connection, and dont need to recreate on each ...Show All

  • AnObject How can i change app.config after deployment?

    Hello, i'm deploying my application using ClickOnce. After deploying it i change a connectionstring manually in app.config in the deployed directory. But my application seems not to use that changed connectionstring. When i'm doing just a release build, it works! I can change the string after building an after restarting the application the new string is used. Can please anyone give me a hint regards Oliver I ...Show All

  • TKD BLK BELT DataGrid and columns sizing

    Hi: I have a DataGrid with 6 columns. The problem is that after dthe binding, all the columns appear very small and I have to double click between each one to expand them. I have tried lots of things to expand them, but it desn't work ...Show All

  • mazen44 How to build a group-filter, based on multiple ListBox ?

    Hello, I would like to filter a DataView, based on multiple listboxes, just like "Itunes" does. It does work when i have consecutive selections, but when nothing is selected between two listboxes, the filter goes crazy. I have made arrays that contains fields & control names, for easier upgrade. it resumes like this : - if string not empty then add - ColumnName + " Like '" + SelectedValue + "' AND " ............................. ...Show All

  • thangbq .Net 2.0 WebBrowser Control DesignMode = "On"

    Has anyone been able to get WebBrowser1.DesignMode = "On" to work with the .net 2.0 WebBrowser Control Usally this is a wrapper around the mshtml control. Like the following, but I couldn't find a solution with the .Net 2.0 Webbrowser control. doc = WebBrowser1.Document doc.DesignMode = "On" Cheers, Patrick It's been a few days without any replies, are there other people looking for this solutions as well If so lets start talkin ...Show All

  • HA.w.K How do I : Set a Bound Combobox to a different value other than the first item.

    How do I : Set a Bound Combobox to a different value other than the first item I am using VS2005 RTM. The ComboBox is bound using a Custom Business Object (Messages). I would normally use BindingSource.Find(), but I can not use BindingSource because of a problem in BindingSurce I posted yesterday in this news group. See (BindingSource CurrentChanged Event fires 4 times on startup Why ). I have the ComboBox bound in code like this: C ...Show All

  • ruchigup Communication between Pocket PC and Web Server with SSL

    I need use SSL to show my Secure Web Site on a Pocket PC without any interrupted message form. I put one root self sign certificate on Web Server and with the AddRootCert Program I install the same on Pocket PC. But when I try to show ...Show All

  • sakotze How to Force Push/Pull on Bound Data Source

    How can I force my form to re-read fields from the bound object In my case, I have a form that uses simple binding to bind to properties on an object.  I'm using the Format/Parse events to manage data flow in/out of the object.   ...Show All

  • BobbyRayudu83 How to set Format of a TextBox?

    Hi, I want to display '0001' on a TextBox. I can display on a DataGridVIew like this: this.DataGridView1.Columns["Number"].DefaultCellStyle.Format = "0000"; But I can't display the same on a TextBox. How Thanks. maskedTextBox1.Mask = "0000"; use a masked textbox http://msdn2.microsoft.com/en-us/library/system.windows.forms.maskedtextbox(VS.80).aspx ...Show All

  • Kulwant Dhaliwal Caching in Windows Forms

    I am looking to build an N-tier application portable to both Windows and ASP.NET, but need to come up with a caching strategy for the data. I'm considering either a caching provider, or a provider to deliver the components that need to be cached (so we can integrate caching into its code), but before I make a decision on the direction, I am wondering if Windows has a caching engine similar to that of System.Web.Caching. Any ideas ...Show All

777879808182838485868788899091929394

©2008 Software Development Network

powered by phorum