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

Search:

Type: Posts; User: drax22

Search: Search took 0.02 seconds.

  1. Replies
    14
    Views
    21,500

    Re: vectors of vectors of different types...

    How well does SQLite work with Visual C++? I am using VS 2008.
  2. Replies
    14
    Views
    21,500

    Re: vectors of vectors of different types...

    I thought of doing that, but I have to perform calculations on the rows that have double values. For example I would have to sum up all the double values, about 100,000 of them, in a row. So to do...
  3. Replies
    14
    Views
    21,500

    Re: vectors of vectors of different types...

    What I am trying to do is to create a data structure for a table. The table is of size 50 rows and 100000 columns. The data in each row can be of type string or double. Below is an example of this...
  4. Replies
    14
    Views
    21,500

    Re: vectors of vectors of different types...

    I realized the mistake I made about not specifying the type at compile time. If I change the line to


    ((Int_Value *)vector_of_values.at(0))->value = 3;

    This compiles. But this seems to be a...
  5. Replies
    14
    Views
    21,500

    Re: vectors of vectors of different types...

    I know this is an old post. I came across this code from the previous post in this thread and tried to use it. But I am having problems with accessing the value variables in the structs.


    struct...
  6. Replies
    7
    Views
    6,985

    Re: MDI Application Client Window

    Thanks to Victor for clearing up the typo. Ovidiu, much appreciate your illustrations. Makes it a lot easier to understand.
  7. Replies
    7
    Views
    6,985

    Re: MDI Application Client Window

    I don't understand the part where the MDI child window is the parent of the frame window. Can you explain that?
  8. Replies
    7
    Views
    6,985

    MDI Application Client Window

    I am developing a MDI application that will contain a RibbonBar and a Properties Pane window. The MDI documents are not tabbed. I am finding that when I try to move the client window around, it gets...
  9. Replies
    43
    Views
    11,521

    Re: Emptying CString

    Would this problem have occurred in VStudio 2005 or newer versions? Since the CString GetBuffer() or ReleaseBuffer() functions are not used in them.
  10. Replies
    43
    Views
    11,521

    Re: Emptying CString

    I don't understand how adding the sVersion.GetBuffer() and sVersion.ReleaseBuffer() solved the problem with m_sError. Could someone explain this?

    Thanks
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured