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

Search:

Type: Posts; User: Fanatic2012

Search: Search took 0.06 seconds.

  1. Replies
    6
    Views
    1,906

    Re: Confusing Dot Operator

    Thank you. So instead of using the reference returned by the method; the method itself is called, I understand now, the other question about the new operator still hangs for me. Your response is...
  2. Replies
    6
    Views
    1,906

    Re: Confusing Dot Operator

    Why I am here if I could do that? If you're not going to answer my questions don't answer at all, just go away.
  3. Replies
    6
    Views
    1,906

    Confusing Dot Operator

    I am learning Java and I have noticed when setting an image to an icon they use: Icon img1 = new ImageIcon(getClass().getResource("YES.png"));
    getClass() method followed by a dot and another method...
  4. Replies
    7
    Views
    1,757

    Re: How to Make Custom Applications

    TheGreat, sir, you are great. I want to know what happens under the hood all the time, why reinvent the wheel? Maybe to understand how they came to it in the first place. Now I have a better...
  5. Replies
    7
    Views
    1,757

    Re: How to Make Custom Applications

    Yes I know WPF allows for more customization, but, can I just make my own without the help of predefined classes for that.
  6. Replies
    7
    Views
    1,757

    How to Make Custom Applications

    I install applications everyday and see them run everywhere that use their own "forms", closing buttons, text fields, etc. I am somewhat of a beginner in C# (I know about event driven programming,...
  7. Replies
    5
    Views
    957

    Re: How Is This Method Working?!

    Arjay I really appreciate your replies. Here is the thing the code IS working as it should, I just do not understand it... The timer checks the user-set reminder date and compares it to the system...
  8. Replies
    5
    Views
    957

    Re: How Is This Method Working?!

    I want the user to select the time they want to be reminded by showing the this.Visible = true. Any time inside the remindTime would be less that the current time so it would fire before the Now...
  9. Replies
    2
    Views
    1,996

    Re: How to extract the numbers out a string.

    You can use the Split( ) method: Overloaded. Identifies the substrings in the string that are delimited by one or more characters specified in an array, then places the substrings into a string...
  10. Replies
    5
    Views
    957

    How Is This Method Working?!

    I am using the compare() method to check a saved date and time in a variable by the user VS the system's current time, "Now". The compare() method return -1 if the first date and time is less than...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured