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: *

  • Users: mathu
  • Order by date
  1. mathu

    Outlook Express

    Go through this page.U would find many examples fo sending email via SMTP. http://codeguru.com/internet/index.shtml
  2. mathu

    Enabling and Disabling Toolbar Buttons

    >>It may be a silly question, but I badly need a solution! Well surely it is not a silly question.I have gone through the same stage. For enabling/disabling Toolbar Buttons at Runtime use SendMessage() like this: FOR ENABLING BUTTON: GetToolBarCtrl().SendMessage(TB_ENABLEBUTTON,<ButtonID>...
  3. mathu

    Remote Access Program

    I might help u but first I need to know what platform r we using. Regards mathu
  4. mathu

    using html help files

    cheers!!!
  5. mathu

    using html help files

    I have done a similar thing but in a VC++ MFC Program. If u r also making a mfc programme, let me know. Regards mathu
  6. mathu

    List control problem

    I agree with pete! mathu
  7. mathu

    List control problem

    Look out MSDN for CListCtrl::EnsureVisible(). I think this should serve ur purpose? Hope this helps mathu
  8. mathu

    CListControl Text for a certain row

    Also if u want to to set the color to blue and only one row at a time u can use the function SetHotItem() belonging to the class CListCtrl. Pass the index no of the row whose color u want to change. Hope this helps
  9. mathu

    Change Cursor

    >>How can I change the cursor to make it look like an >>hourglass? When ever some long procedure is to be performed we generally prefer showing the hourglass cursor. Doing that is very easy. Just create an object of MFC class CWaitCursor. ex: void someclass::somefunction() { CWaitCursor...
  10. mathu

    Working with CString

    1) Creating a string like this: &quot; Hello &quot;World&quot; &quot; To achieve this do this: CString Test = &quot; Hello \&quot;World\&quot; &quot;; ur second question is not clear. Hope this helps mathu
  11. mathu

    Initialising a New Dialog box

    d.m_UPDT_Family_Name = m_Family_Name; Perhaps give this statement in the OnInitDialog().
  12. mathu

    Problem with InitInstance

    This sounds to be a very unique problem.There could no problem with the line m_pMainWnd=&Dlg; Debug carefully. Better option would be to make a new dlg based app.
  13. mathu

    Date in VC++

    k
  14. mathu

    memory leak and dialog boxes.

    Something is wrong somewhere? Try making it again. As far as deleted DialogBoxes is concerned,modal dialog boxes r deleted themselves when closed. Modeless Dialog Boxes needs to be explicitly destroyed.
  15. mathu

    Date in VC++

    for getting the current date and time u can use the function GetSystemTime(&sysTime); sysTime is of type SYSTEMTIME structure. GetSystemTime() fills the SYSTEMTIME structure with the current date and time. Now u can use the individual elements of this structure to compare the current date with...

Part and Inventory Search

Back
Top