CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Pickels

Search: Search took 0.01 seconds.

  1. Re: C# beginner. When to use casting and When to use Convert operator?

    If you want to caste an object use the parenthetical notation ( IE: (objectB)instanceA )

    The System.Convert object is used generally to convert object to and from a string representation and in...
  2. Replies
    5
    Views
    12,473

    Re: Chage HELO message in C# email client

    static class Program
    {
    public class SmtpClientEx : SmtpClient
    {
    private void SetClient(string client)
    {
    ...
  3. Re: Why wont my enum be what it is ? I have to cast it to get the number

    n <> np
  4. Thread: Thread Issue

    by Pickels
    Replies
    7
    Views
    1,068

    Re: Thread Issue

    static void Main(string[] args)
  5. Replies
    5
    Views
    1,079

    Re: Printing custom control

    What do you mean by print? Do you mean you only want to draw specific element of the control? If so, show the OnPaint code.
  6. Re: String Split functionality-internally how does it works

    It assumes non-null input.


    static string[] SplitString(string str, char[] seperator)
    {
    if (str == string.Empty)
    {
    return new string[] { str };...
  7. Re: Need efficient algorithem to search a Color in an array

    What do you mean by search an array by three variables? All points in color space are three dimensional; you kinda have to. Did you actually mean than you wanted to look at only one component at a...
Results 1 to 7 of 8





Click Here to Expand Forum to Full Width

Featured