How can I close a form (or stop it from opening, thus returning control to
its caller) from it's constructor ?
I've tried both the following but they just seem to carry on and open the
form.
Application.Exit();
this.Close();
...
more >>
Hi,
Would like to scroll to position in RTF text box and have the matching text
at the top of the text window.
Currently it displays it at the bottom.
...
more >>
Hi,
This code (w/c programmatically scrolls a textbox) works in VB 6.0:
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA"
(ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam
As Long)
Private Const EM_LINESCROLL = &HB6
Private Sub Command...
more >>
Hallo
I have a problem concerning properties in a settings object. I would
like to categories my properties using category attributes, or
something similar, so I can display them nicely using a property grid.
My problem is that I do not know how to change the category attribute
associated wit...
more >>
Howdy
for a tabcontrol, can you change the appearance of it so that the tab
headers display on the bottom rather than on the top? I am looking at the
properties of itand nothing jumps out at me.
Much obliged...
...
more >>