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
I

Ivan Yap

@Ivan Yap
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Converting
    I Ivan Yap

    Hee now than i saw your message.. prev, I got the same problem with the isDigit() function so I got :mad: and create a iIsNum(CString string) function using VC++ ver 6 BOOL iIsNum(CString string) { int strLenght = string.GetLength(); bool _isnum; CString chr; for (int i = 0; i < strLenght ; i++) { chr = string.Mid(i,1); if(chr >= "0" && chr <= "9") _isnum = TRUE; else { _isnum = FALSE; break; // no use search for other char } } return _isnum; } Hope you still can use this function ~~~

    C / C++ / MFC

  • how to Convert modeless dialogs to modal dialogs
    I Ivan Yap

    Please advise me how am I convert the modeless dialogs to modal dialogs. 1. i hid the modeless dialogs by using the ShowWindows(FALSE) 2. How ever the program icon disappear in the task bar. 3. I thinking of making the modeless dialogs so that it appear in the task bar. thank you. please advise :((

    C / C++ / MFC
  • Login

  • Don't have an account? Register

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