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 Wanet Telecoms Ltd 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. BestBoy

    cin.getline being strange...

    This code snippet is working for me...i just added "'.'" to ur code at cin.getline. Earlier...memset will initialize ur variable to '0'. #define ARYA 3000 class Address { private: char * cAddress; public: Address(); //Constructor...
  2. BestBoy

    clistctrl sorting problem

    You can use callback fn to sort the data I wrote like this.. create a structure with the columns... for eg., i 've 3 columns first name, last name and term typedef struct { LPTSTR pszLastName; LPTSTR pszFirstName; LPTSTR pszTerm; } ITEMDATA, *PITEMDATA; and use this structure to fill...
  3. BestBoy

    cin.getline being strange...

    i wrote like this...it is working... void main() { char str[256]; memset(str,0,255); cout<<&quot;Enter some text of test : &quot;; cin.getline(str,256,'.'); cout<<str<<endl; }
  4. BestBoy

    emulate keyboard press

    Use keybd_event function

Part and Inventory Search

Back
Top