Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bcemick

    Problems with VC++ .NET

    It sounds like you're missing a closing brace. It happens sometimes. Example: void SomeFunction() { Doing something here; This will give you an unexpected end of file.
  2. bcemick

    accessing objects

    So, if I understand this correctly, you have a form (let's call it CDialogForm) and a class (let's call it CMyDataClass). You want to call a function (let's say MyDataFunction()) in MyDataClass from CDialogForm, correct? CMyDataClass myDataClass;// This can be declared inside the function...
  3. bcemick

    Using CTabCtrl

    It depends on what you're trying to do. Basically, you're right in that you'll have to create different things for each tab. For example, if you're wanting a list control in each tab, you'll need to create a separate list control for each tab. When a tab is selected, show the corresponding...
  4. bcemick

    How to take a string with only numbers and convert it to an int...

    I usually just use aoti: int nNumber = 0; CString string; atoi(&string);
  5. bcemick

    Help converting string to time_t, please

    I was just popping in here to say "Never mind". It took a while, but I finally got it to work. Thanks for the reply though.
  6. bcemick

    Help converting string to time_t, please

    I have an SDI program that has a dialog containing a list control. In one field of the list control, a date is to be displayed. It's received from another dialog as CTime and converted to a string for display. How do I need take the string from the list control and convert it to time_t? Any...

Part and Inventory Search

Back
Top