Search:

Type: Posts; User: TheRaven

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    3,552

    Tested your code under an assumption that...

    Tested your code under an assumption that initialization skipping over age3 was the issue; it was.

    age3 uninitialized resulted in average equaling 0 (where age1 & age2 were both initialized to 4);...
  2. Thread: Bytes

    by TheRaven
    Replies
    7
    Views
    5,441

    Just a quick FYI Dan789 --do be aware that when...

    Just a quick FYI Dan789 --do be aware that when performing pseudo addition with logical bitwise OR operations the carry flag (eflags/rflags [32 & 64 bit respectively]) is not going to be set; might...
  3. Replies
    17
    Views
    8,958

    The .Net .exe & .dll files are called assemblies...

    The .Net .exe & .dll files are called assemblies that have, in general, three sets of data. There is an assembly manifest, type meta-data (also known as CIL), and a resource file (.rsp) with...
  4. Replies
    8
    Views
    6,019

    Application.Exit();

    .Net handles the main() method that is considered to be the primary point of entry the ' Application Object ' and Application.Exit(); basically sends a term signal for this method. The application...
  5. C is an intermediate language which means that it...

    C is an intermediate language which means that it resides somewhere between a true high level language (HLL) and assembly for the sake of this argument. C++ is the encapsulation of C functions into...
  6. Replies
    2
    Views
    1,611

    The ever impressive student register application...

    The ever impressive student register application using an array lab exercise...yummy!

    Student GPA anyone??

    First year C# is a pain in the buttocks, is it not?

    Welcome to Hell!
  7. Replies
    2
    Views
    1,297

    Waiting will lock the current invocation until it...

    Waiting will lock the current invocation until it is complete allowing, upon completion of the current service request, subsequent processing in the current invocation.

    Ending the invocation will...
  8. Replies
    4
    Views
    1,625

    If you are talking about references from an...

    If you are talking about references from an executable to another executable from within a published C# executable the answer is yes.
  9. Replies
    3
    Views
    2,369

    It is good practice to use error handling in...

    It is good practice to use error handling in constructors for anything and everything as you can not ensure the integrity of a resource. This prevents your system from crashing if a bad or poorly...
  10. Thread: C# Links

    by TheRaven
    Replies
    37
    Views
    189,904

    Sticky: The Code Project is good dope for C# Junkies...

    The Code Project is good dope for C# Junkies baby!!!

    Ohh yeah!

    Dig this:
    http://www.ecma-international.org/publications/standards/Ecma-334.htm

    and this:...
  11. Thread: StreamWriter

    by TheRaven
    Replies
    7
    Views
    1,727

    Streams are closed and then disposed/destroyed as...

    Streams are closed and then disposed/destroyed as they act allot like, if not identical to, threads.

    It is good practice to confirm changes to a stream and then save the stream prior to closing...
  12. Replies
    3
    Views
    2,521

    Also you will want to become extremely familiar...

    Also you will want to become extremely familiar with GDI+ and possibly the Windows Presentation Foundation (WPF) classes which capitalize on XAML technology.

    In respect to gaming with the .Net...
  13. Replies
    3
    Views
    7,158

    Magos is the man! Been wondering about the...

    Magos is the man!

    Been wondering about the address of text streams and lines in files with regarding the \n character for some time myself. Very simple and to the point. Excellent!!

    Thank you...
  14. For future reference, the first step is always...

    For future reference, the first step is always Object Oriented Analysis (OOA), secondly Object Oriented Design Analysis (OODA), thirdly Object Oriented Programming (OOP), and finally Object Oriented...
  15. Replies
    2
    Views
    3,018

    Your best bet is to learn how to add and...

    Your best bet is to learn how to add and reference resource files in VS Express or what ever license version you have, if any.

    What you want to do could be achieved using an XML resource file that...
  16. Thread: .NET Charts

    by TheRaven
    Replies
    2
    Views
    1,479

    If you are talking about a dictionary method you...

    If you are talking about a dictionary method you should change up and go for a jagged/dynamic array and just define your types there with their own arrays.

    Else I've no clue as to what you mean by...
  17. Thread: BinaryReader

    by TheRaven
    Replies
    6
    Views
    2,967

    C#, and more specifically the .Net Framework,...

    C#, and more specifically the .Net Framework, provide allot of binary functionality and is a quite involved process as it is in any other language. An excellent place to start your research is...
  18. Replies
    4
    Views
    1,612

    You could also use conditionals like if - else...

    You could also use conditionals like if - else and switch cases in the Foo method to control the instantiation of objects as well. In C# an object can be created from within a method albeit it should...
  19. Replies
    1
    Views
    2,119

    Your data sounds as though it is not being...

    Your data sounds as though it is not being committed to your database, otherwise a refresh would retrieve the data and thus the data displayed would reflect the changes made.

    Most databases/DBMS'...
  20. Replies
    2
    Views
    1,990

    MSDN online or MSDN Express Edition. There are...

    MSDN online or MSDN Express Edition.

    There are two ways of getting an id for and object and the hash method is a generic method and the one that I had seen most frequently used. There is another...
  21. Replies
    14
    Views
    7,346

    Ribbon tool bars

    Those types of menu & tool bars are referred to as Ribbons and this is a specially designed end-user oriented product for developers and is basically the redefined or hacked GUI libraries and...
  22. Replies
    17
    Views
    8,958

    George2

    George2 could merely be looking for consistency in the responses received for a given post. Boards systems have come along way with the growing knowledgability of a more informed programming society,...
  23. Replies
    4
    Views
    1,561

    Exceptional...

    Try()
    {
    }

    Catch()
    {
    }

    Finally()
    {
  24. Replies
    8
    Views
    6,019

    Exit();

    Application.Exit();

    Applies to any C# application as it is a base class type. It seems confusing at first but makes a great deal of sense as your exposure to the .Net Framework builds.

    ...
Results 1 to 24 of 24