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

Software Development Network >> Windows Forms

Windows Forms

New Question

oledb and datagridview help needed![URGENT]
Web Server in Domain, Non-Domain Users
form method Show()
How to change a disabled textbox's forecolor?
Disable design time support for child controls
Help! Renew Self-Generated Certificate???
Appending textbox outside of Form Class
date & time difference
Web Service
How to Remove ListItem from a ListBox

Top Answerers

Suthy67
wwwxwww
Robert A. Swirsky
Muhammad Essa
hazz
Nadav Popplewell
kingmissel
Uturn
JimGecko
Jeff_LIU
sitemap
Only Title

Answer Questions

  • ramgarge Any help to create 'Today Is' Calendar Control ??

    Hi I have started lately work on a calendar control to be added to my WinForms 2.0 Application ! But I want this control to be in " Day Number View Style " like this one : Take a look about this TodayIs Gadget : http://livegadgets.net/#sidebar Any one has any helping information or starting guide through any code samples or controls or any thing else Thanks More Mohamed Hi Many Many thanks for your useful code but can you guide me to any links that make the whole controls - If you can - but at all Many thanks Mohamed That's pretty easy to do with a UserControl. Drop a bunch of labels on it, representing the various pieces of information shown; set their AutoSize property to fa ...Show All

  • b-man Error launching Clickonce app from intranet

    I have an app which is deployed on an intranet site.  When I try to launch the <app>.application file, I get the error below.  BUT, if I do a RUNAS and run under a admin user of the webserver, the app will launch. Running framework 2.0    Windows Server 2003 Here is the error:   PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50727.42  System.Deployment.dll   : 2.0.50727.42 (RTM.050727-4200)  mscorwks.dll    : 2.0.50727.42 (RTM.050727-4200)  dfdll.dll    : 2.0.50727.42 (RTM.050727-4200)  dfshim.dll    : 2.0.50727.42 (RTM.050727-4200) SOURCES ...Show All

  • maulikk MenuStrip

    I have a c# application. I am using .net v2.0. I am using a MenuStrip and having child menus. I need to make the individual menus enabled or disables according to user priviliages. How can i do that Am a bit new to c#. I am keeping the name of each menu with the priviliages in the data base. Please help me in this. Vinu thanks Moahammad, i did that. Thanks for your help you can check about user privileges and set Enable property upon it bool bAuthorize= false ;//check user privileges here and set the result to bAutorize //now set menu enable property menuStrip1.Enabled = bAuthorize; //or for sub menu testToolStripMenuItem.Visible = bAuthorize   ...Show All

  • Larrybird02744 Cannot run the application on web

    I deployed my VB.NET on to my own website using clickonce following the normal procedures as suggested in many guides. I then tested the website. When the publish.htm page appeared, I clicked the "RUN" button, it asked whether to run or save or cancel. I chose "RUN" and it kept coming up with the content of the .Application file. This is the first time I tried to deploy the software on website. Forgive me if the question may be idiotic. Let me know if you need more information to help me solving the problem. Thanks in advance Tim, It sounds like the Mime Types are not set up correctly on your server. These two articles should help you: http://msdn2.microsoft.com/en-us ...Show All

  • ArunSingh How can I make update version for application which was signed with certificate now expired?

    If I change expired code signing certificate to new one and publish updated application, client will fail to launch. And code signing fails if I try to use expired certificate. How can I make update version for application signed with old certificate Hi David, I'm running into the same problem and I'd like to try the utility you mentioned to renew my test certificate that generate from VS 2005. I can't found it in the link you posted. Would you let me know where I get can it Appreciate for your help. Thomas If anyone else is having this same problem, please report and comment about it at the following link as this will become a major issue for people wh ...Show All

  • VOC Parent and child form problem!!

    Hi, I have two forms, FormA and FormB, and when I click a button in FormA which will brings up FormB. Right now, when FormB popup, I'm able to close FormA, but I don't want that, can anybody help me. What I want is when FormB popup I can't close or do anything to FormA unless I close FormB. Thanks in advance!! Jason This is off topic for the Visual C# General forum, moving to the Windows Forms General forum . Hi, would opening the FormB modally (with ShowDialog() method instead of Show()) achieve the result you want Andrej Hi, Thanks for the reply, it works great!! Thanks Jason ...Show All

  • nikita D. Datagridview column header color

    I want to change datagridview column header color maintaining visual style enable. Thanks. Hi Danilo80, Is there a statement "Application.EnableVisualStyles();" in your Main function The header visual style is not enabled if the application's visual style is not enabled. i'm using vs2500 and visual styles are enable. I want to change visual style color. Thanks. Hi Danilo80, Could you describe the 'visual style' in more detail Though, try this: Choose the datagridview control. Then in the 'Property' window, there is a 'ColumnHeadersDefaultCellStyle' in which you can change the color, font etc. Then I have no idea. :-( But I'll try to figur ...Show All

  • Blue_Cali hyperlink in datagridview

    I'm using a GridView in C#.Net 2005. One of the column of the GridView is Hyperlink Column. When i click the hyperlink i want some message to be displayed in another datagridview page and that should be retreived from database based on the link message. i know how to put the hyperlink to the text,but i dont konw how to retreive information based on that link. How can i achieve this Where should i write my coding Hi Shirisha, I assume you must have used DataGridViewLinkColumn to display your HyperLinks. In that case, in order to repspond to User Clicks on HyperLinks, you must handle the CellContentClick event. This event is distinct from the CellClick and CellMouseClick events, which occur when a user clicks anywhere in ...Show All

  • ariefcrawfordconnect Have a problem with Form Designer in project under the Pocket PC (Visual Studio 2005)

    Hello everyone! Can anyone help me I'm coding at C# + MS SQL Server 2005 Mobile Edition. When I'm trying to browse my form designer in Visual Studio 2005 this error become: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. DesignTimeVisible Hide at System.ComponentModel.ReflectPropertyDescriptor.SetValue(Object component, Object value) at Microsoft.CompactFramework.Design.NonMergingPropertyDescriptor.SetValue(Object component, Object val) at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializePropertiesFromResources(IDesignerSerializationMana ...Show All

  • TeresaDawn Dataset & DataGrid???

    I have a dataset that holds some data, and when i show it in the data grid i would like it to be editable, and changed in my dataset, can anyone send me a link or shed some light on how i should get this done it should be: SqlCommand scmd = new SqlCommand(str, connectionstring); this.da = new SqlDataAdapter(scmd);   as for the command builder - try SqlCommandBuilder, that is if you are not using the above approach Well it stop throwing the error but my changes dont commit....Do i need to add the AceptChanges() method to the dataset or something here is the code that gives me no results other than just showing the data in the datagrid.... private void button1_Click( object sender, System.E ...Show All

  • KimberlyL Why HitTest does not work in DragOver in DataGridView

    DataGridView: I use the following code to highlight the selected record when the dragOver event is triggered. I work properly in MouseMove event. DataGridView.HitTestInfo hit = dgvOperation.HitTest(e.X, e.Y); if (hit.Type == DataGridViewHitTestType.Cell) { MessageBox.Show(dgv.Rows[hit.RowIndex].Index.ToString()); dgvOperation.Rows[hit.RowIndex].Selected = true; } When I apply the above code in the DragOver event, I cannot get the RowIndex from the DataGridView,Why Or who got other solution to provide the same function Thanks you have to compute the location of the specified screen point into client coordinates, like so Point p = dgvOperation.PointToClient(new Point(e.X, e.Y)); Dat ...Show All

  • Brumlemann c# visual style

    I am using .net 2.0 The project has an mdi and several child forms... running win xp pro. I do not get the new visual style in .net 2.0 Any ideas please This is the code present is Program.cs static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new CodexMainForm()); } } Windows classic Is the machine running the standard blue and green (fisher price) theme or the Windows classic (Windows 2000 look) theme ...Show All

  • HSBF Lewe About a button menu

    Hi! In the toolbox theres something called "TabControl" if you choose that tool you'll get a menu with tabs, and each tab got their own page. And now here's the problem; I want to make a similar as the TabControl but instead of tabs using Buttons. So imagine i got a menu with buttons and each button got their own page. Just like this, the buttons is a menu, press one button and it shows some data: http://www.thrinker.net/button1.png and press another and it shows some other data: http://www.thrinker.net/button2.png how can i make it like that using many forms thanks! herman Herman: There are many different ways to accomplish this. Here are a few: At run time, programatically place bu ...Show All

  • fighter92 Leaky label on transparent form

    Hi, I created a form with a label on it and set the opacity property of the form to 20 (the form becomes a little transparent). The label has white background color and has text. If I click on the white background of the label, my form looses focus because the label is "leaky", the application behind my form becomes active. How can I make my label a little bit more "clickable" Hi, I figured it out, the problem was the wrong color I used, when I changed it to other - web style- color, my label became filled with color. I hope this will help other stuck with problem like this. ...Show All

  • mobigital setup project and satelitte assembly

    I have problem in build setup project. I have SomeExeProject that have referense to 3party multilanguage assembly, it placed on some net share like \\someWarehouse\3partyAssembly.dll So when i build SomeExeProject, it copy to bin folders like ru-RU/3partyAssembly.resource.dll and it works fine. But when i create setup project(SomeSetup) for SomeExeProject and add PrimaryOutput of SomeExeProject and Localized resources of SomeExeProject it not copy to msi folders ru-RU/3partyAssembly.resource.dll And so when i run SomeExe installed from SomeSetup it not work, because application can't find ru-RU/3partyAssembly.resource.dll. I can add File (ru-RU/3partyAssembly.resource.dll) because 3partyAssembly periodically changed and Setup Project i ...Show All

101112131415161718192021222324252627

©2008 Software Development Network

powered by phorum