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

Search:

Type: Posts; User: waverdr9

Page 1 of 4 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    435

    question, please help!

    I am sure there is an easy answer to this question, but I am working with a deque which contains a list of reserved words. If the word string is found in the deque, I need to associate the...
  2. Replies
    2
    Views
    629

    Re: Reading from an Excel table

    whichever is the easiest to implement.
  3. Replies
    2
    Views
    629

    Reading from an Excel table

    I am writing a C++ 6.0 program that needs information from a table, and I was curious how to have it read information from a table created in Excel. Any comments/suggestions will be greatly...
  4. Replies
    2
    Views
    2,250

    Integrating C++ and C#

    Does anyone know of any good tutorials that deal with integrating C++ code with a C# GUI?
    I am writing a simulation program in C++ and I would like to be able to display various information...
  5. Replies
    2
    Views
    786

    Retrieving string items from a listbox

    I am writing a program that uses a listbox to store various strings. When an item in the listbox is clicked, I need to display that string along with various information associated with it. How do...
  6. Replies
    15
    Views
    2,822

    String functions

    I am used to programming primarily in C++, but I am currently working on a C# program. So I have a few questions regarding strings. Are there any equivalent C# functions that perform the same as the...
  7. Replies
    3
    Views
    1,168

    VB gui for C++ code

    Is there an easy way to create a gui in Visual Basic 6.0 to run with C++ 6.0 code? Basically I have a simulation coded in C++, and I want to have a gui to display certain statistics and things.
    ...
  8. Replies
    2
    Views
    1,081

    That works perfectly. Thanks for your help. :D

    That works perfectly.
    Thanks for your help. :D
  9. Replies
    0
    Views
    554

    Testing for keyboard input

    Is there a way to test for keyboard input without using cin >>, and then extracting that input when it is present?
  10. Replies
    4
    Views
    839

    PERFECT! Thank you so much! :D

    PERFECT!

    Thank you so much!
    :D
  11. Replies
    2
    Views
    1,081

    Reading keyboard input buffer?

    I am currently working on a program that simulates a grocery store checkout line. Each time the simulation loops, it displays the current statistics (i.e. length of line, average wait time, etc.). I...
  12. Replies
    4
    Views
    839

    Clear the console screen???

    I used to know of a C++ command to clear the console screen. It was something like sys.clear, or system(clear), or something like that.
    Can anyone help me out? How can I clear the console screen?
    ...
  13. Replies
    2
    Views
    919

    C++ code w/ a C# GUI???

    I am currently working on a large simulation for a programming class. We had to code the entire thing in C++ (I use 6.0) and then simply display information in the console window. However, we get...
  14. Replies
    16
    Views
    6,536

    Thank you for all of the help! I fixed the...

    Thank you for all of the help!
    I fixed the problem and finished the program. :D :cool: :D
  15. Replies
    16
    Views
    6,536

    Hey wait...actually your idea works, but I still...

    Hey wait...actually your idea works, but I still had to change your code to what I have above (only because of how my code is set up)
    Thanks for the help!!!

    But now I have one more question. I am...
  16. Replies
    16
    Views
    6,536

    That didn't work. But then I tried putting it in...

    That didn't work. But then I tried putting it in the Simulation class implementation file (the file that actually uses the event pointer compare) and now it works. However, I had to change the...
  17. Replies
    16
    Views
    6,536

    I tried using the struct above, and I get two...

    I tried using the struct above, and I get two errors regarding *lhs.time and *rhs.time:
    error C2228: left of '.time' must have class/struct/union type

    Also, when I tried using the code...
  18. Replies
    16
    Views
    6,536

    Sorry, I didn't mean inside the class, just...

    Sorry, I didn't mean inside the class, just inside the file where the class resides.
    Thanks for the help. :D
  19. Replies
    16
    Views
    6,536

    Should I put that struct in the Simulation class...

    Should I put that struct in the Simulation class or the Event class?
  20. Replies
    16
    Views
    6,536

    I am aware of the priority_queue STL, but the...

    I am aware of the priority_queue STL, but the vector STL suits my purposes much better in my program as a whole. And like I said, I have used vector in conjunction with lower_bound() before. But for...
  21. Replies
    16
    Views
    6,536

    URGENT: lower_bound() problem

    I am currently working on a simulation program that uses discrete event simulation. Basically, the program generates events (in this case, the arrival and departure of customers in a store). So the...
  22. Replies
    1
    Views
    620

    Weird Error

    I am currently working on a program and I have come across an error that I am unsure about how to fix. Here is the section of code that it occurs in:



    1: Customer* Store::remove(int num) {
    ...
  23. Replies
    16
    Views
    2,129

    const data members in classes

    Is there a way to have a const data member inside of a class? For example, I have the following code:


    #ifndef STORE_H
    #define STORE_H

    class Store {

    public:
    Store();
  24. Replies
    2
    Views
    693

    URGENT: MFC Listbox question

    Is there any way to store multiple variables in each index of a listbox. For example, I am writing a program for a school assignment that deals with airplane information. For each plane, we must...
  25. Replies
    11
    Views
    5,848

    I attempted to implement your advice in a smaller...

    I attempted to implement your advice in a smaller program:




    #include <iostream>
    using namespace std;

    class CmdInfo {
    public:
Results 1 to 25 of 99
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured