all groups > dotnet windows forms > march 2004 > threads for friday march 19
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Need to set focus on the PrintPreview results window
Posted by Neal Miller at 3/19/2004 9:06:10 PM
To solve the problem of focus being lost after the PrintPreview window has finished painting, I've put a me.focus on the PrintDocument1_EndPrint logic, as well at the end of the PrintDocument1_PrintPage logic
I'm thinking that the Me object (relating to the calling windows form) is not the correct... more >>
Keyboard shortcuts
Posted by Mystique at 3/19/2004 6:49:41 PM
How can i define keyboard shortcuts for a form using the arrow keyboard
keys?
... more >>
textboxt control with syntax highlightings
Posted by Roman Pokrovskij at 3/19/2004 6:04:07 PM
Hello ALL,
May be you can help me...
I want to create universal textbox control with the
syntax highlighting, jumping out "codelists", visual
bracket matches and error underlines...
I need you help: articles, sources, samples, ideas.
Of course I know about yacc clones like CSTools or ... more >>
Tools bar icon
Posted by Pascal Cloup at 3/19/2004 2:30:52 PM
Hello,
Since i set the windows XP style in my application, by calling
Application.EnableVisualstyle() and setting the FlatStyle property of the
controls, the icons in the TollBar control always don't appear although they
function correctly.
Some on has an explanation to this behavior?
Pa... more >>
Fonts
Posted by C# Learner at 3/19/2004 2:04:09 PM
How do I convert a "normal" font size to 'em's?
I'm instantiating a Font object, and it requires the size in 'em's.... more >>
click on Form1
Posted by Anne at 3/19/2004 11:03:45 AM
Guru:
I have a base form say Form1, whenever I click on Form1, Form2 will display.
My question is:
while Form2 is showing, how could I catch click event on Form1?
Here is the fuction to show Form2:
privated: void DoubleClickHandler()
{
Form2->ShowDialog();
Form2->Refresh();
}
... more >>
PictureBox CausesValidation does not fire Validating event
Posted by Siobhan at 3/19/2004 10:51:10 AM
H
I have a user control which contains a picture box (it is to act as a graphical command button). Everything seems Ok except for CausesValidation
When I place the user control ona form it says its CausesValidation property is True (and it still is in runtime) but if I click on the Control when ... more >>
Create a control like Visual Studio property list
Posted by Sean at 3/19/2004 9:21:10 AM
Has anyone got any pointers that would help me create a control like the Visual Studio .NET property list. Most of the functionality seems to be in the DataGrid control - I am loading this from a DataSet which could take it's data from a db or XML stream. The data consists simply of tagged values
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Mouse Cursor
Posted by George at 3/19/2004 7:45:49 AM
I'm stopping and starting the painting of my form while I
move controls. How can I change the mouse cursor and
have the mouse cursor actually paint before the next line
of code excutes? I would hate to use Thread.Sleep(100)
just to give it a chance to paint the mouse cursor.
Basically... more >>
Microsoft WebClient Bug!
Posted by leonardfurby NO[at]SPAM hotmail.com at 3/19/2004 7:23:32 AM
I am having the same experience as Russel Stevens.
http://groups.google.se/groups?hl=sv&lr=&ie=UTF-8&selm=OJK3aZc3CHA.2288%40TK2MSFTNGP09.phx.gbl
When I use webClient.UploadFile a 50K file takes 150K to upload using
NTLM authentication. I have tried to solve this by using
HttpWebRequest but ... more >>
Abstract Form Class
Posted by Siobhan at 3/19/2004 6:56:08 AM
H
I wonder can anyone answer - can I create a form which is an abstract class i.e. has the MustInherits keyword in the class definitio
When I do this I get the error message
'New' cannot be used on a class that is declared 'MustInherit'
This happens before I have put any other code on the sys... more >>
Dataset, large, performance, solution
Posted by Maurice at 3/19/2004 2:11:08 AM
Dear reader
I'm building a multi-user application in .NET and was wondering what benefits the dataset has (for my application).
(1). Database contains tables with 10.000 - 20.000 records. Do I have to use a dataset to fetch all the records from the database (and load it into the dataset (memory ... more >>
Showing .NET forms from within VB6 project: wrong Tab key behavior
Posted by Ivan Abramov at 3/19/2004 1:11:06 AM
Hi,
The main project in VB6. Our developer team started gradual moving to VB.NET project and created some .net forms. They are called from VB6. But one day we noticed ununderstandable Tab key behaviour and here is the problem.
When a .net form is shown and if the user presses Tab key the form is b... more >>
Can't add user controls in forms designer anymore
Posted by Erik Cedergren (ecgn) at 3/19/2004 12:41:07 AM
All of a sudden (after a reinstall) my Visual Studio .NET (2002) no longer allows me to add user controls to a C# form.
What happens is that if I create a new control, everything looks fine up until the point where I try to drag it from the toolbox into the parent form. Then VS all of a sudden can... more >>
|