Click here to Skip to main content
15,881,852 members
Home / Discussions / C#
   

C#

 
AnswerRe: Splitting a string into a substring and into chars? Pin
Heath Stewart26-Apr-04 5:49
protectorHeath Stewart26-Apr-04 5:49 
GeneralThings are not working as expected Pin
gUrM33T26-Apr-04 5:12
gUrM33T26-Apr-04 5:12 
GeneralRe: Things are not working as expected Pin
Jon G26-Apr-04 5:20
Jon G26-Apr-04 5:20 
GeneralRe: Things are not working as expected Pin
gUrM33T26-Apr-04 5:29
gUrM33T26-Apr-04 5:29 
GeneralRe: Things are not working as expected Pin
gUrM33T26-Apr-04 5:24
gUrM33T26-Apr-04 5:24 
GeneralRe: Things are not working as expected Pin
Heath Stewart26-Apr-04 5:53
protectorHeath Stewart26-Apr-04 5:53 
GeneralRe: Things are not working as expected Pin
gUrM33T26-Apr-04 15:30
gUrM33T26-Apr-04 15:30 
GeneralRe: Things are not working as expected Pin
Heath Stewart27-Apr-04 2:39
protectorHeath Stewart27-Apr-04 2:39 
Gurmeet S. Kochar wrote:
Hey, what about that Garbage Collection thing?

The Graphics class - like many other class in the .NET FCL - use native resources (unmanaged) so the GC cannot collect them. Read Programming for Garbage Collection[^] in the .NET Framework SDK to learn more.

Gurmeet S. Kochar wrote:
Well, I tried using SetStyle but it says...

As I mentioned, you should call this in your constructor - the constructor for the control you're writing, which means you must extend the base class you want and add it to your constructor:
public class MyPanel : Panel
{
  public MyPanel()
  {
    SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer
      | ControlStyles.UserPaint, true);
    // ...
  }
  // ..
}


 

Microsoft MVP, Visual C#
My Articles
QuestionSplitting a string into a substring and into chars? Pin
Eolus26-Apr-04 5:03
Eolus26-Apr-04 5:03 
GeneralProblem With tcpclient.GetStream() Pin
Tarakeshwar26-Apr-04 1:15
Tarakeshwar26-Apr-04 1:15 
GeneralRe: Problem With tcpclient.GetStream() Pin
Heath Stewart26-Apr-04 3:24
protectorHeath Stewart26-Apr-04 3:24 
GeneralRe: Problem With tcpclient.GetStream() Pin
Tarakeshwar26-Apr-04 4:08
Tarakeshwar26-Apr-04 4:08 
GeneralRe: Problem With tcpclient.GetStream() Pin
Heath Stewart26-Apr-04 4:20
protectorHeath Stewart26-Apr-04 4:20 
GeneralOOP help Pin
Atazoth26-Apr-04 0:31
Atazoth26-Apr-04 0:31 
GeneralRe: OOP help Pin
Heath Stewart26-Apr-04 3:21
protectorHeath Stewart26-Apr-04 3:21 
GeneralRe: OOP help Pin
Jeff Varszegi26-Apr-04 3:44
professionalJeff Varszegi26-Apr-04 3:44 
GeneralA new open-source filebrowser Pin
Jonathan Slenders26-Apr-04 0:25
Jonathan Slenders26-Apr-04 0:25 
Generalobject oriented program help Pin
Anonymous26-Apr-04 0:10
Anonymous26-Apr-04 0:10 
GeneralDatagrid and dataset Pin
Appelz25-Apr-04 23:09
Appelz25-Apr-04 23:09 
GeneralRe: Datagrid and dataset Pin
DougW4826-Apr-04 17:19
DougW4826-Apr-04 17:19 
GeneralRe: Datagrid and dataset Pin
Jay Shankar26-Apr-04 21:58
Jay Shankar26-Apr-04 21:58 
GeneralRe: Datagrid and dataset Pin
Appelz26-Apr-04 23:50
Appelz26-Apr-04 23:50 
GeneralRe: Datagrid and dataset Pin
Jay Shankar29-Apr-04 15:04
Jay Shankar29-Apr-04 15:04 
Questionhow can i get dates pupup from db ? Pin
kings_125-Apr-04 22:26
kings_125-Apr-04 22:26 
GeneralCompression Algoritm Pin
yarns25-Apr-04 22:09
yarns25-Apr-04 22:09 

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.