No announcements
-
0 Votes
Windows Forms General FAQ
This material should not be considered as a complete coverage of the frequently asked questions, but it tries to capture the high-level features with some depth in the Windows Forms General ...Sticky | 29 Replies | 44273 Views | Created by MSDN FAQ - Tuesday, May 04, 2010 1:46 AM | Last reply by MSDN FAQ - Tuesday, May 04, 2010 2:59 AM -
0 Votes
Winforms General Information Links
If you are reading this ... you are halfway there towards solving your issue. Here are some suggestions Try posting your question in the search box before posting it...it ...
-
0 Votes
New form opens in the background
this.Close(); form1.Show(); and everything is perfect. But today, I decided to change my main form, the one that starts when I first run the program, and I went in program.cs and ...Unanswered | 5 Replies | 102 Views | Created by JohnnyZer0 - Friday, April 20, 2018 2:11 AM | Last reply by Simple Samples - 4 hours 33 minutes ago -
0 Votes
Counting the entries of multiple objects in specific zone in c#
{ panel1.Invalidate(); })); Thread Z1 = new Thread(zone1); // thread for zone Z1.Start(); time.Stop(); tstop = ... -
0 Votes
Reading serial port
serialPort1->IsOpen) { // clear box this->textBox1->Text = String::Empty; try { this->textBox1->Text = ... -
0 Votes
C++ OpenGL Obj loader
Hello, I recently started to program an openGL application using the windows forms and c++ for a school project. Since we don't get teached programming i'm not ... -
1 Votes
drawing to a bitmap and then drawing to the screen
I have a circle that will be showed many times in the screen, so instead of drawing that circle every time, I want to draw it once, save it, and than just show it every time that its needed. I think ...Answered | 4 Replies | 91 Views | Created by Dandvv - Thursday, April 12, 2018 9:35 AM | Last reply by Semih ARTAN - 21 hours 36 minutes ago -
0 Votes
How to remove the particular symbol in a string
Hi, I am using string which contains some values. List<string> result = new List<string>(); result = ...Proposed | 2 Replies | 41 Views | Created by Gani tpt - Friday, April 20, 2018 8:59 AM | Last reply by Wizend - 22 hours 17 minutes ago -
1 Votes
How to open dockable window
I want to open a dockable window? For example, I have a main window of which left side is menu area and right side is working area. I have a form to dock into the ...Answered | 3 Replies | 50 Views | Created by Jeff0803 - Thursday, April 19, 2018 11:23 PM | Last reply by Kareninstructor - 22 hours 33 minutes ago -
1 Votes
Not getting the expected results from GetPixel(int x, int y) c#
I want to check the colour of a pixel, but I'm not getting the result expected. I have this var called 'pixelColor' when I set it to Color.Black as the picture show it gets the property ...Answered | 2 Replies | 37 Views | Created by Dandvv - Thursday, April 19, 2018 7:41 AM | Last reply by Dandvv - Friday, April 20, 2018 8:31 AM -
0 Votes
How to fetch the matching record from the list..?
string SpeSubject = "ENGLISH" List<string> SubjectAll = new List<string>() { "PHYSICS=100", "MATHS=100", "ENGLISH=99", "CHEMISTRY=97", ...Answered | 2 Replies | 35 Views | Created by Gani tpt - Thursday, April 19, 2018 12:25 PM | Last reply by Stanly Fan - Friday, April 20, 2018 8:03 AM -
8 Votes
Application crash 'ucrtbase.dll'
ucrtbase.dll!abort() Unknown ucrtbase.dll!_purecall() Unknown ucrtbase.dll!__crt_state_management::wrapped_invoke<int (*)(void),int>(int ...Unanswered | 26 Replies | 5917 Views | Created by Oleg Levitsky - Monday, September 04, 2017 1:11 PM | Last reply by Oleg Levitsky - Friday, April 20, 2018 7:38 AM -
0 Votes
I almost succed to draw a border on tabitem in tabcontrol
Hello! I am trying to style the tabitems in a tabcontrol. I do succeed with the below code in (tabControl13_DrawItem) However. As ...Unanswered | 1 Replies | 38 Views | Created by Silvers2 - Thursday, April 19, 2018 1:56 PM | Last reply by Stanly Fan - Friday, April 20, 2018 7:35 AM -
0 Votes
Activate() and Focus() the windows form if it was already opened.
hi all, I am coming across a stubborn issue in here. Let's say i have 3 forms in my windows form project, frmA, frmB, and frmC, whereby frmA is the main ...Answered | 2 Replies | 50 Views | Created by AndieDu - Wednesday, April 18, 2018 8:21 AM | Last reply by AndieDu - Friday, April 20, 2018 1:58 AM -
1 Votes
trying to code a bouncing ball
I wrote a code, but it fails when ever I try to run it here is the code I have so far using System; using System.Drawing; ...Proposed | 5 Replies | 58 Views | Created by formedpineapple - Wednesday, April 18, 2018 6:41 PM | Last reply by Stanly Fan - Friday, April 20, 2018 1:16 AM -
1 Votes
C# Coding
I am trying to create a ball and make it bounce off the edges of the screen. I am not sure if this is even possible in C#. please tell me if it is. I don't know ...Proposed | 11 Replies | 148 Views | Created by formedpineapple - Tuesday, April 17, 2018 6:24 PM | Last reply by Wendy Zang - Friday, April 20, 2018 1:04 AM -
0 Votes
Text Based menu
I want to make main menu like control box in my WinForm program. I don't know how to call this kind of menu, hyper text menu? Whatever is is called, I want to make ... -
0 Votes
SelectNextControl backwards in nested user controls
Hello everybody, I like the Enter-key to behave like Tab and Shift+Enter like Shift+Tab to step through a form. Works fine for simple forms but breaks down if you use nested ...Answered | 6 Replies | 3011 Views | Created by Helge2 - Monday, January 26, 2009 11:55 AM | Last reply by Eric Graeb - Thursday, April 19, 2018 9:07 PM -
1 Votes
How to make mouse cursor tracking line on picturebox without disturbing the image in the picturebox?
CreateGraphics(); g_cam1_cal->Clear(Color::Empty); g_cam1_cal->DrawLine(pen1x, e->X, 0, e->X, ...Proposed | 1 Replies | 42 Views | Created by victor1765 - Wednesday, April 18, 2018 11:23 AM | Last reply by Stanly Fan - Thursday, April 19, 2018 7:01 AM -
1 Votes
Glow Shadow Window With Layered Windows
Hello, I am trying to develop custom forms these days on Winforms(usually Borderless forms).but Borderless forms have not window shadow.And How can I use layered windows as shadow ...Answered | 2 Replies | 51 Views | Created by Semih ARTAN - Wednesday, April 18, 2018 7:24 AM | Last reply by Stanly Fan - Thursday, April 19, 2018 2:42 AM -
2 Votes
changed properties the format defaul date in datagridview ,, vb net
dear all master changed properties the format defaul date in datagridview ,,vb net so here I ask for help code for date format in datagridview dynamically ,, so ...Proposed | 3 Replies | 57 Views | Created by Jokowi_oi - Tuesday, April 17, 2018 2:23 PM | Last reply by Stanly Fan - Thursday, April 19, 2018 2:31 AM -
0 Votes
How to map button_pressed signal if there is a list of buttons?
I have made a user control consist of textbox and button.Now i have made a list which comprise of multiple object of this user ...Unanswered | 1 Replies | 40 Views | Created by victor1765 - Wednesday, April 18, 2018 7:19 AM | Last reply by Stanly Fan - Thursday, April 19, 2018 2:12 AM - Items 1 to 20 of 58107 Next ›
No announcements