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

Search:

Type: Posts; User: CodeGuru12

Search: Search took 0.04 seconds.

  1. A Form that calls a fn in a class library that MAY take a while..

    I think my brain is spent from over work because I can't figure out how I should approach this seemingly simple task.

    Our software is a Windows Forms application on .net 2.0

    It connects to...
  2. Replies
    2
    Views
    1,753

    Re: VS 2010, C++ How to use 8.0 runtime

    Marc, I have checked it out. There is no documentation to be found on how to build against libraries older than 9.0.

    Then, I was linked to this:...
  3. Replies
    2
    Views
    1,753

    VS 2010, C++ How to use 8.0 runtime

    How can I compile a Win32 dll in Visual Studio 2010 and set it up to use the msvc 8.0 runtime?

    I'm deploying a .net 2.0 application using VS 2010 and TFS 2010. One of the components is a native...
  4. Re: Two part design question for an object that describes a Vehicle.

    Yup. I didn't set the spec though and they are not willing to change that.
  5. Re: Two part design question for an object that describes a Vehicle.

    It's a standalone app.

    Its just the clients requirement. I think it has to do with their target environment. They wish to push updates out through code additions rather than through a database. As...
  6. Replies
    7
    Views
    7,390

    Re: Send data from one Win form to another

    Can't edit my post. :(.. but wanted to also say Thanks! :)
  7. Replies
    7
    Views
    7,390

    Re: Send data from one Win form to another

    I guess examples of proper ways to share data between forms in a winforms application.

    I've seen people provide solutions, but no real world examples.
  8. Replies
    7
    Views
    7,390

    Re: Send data from one Win form to another

    Arjay, can you provide a working example, or a link to one?

    This is still something I haven't mastered.
  9. Re: Two part design question for an object that describes a Vehicle.

    Ok, I spent the weekend working on this.

    The goal here isn't to design reusable code, or objects. Its to organize static data. Normally this would go into a database, but that is not an option in...
  10. Two part design question for an object that describes a Vehicle.

    Lets say I'm a class that describes a vehicle.



    class Vehicle
    {
    // Now, lets say I want to have engine info
    Engine Engine;

    // Lets also say that I want to know the make/model
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured