The windows-controls tag has no wiki summary.
3
votes
1answer
50 views
Are Windows window classes case-sensitive?
MS docs being clear as mud (and the class name strings not referenced very often), I was wondering whether the class name of a Win32 window class is actually case sensitive?
3
votes
1answer
842 views
Synchronized Scrolling Components Delphi
I am trying to synchronize the scrolling of two TDBGrid components in a VCL Forms application, I am having difficulties intercepting the WndProc of each grid component without some stack issues. I ...
2
votes
1answer
124 views
How to detect if the console does support ANSI escape codes in Python?
In order to detect if console, correctly sys.stderr or sys.stdout, I was doing the following test:
if hasattr(sys.stderr, "isatty") and sys.stderr.isatty():
if platform.system()=='Windows':
...
2
votes
5answers
514 views
TreeListView control
I need to implement TreeList control same as in Process Explorer.
I am quite newbie in GUI and did not write such complicated controls.
As I see in Process Explorer, there is a TreeListWindowClass, ...
1
vote
1answer
83 views
ComboBox with CheckBoxes in WinForms
I am trying to implement a CheckBox ComboBox. I followed this link as a reference
http://www.codeproject.com/Articles/31105/A-ComboBox-with-a-CheckedListBox-as-a-Dropdown?msg=4152597#xx4152597xx
...
0
votes
0answers
19 views
Runtime error (.net sqlclientapplication) while web app trying to run Windows Controls in IE with FullTrust
I'm currently trying to find out answer for a runtime error (mentioned below) in my web application (.NET 1.1 with ASP.NET) which has Windows controls on web pages all over.
If I run web pages on the ...
0
votes
1answer
547 views
Flowlayout and Tablelayout in windows form
What is the difference between Flowlayout and Tablelayout in windows form ? I know i can google it, but i am bit short on time.
my requirement is too , that when the form is resized. Resizing for ...
0
votes
1answer
124 views
SetScrollRange Function
I've read about SetScrollRange but still didn't get what the range (min, max) is in scrollbar. I've set the rich edit control's vertical scroll bar range to (0, 100)
...
0
votes
1answer
85 views
Rich Edit control: Prevent immediate repainting/updating?
I'm trying to replace some text in a range in a rich edit control. The two line way to do it is by sending a EM_EXSETSEL followed by a EM_REPLACESEL. However, this causes an annoying flickering when ...