Click here to Skip to main content
15,903,012 members
Home / Discussions / C#
   

C#

 
GeneralRe: merge two files in a file Pin
Jimmanuel6-Jul-07 4:46
Jimmanuel6-Jul-07 4:46 
JokeRe: merge two files in a file Pin
Luc Pattyn6-Jul-07 5:01
sitebuilderLuc Pattyn6-Jul-07 5:01 
JokeRe: merge two files in a file Pin
Jimmanuel6-Jul-07 5:12
Jimmanuel6-Jul-07 5:12 
AnswerRe: merge two files in a file Pin
WhiteGirl236-Jul-07 20:14
WhiteGirl236-Jul-07 20:14 
QuestionSqlDataSourceQuery.Select Pin
dboy2216-Jul-07 3:38
dboy2216-Jul-07 3:38 
QuestionI am making C# program that interacts with webpage.get js val exec js function Pin
(kcd)6-Jul-07 3:36
(kcd)6-Jul-07 3:36 
QuestionGenerate AxInterop files Pin
Laurent.iss6-Jul-07 3:29
Laurent.iss6-Jul-07 3:29 
QuestionUpdate designer after updating a property Pin
Christopher Stratmann6-Jul-07 3:06
Christopher Stratmann6-Jul-07 3:06 
I have a custom control with a custom property. After compiling the project I place my custom control onto a windows form in VS2005. From there I change my custom property on that custom control. The problem is that the custom control doesn't repaint on the designer to show my updated change. The following is the only way I have found to make the control repaint. Invalidate() after _Test = value; doesn't work. I also looked into the System.ComponentModel namespace for something to be placed before public int Test like [Browsable(true)] but didnt find anything. I tried [RefreshProperties(RefreshProperties.Repaint)] but I think that only repaints the properties grid and not the control on the designer. Any ideas???

private int _Test = 0;
public int Test
{
   get { return _Test; }
   set
   {
      _Test = value;
      Width--;
      Width++;
   }
}


Chris
AnswerRe: Update designer after updating a property Pin
snorkie6-Jul-07 4:14
professionalsnorkie6-Jul-07 4:14 
GeneralRe: Update designer after updating a property Pin
Christopher Stratmann6-Jul-07 4:28
Christopher Stratmann6-Jul-07 4:28 
AnswerRe: Update designer after updating a property Pin
Martin#6-Jul-07 6:57
Martin#6-Jul-07 6:57 
QuestionTool tip text in a button Pin
-spy-6-Jul-07 2:45
-spy-6-Jul-07 2:45 
AnswerRe: Tool tip text in a button Pin
kubben6-Jul-07 2:56
kubben6-Jul-07 2:56 
QuestionGDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 2:31
oliiix6-Jul-07 2:31 
AnswerRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
Luc Pattyn6-Jul-07 2:57
sitebuilderLuc Pattyn6-Jul-07 2:57 
GeneralRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 3:56
oliiix6-Jul-07 3:56 
GeneralRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
Luc Pattyn6-Jul-07 4:09
sitebuilderLuc Pattyn6-Jul-07 4:09 
AnswerRe: GDI: Move Rect. using KeyDown/Up and Timer Pin
oliiix6-Jul-07 4:20
oliiix6-Jul-07 4:20 
QuestionHow to set The Break point Condition in vs.NET Pin
Hum Dum6-Jul-07 2:20
Hum Dum6-Jul-07 2:20 
AnswerRe: How to set The Break point Condition in vs.NET Pin
kubben6-Jul-07 2:51
kubben6-Jul-07 2:51 
QuestionDialog event Pin
Maddie from Dartford6-Jul-07 1:59
Maddie from Dartford6-Jul-07 1:59 
AnswerRe: Dialog event Pin
Pete O'Hanlon6-Jul-07 2:02
mvePete O'Hanlon6-Jul-07 2:02 
AnswerRe: Dialog event Pin
Martin#6-Jul-07 2:04
Martin#6-Jul-07 2:04 
AnswerRe: Dialog event Pin
Chintan.Desai6-Jul-07 2:13
Chintan.Desai6-Jul-07 2:13 
QuestionNeed Suggestion for best Component Library for C# Pin
logikos6-Jul-07 1:43
logikos6-Jul-07 1:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.