Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
K

koloporanistka

@koloporanistka
About
Posts
4
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • help on dialog bar
    K koloporanistka

    1. Create timer in the beginning of the application: timer = SetTimer(1, 1000, NULL); 2. Add event ON_WM_TIMER() void CMainFrame::OnTimer(UINT nIDEvent) { if (nIDEvent == 1) { // IDC_STAT is an ID of static controll CStatic* cap = (CStatic*)m_wndDlgBar.GetDlgItem(IDC_STAT); if (cap) { CTime t = CTime::GetCurrentTime(); cap->SetWindowText(t.Format("%d/%m/%y %H:%M:%S")); } } CFrameWnd::OnTimer(nIDEvent); } 3. At the end of the application don't forget to destroy the timer: KillTimer(timer); Nina

    C / C++ / MFC help question announcement

  • How can I get Windows installation date ?
    K koloporanistka

    No, I prefer to use API.

    C / C++ / MFC c++ question help

  • edit control
    K koloporanistka

    You can try to put button near the edit control and make it a DEFAULT button. Then, after you insert the number and press Enter, the default button will be pressed. So you can validate the input. Nina

    C / C++ / MFC help question

  • How can I get Windows installation date ?
    K koloporanistka

    I look for any function that can get me date that OS Windows was installed on the PC. From command line I get this information by running systeminfo, but I need this from Visual C++. Please help. Thanks, Nina

    C / C++ / MFC c++ question help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups