No announcements
Found 2878500 threads
-
0 Votes
How to deactivate really a button in C# Winforms
But since the UI thread has been blocked all this time nothing has really happened until your button handler returns.Proposed | 8 Replies | 2640 Views | Created by speed780 - Saturday, July 11, 2020 11:17 AM | Last reply by Viorel_ - Monday, July 13, 2020 6:48 AM -
2 Votes
c# winforms how to change BackColor of a button
string a = DateTime.Now.ToString("MM"); // MsgBox shows "05" - correct foreach (ToolStripItem c in ...Answered | 3 Replies | 2954 Views | Created by MrigaShira - Thursday, May 31, 2012 5:05 AM | Last reply by MrigaShira - Thursday, May 31, 2012 5:57 AM -
2 Votes
content Button in WinForms
We also have to work in Winforms, it's a lot easier to do it in WPFAnswered | 4 Replies | 3880 Views | Created by phDm - Wednesday, January 20, 2010 2:21 PM | Last reply by phDm - Wednesday, January 27, 2010 1:47 PM -
0 Votes
C# WinForms shows everything disabled
It was enable, but deactivated.Answered | 7 Replies | 2755 Views | Created by NK3 - Saturday, March 19, 2016 4:47 PM | Last reply by NK3 - Tuesday, March 22, 2016 12:42 AM -
0 Votes
How to Cancel deactivating feature
Actually while deactivating feature I could Activate it if deactivation is not allowed, but I'm not sure if this will be correct, because it's pre-event.Answered | 4 Replies | 6154 Views | Created by MMykhailo - Wednesday, March 25, 2009 8:46 AM | Last reply by MMykhailo - Wednesday, March 25, 2009 2:54 PM -
0 Votes
C# Winforms How to make a custom dialog window ?
There's a solution here: http://stackoverflow.com/questions/25428072/how-to-prevent-a-dialog-from-leaving-parent-bounds See the code ...Answered | 5 Replies | 3476 Views | Created by MH58 - Tuesday, July 28, 2015 7:34 PM | Last reply by Fares amr - Wednesday, July 29, 2015 8:07 AM -
3 Votes
Factorial button (winforms)
Can you post images of how you are adding the reference ?Answered | 18 Replies | 3147 Views | Created by NSoft Studios - Wednesday, February 27, 2013 10:43 PM | Last reply by Devon_Nullman - Friday, March 1, 2013 6:13 AM -
2 Votes
Multiple Button presses / clicks - C# winforms - reentry
It really works well !Answered | 10 Replies | 38754 Views | Created by gopher_uk - Tuesday, May 27, 2008 2:58 PM | Last reply by LoopsLu - Wednesday, May 11, 2016 9:59 AM -
1 Votes
How do I deactivate an install
This is really not a good strategy !Answered | 20 Replies | 17007 Views | Created by Steve Osoba - Monday, June 28, 2010 5:55 PM | Last reply by Lori Dirks - Tuesday, October 5, 2010 7:27 PM -
0 Votes
How to print a page of stickers in C# WinForm
> How to print a page of stickers in C# WinForm What do you mean by “a page of stickers”?Answered | 1 Replies | 1980 Views | Created by E_gold - Wednesday, June 17, 2015 5:33 AM | Last reply by Edward8520 - Thursday, June 18, 2015 6:23 AM -
1 Votes
C# Winforms programming
I would suggest posting your question in the 'Windows Forms General' located ...Answered | 1 Replies | 8289 Views | Created by Iain Blackwood - Monday, August 2, 2010 11:03 AM | Last reply by SachinW - Monday, August 2, 2010 1:38 PM -
0 Votes
Deactivate a Feature
Thus, you might want to manually deactivate the features, or create OM code to do the deactivation (and probably call the OM code from FeatureUninstalling event).Answered | 4 Replies | 15041 Views | Created by Sreenivas Gudipati - Friday, August 1, 2008 6:57 PM | Last reply by Ali BaderEddin - MSFT - Tuesday, August 5, 2008 9:23 PM -
0 Votes
c# Winform with google search
Try this i think this can temporarily solve your problem SimpleSearch.cs using System; using System.Collections.Generic; using System.ComponentModel; using ...Answered | 3 Replies | 11796 Views | Created by Mary Elliott - Friday, June 19, 2009 10:21 PM | Last reply by Saicharan Manga - Sunday, June 21, 2009 10:21 AM -
0 Votes
vb 6 to WinForm c#
You have two options, Convert it first to VB Net version 10 SP1 using Version 9 (VB 2008) to convert and then convert that to C# (will go one to one as those have almost ...Answered | 2 Replies | 4585 Views | Created by Rajnikant Rajwadi - Friday, March 25, 2011 6:34 AM | Last reply by Cor Ligthert - Friday, March 25, 2011 8:55 AM -
1 Votes
DssEnviroment.Shutdown() in a winforms c# applicaiton
In the bigger picture of things, you may find it cleaner to start your app as a console application that initializes the DSS environment, then instanciates your winform.Answered | 7 Replies | 2818 Views | Created by SurfSaturn - Tuesday, April 8, 2014 11:54 PM | Last reply by SurfSaturn - Monday, April 21, 2014 5:58 PM -
2 Votes
How do I load a ribbon resource within a C++ WinForm?
I've also wrote a 6 parts guide for working with ribbon in C++, it was written for win32 developers but you can make the obvious ...Answered | 3 Replies | 9060 Views | Created by Adam Nicholson - Tuesday, July 19, 2011 8:09 PM | Last reply by Arik Poznanski - Thursday, July 21, 2011 9:37 AM -
0 Votes
MultiAutocomplete in winform c#
When I use autoComplete Text" As my previous post said, Winform TextBox Control doesn't support this feature.Answered | 3 Replies | 1179 Views | Created by KyawMinTun - Monday, August 15, 2016 2:21 PM | Last reply by DotNet Wang - Saturday, August 20, 2016 3:51 AM -
0 Votes
Classic Project about winform with c#
i am studing winform in c#, can you tell me some classic project with winform in c#,so that i can study how to program with the souce ...Answered | 2 Replies | 1427 Views | Created by A Chinadeveloper - Friday, June 14, 2013 2:02 AM | Last reply by Joel Engineer - Friday, June 14, 2013 9:31 AM -
0 Votes
How to create Access DB from C# WinForm
cmd.CommandText = $"CREATE TABLE {tableName} ([Id] COUNTER, [FirstName] TEXT(25),[LastName] TEXT(255), [ActiveAccount] YESNO, [JoinYear] INT)"; try ...Answered | 3 Replies | 5966 Views | Created by Jeff0803 - Sunday, March 24, 2019 6:52 AM | Last reply by Simple Samples - Sunday, March 24, 2019 9:09 PM -
0 Votes
How to deactivate a Project license?
Hello, there is this post you can refer to that gives some inputs:Answered | 3 Replies | 11578 Views | Created by JWD2 - Thursday, September 24, 2015 3:29 PM | Last reply by Jeremy Cottino - Thursday, October 8, 2015 9:04 AM - Items 1 to 20 of 2878500 Next ›
No announcements