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
M

Mark Donkers

@Mark Donkers
About
Posts
64
Topics
26
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Auto-Hide Views
    M Mark Donkers

    Hi there. Does anyone know of any artcles that show how to create those Auto-Hide view that are featured in VS .net... the Toolbax, Server Expplorer, etc ? Thanks for any help. Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC csharp visual-studio sysadmin help tutorial

  • Technical Manual Assistance
    M Mark Donkers

    Does anyone out there know of any good articles, books, websites with information on how to properly a quality software/product manual. Also, is there any manual writing software? Thanks in advance. Mark Donkers A witty saying proves nothing. -- Voltaire

    IT & Infrastructure tutorial question

  • CEdit multiline
    M Mark Donkers

    Perfect. Thanks Papa. MD Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question

  • CEdit multiline
    M Mark Donkers

    Ok. I'm almost embarrassed to ask this one, but here goes... I have a dialog box with a CEdit control on it. I'm using it as a logging window, but I can't get it to multiline my text. I'm using a CString member variable to contain the text that is written to it, but when I insert a '\n' or '\r' the CEdit control displays it as a control character inside of moving to the next line. What properties need to be set? The ones that I have checked are: - multiline - horizontal scroll - vertical scroll Am I missing something? Thanks in advance. Mark Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question

  • How get a pointer to CDocument ???
    M Mark Donkers

    I believe this is it. CFrameWnd::GetActiveDocument() MD Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question

  • Cancelling a long process
    M Mark Donkers

    That did the trick. Thanks Ravi! MD Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question c++ com hardware tutorial

  • Cancelling a long process
    M Mark Donkers

    Hello everyone, Wow. It's been a while since I've been here. I was doing some embedded stuff there for a while. It's nice to be back. Anyway, the question that I had has to do with having the ability to cancel a process that is in the middle of a for() loop. What I would like is a dialog that pops up on the over the application window that simply says "Cancel". I was reading used the code from Nishant's article Tutorial - Modeless Dialogs with MFC (http://www.codeproject.com/dialog/gettingmodeless.asp#xx211427xx). I've declared my modeless dialog as a local variable in the function with the loop. In the loop I want to check to see if the Cancel button was pressed. When I enter my loop, I can't press the Cancel button. Any ideas?? Thanks in advance. LONG CTest3431::TestKeypad() { LONG lRetVal = 0; CCancelDlg dlgCancel; dlgCancel.SetProgressText("Running keypad test..."); dlgCancel.ShowWindow(SW_SHOW); .... for( i=0; i<sizeof(sbKeys); i++ ) { if( dlgCancel.IsOperationCancelled() ) { lRetVal = -1; break; } .... } Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question c++ com hardware tutorial

  • Automatically Incrementing Build/Version VC6 Projects
    M Mark Donkers

    Thanks... I did a search and didn't find anything. The wrong keywords I guess. Thanks. Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC help tutorial question announcement

  • Automatically Incrementing Build/Version VC6 Projects
    M Mark Donkers

    Does anyone know how to auto increment the build and version info in VC6? Admittedly, I'm a little lazy when it comes to this sort of thing. Thanks for any help. Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC help tutorial question announcement

  • Help!! Forgot my password...
    M Mark Donkers

    Hey Gertjan, Yeah. What I did was create another user with Admin privies. I tried to delete the old one, but wouldn't let me. I've disabled Auto-logon so this wouldn't happen again. Anyways, thanks... Mark Donkers A witty saying proves nothing. -- Voltaire

    System Admin tools help

  • Help!! Forgot my password...
    M Mark Donkers

    Thanks. Sorry this is such a delayed response. I created a new user with Admin priviledges. I can do everything from that account now, but I can't delete the old one. Oh well, c'est la vie. Thanks again for all the suggestions. Mark Donkers A witty saying proves nothing. -- Voltaire

    System Admin tools help

  • Help!! Forgot my password...
    M Mark Donkers

    Thanks again. Unfortunately, it's still a "no-go". I found the DefaultUserName key, but no DefaultPassword. Any more ideas :) In the mean time, I'll try and find some more utilities. Mark Donkers A witty saying proves nothing. -- Voltaire

    System Admin tools help

  • Help!! Forgot my password...
    M Mark Donkers

    Thanks Venet. TweakUI does show the asterisks and lets me know how many characters it is. I downloaded a utilty that will reveal what the asterisks are in a text box, but not the TweakUI one. The Copy right-click is disabled as well, so i can't do a cut and paste. Grrrrrrrrr... :mad: Any other ideas??? Mark Donkers A witty saying proves nothing. -- Voltaire

    System Admin tools help

  • Help!! Forgot my password...
    M Mark Donkers

    Hi CP, This one's a little embarassing :rolleyes: I enabled the "Auto-logon" feature on my Win2k box about 4 months ago (after re-installing the OS). I thought it'd be a great idea to do this 'cuz it'll be ready to go after I boot. Now I would like to use PSTools to do some remote administration from work, BUT I forgot the password. Does anyone know of any password recovery tools that I can use. TIA Mark Donkers A witty saying proves nothing. -- Voltaire

    System Admin tools help

  • Setting System Time and Date
    M Mark Donkers

    :rolleyes: Forget it. I found it. SetSystemTime() Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question hardware json

  • Setting System Time and Date
    M Mark Donkers

    Hello CP, I'm working on an embedded PC, and the user doesn't have luxury of a keyboard or mouse (only a touchscreen). I have to create a dialog that will allow the user to set the time and date. What is the API call that I can do to take care of this? TIA! Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC question hardware json

  • Watch Window Formatting
    M Mark Donkers

    Martin, This is perfect! Thanks a million :-D Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC tutorial question

  • Watch Window Formatting
    M Mark Donkers

    A friend of mine introduced me to this "trick" with the watch window. When watching an HRESULT, you can format the result to something that makes a little more sense. Here's an example... If I have a variable HRESULT hr; and if I put hr,hr in the watch window it formats the value of hr into text. So if the hr = 0 the watch window would read "S_OK". Does anyone know of other cool watch window tricks like this? TIA Mark Donkers A witty saying proves nothing. -- Voltaire

    C / C++ / MFC tutorial question

  • Wrong C# book !! Help.
    M Mark Donkers

    Tom Archer wrote: Mark Donkers wrote: ...then put on some java... You trying to be funny, Mark? You caught that one. I can C you're quite #. MD Mark Donkers A witty saying proves nothing. -- Voltaire

    C# csharp help question learning

  • Wrong C# book !! Help.
    M Mark Donkers

    I was afraid of that :( Hopefully returning it won't be too painful. Thanks for the help Christian. Mark Donkers A witty saying proves nothing. -- Voltaire

    C# csharp help question learning
  • Login

  • Don't have an account? Register

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