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
V

vladfein

@vladfein
About
Posts
41
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • DATEDIFF function
    V vladfein

    Unfortunately, none of the two suggestion above will do what DATEDIFF does... You need to separate the DATE part of your time value. You didn't say what data type you use for your date/time variables. The easiest way, I think, is to convert both dates to COleDateTime (which wraps double representation of date/time), truncate the fractional part and simply subtract one value from another.

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    C / C++ / MFC c++ database

  • delete files past a certain date
    V vladfein

    si_69 wrote:

    the date of the file i wish to delete is 2/5/2005 which gives tmCreate {m_time=1157539835 }

    No, it doesn't. It gives you: 1107590400

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    C / C++ / MFC tutorial question

  • Debug
    V vladfein

    I assume you are talking about Local Variables tool window ("Locals"). While debugging, go to: Debug -> Windows -> Locals or Ctrl+Alt+V, L

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio csharp debugging help

  • VS2005: Task List --> Show all?
    V vladfein

    I believe that task are only displayed for the open documents. If you want to show some info from ALL files, you can use "Task List Shortcut" - Ctrl+K, Ctrl+H Vlad

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio question database

  • Replacement for Windows List dialog
    V vladfein

    Just wanted to let you know that I've released FeinStuff 1.3 that fixes the problem you have reported. Will you please give it a try? Thank you, Vlad

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio visual-studio com tutorial question

  • 1st chance exceptions in VS 2005
    V vladfein

    How about Debug -> Exceptions...? Just check the "Thrown" checkbox.

    ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio visual-studio debugging tutorial question

  • Assertation error
    V vladfein

    Right above the ASSERT, there is an explanation: you call one of the data exchange functions (DDX_... or DDV_...) with an ID of a control that doesn't exist. Most likely, it did exist once, but was later removed from your resource file, and generated code was left behind... ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    C / C++ / MFC help debugging tutorial question

  • Error in creating window
    V vladfein

    Studio 2005 defaults your projects to use Unicode. So, unless you change that, you either need to specify "wide" strings like that: L"your text" or use macro _T: _T("your text") ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio c++ debugging help csharp visual-studio

  • Replacement for Windows List dialog
    V vladfein

    I am sorry that you had bad experience with my tool... FeinWindows was one of the first tools I wrote, and it has been discontinue long time ago. Its functionality is rolled into FeinStuff tool (http://www.feinsoftware.com/FeinStuff.php[^]). The issue with persistent keyboard shortcuts was fixed; however, the navigation bug is still there (it was never reported). I am going to fix it ASAP - will let you know. Will you please give it another try? Will you please accept a registration key as a token of appreciation for your help in finding that bug? Having said that, I think that you were too harsh in labeling that tool "useless"... ----------------------------- Get trial copy of FeinViewer - an integrated GDI objects viewer for Microsoft Visual Studio .NET 2005 (8.0) Visual C++ Debugger, and other convenience and productivity tools for Microsoft Visual Studio .NET at at www.FeinSoftware.com

    Visual Studio visual-studio com tutorial question

  • Replacement for Windows List dialog
    V vladfein

    Did you try FeinWindows? http://www.feinsoftware.com/FeinWindows.php[^] ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    Visual Studio visual-studio com tutorial question

  • Displaying Build Errors instead of Displaying Errors and Warning together.
    V vladfein

    You can turn off all warnings with the compiler switch /W0 But why would you want to ignore warnings? ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    Visual Studio tutorial question

  • How do you stop the favorites window from opening with every solution?
    V vladfein

    Tools | Options - Environment | General - "At startup:" combobox - select "Show Empty Environment" ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    Visual Studio visual-studio csharp windows-admin help question

  • Cstring instance declared, but "not found" while debugging *IMAGE
    V vladfein

    So - 15 replies and NO help? interesting... First of all, do you debug a Debug build or a Release? (Release build can rearrange your variables) Second, is the code in the executable file or in a DLL? (The code that you are looking at might not be current if you have multiple copies of your DLL) ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    C / C++ / MFC c++ tutorial question learning

  • one doubt abt memberfunctions.....
    V vladfein

    I would REALLY appreciate if whoever voted my post down (not that I care about the "score") explained their position. Vlad. ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    C / C++ / MFC question

  • open document tabs
    V vladfein

    If you like to have many windows open in the Visual Studio, try FeinSoftware's add-in FeinStuff[^], specifically its FeinWindows command. It replaces Studio's "Window | Windows..." dialog with a resizable multi-column list of open documents. ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    Visual Studio question

  • one doubt abt memberfunctions.....
    V vladfein

    It doesn't "prevent" such modifications. Just makes it more difficult and explicit (like using const_cast). ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    C / C++ / MFC question

  • What is a Project Picker Build?
    V vladfein

    I do not know about "Project Picker Build", but here is some info on "Build Only Project": it is only available if you have a project node selected in the Solution Explorer. To work around this limitation, try FeinStuff from http://www.FeinSoftware.com/FeinStuff.php[^] ----------------------------- Get trial copy of comment generating tool CommentMakerPro, a collection of convenience and productivity tools for Microsoft Visual Studio .NET FeinStuff, and std::string and std::string containers viewer FeinEvaluatorPro at www.FeinSoftware.com

    Visual Studio question visual-studio

  • [Announcement] FeinSoftware released FeinEvaluatorPro ™ ver. 1.3
    V vladfein

    To the people who rated this post: do you object to the format of the post, or do you not like the tool that was announced? ----------------------------- Get trial copy of comment generating tool CommentMakerPro, std::string and std::string containers viewer FeinEvaluatorPro and windows manager for Microsoft Visual Studio .NET FeinWindows at www.FeinSoftware.com

    Visual Studio csharp tools announcement visual-studio wpf

  • Debugging Header includes
    V vladfein

    Are you using MS Visual Studio? What version? In Studio 2003, you can go to Project Properties, C/C++, Advanced and change "Show Includes" to "Yes". ----------------------------- Get trial copy of comment generating tool CommentMakerPro, std::string and std::string containers viewer FeinEvaluatorPro and windows manager for Microsoft Visual Studio .NET FeinWindows at www.FeinSoftware.com

    C / C++ / MFC question

  • Take that, Academy!!
    V vladfein

    And they made Emmy Rossum introduce Beyonce's performance of the original song from "Phantom..."! Was that a slap in a face? ----------------------------- Get trial copy of comment generating tool CommentMakerPro, std::string and std::string containers viewer FeinEvaluatorPro and windows manager for Microsoft Visual Studio .NET FeinWindows at www.FeinSoftware.com

    The Lounge 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