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
S

Steve Thresher

@Steve Thresher
About
Posts
513
Topics
146
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Split paragraph into lines based on width in pixels
    S Steve Thresher

    Thanks for the suggestion but I'm looking to determine the starting offset of each line within the paragraph. I could manually parse the string and use GetTextExtentPoint32() to work it out myself but I imagine that will be slow and I thought maybe an API might already exist as something like an edit control will already be doing something similar.

    AxisFirst For Business

    C / C++ / MFC css json help question

  • Split paragraph into lines based on width in pixels
    S Steve Thresher

    I need to split a paragraph into lines based on a given width in pixels. The idea being that as a user resizes the window, they can see more or less of the paragraph as the window is made wider or narrower in the same was as notepad would with word wrap on. Is there anything in the Windows API that has already solved this problem?

    C / C++ / MFC css json help question

  • Process and memory
    S Steve Thresher

    http://blogs.technet.com/b/markrussinovich/archive/2008/07/21/3092070.aspx[^]

    AxisFirst For Business

    C / C++ / MFC css performance question workspace

  • IXMLDomDocument / IXMLHTTPRequest / Credentials
    S Steve Thresher

    Is it possible to specify domain user credentials when using the IXMLHTTPRequest interface retrieved from IXMLDomDocument?

    AxisFirst For Business

    C / C++ / MFC business question

  • Exchange Web Services
    S Steve Thresher

    I'm testing against 2007 but I assume whatever I come up with will be compatible with 2010.

    C / C++ / MFC csharp c++ wcf json question

  • Exchange Web Services
    S Steve Thresher

    The Windows Web Services API is what I'm using to speak to exchange but I'm struggling to use structures and functions generated from the EWS WSDL file. I've had some success but it's slow going :(.

    C / C++ / MFC csharp c++ wcf json question

  • Exchange Web Services
    S Steve Thresher

    The suggested wrapper is .NET based which is what I'm trying to avoid so any info you can dig up will be very much appreciated.

    C / C++ / MFC csharp c++ wcf json question

  • Exchange Web Services
    S Steve Thresher

    Am I the only one trying to use EWS from native code via the Windows Web Services API? The documentation seems to be virtually non-existent and I've failed to find any samples so far that don't use the Managed .NET API. If anyone has or knows of any sample code on the subject that they are willing to share, I would be very grateful.

    C / C++ / MFC csharp c++ wcf json question

  • Exchange Autodiscover Service
    S Steve Thresher

    Does anyone have a sample showing how to lookup the URL to use for exchange web services via the autodiscover service.

    Managed C++/CLI wcf tutorial

  • Synchronise Contacts with Exchange Server Mailboxes
    S Steve Thresher

    I need to synchronise contacts from our DB with user profiles in an exchange server. Can anyone suggest which API / SDK to use to achieve this from a C++ application? The idea is users can flag contacts in our application as being one they want synchonised with their mobile phone eg. each account manager will want contact details for their customer accounts.

    C / C++ / MFC c++ database sysadmin sales json

  • Tooltip Flashing
    S Steve Thresher

    Windows explorer shows a tooltip if the contents of a column is not entirely visible. I'm trying to emulate that behaviour but when I move the tooltip to cover the clipped text I end up with a flashing tooltip. This seems to be because the tooltip is now under the cursor which causes it to be closed immediately which leaves the cursor back over the clipped text which fires the tooltip and around we go. Has anyone run into this before and found a solution?

    AxisFirst For Business

    C / C++ / MFC business question

  • Ah the joy of being right...
    S Steve Thresher

    Did you send your boss any reminders or couldn't you reach the keyboard while up on your high horse! ;P

    The Lounge question learning

  • How to register an ActiveX ocx file
    S Steve Thresher

    Could you just call the register function directly? HRESULT RegisterDLL(const char *dll_fspec) { HRESULT hr=E_FAIL; HMODULE hMod=LoadLibrary(dll_fspec); if (hMod) { HRESULT (__stdcall *pDllRegisterServer)(VOID); pDllRegisterServer=(HRESULT (__stdcall *)(VOID))GetProcAddress(hMod,"DllRegisterServer"); if (pDllRegisterServer) hr=pDllRegisterServer(); FreeLibrary(hMod); } return(hr); }

    AxisFirst For Business

    C / C++ / MFC com testing beta-testing tutorial question

  • WM_GETFONT returns NULL
    S Steve Thresher

    We've been using GetStockObject(DEFAULT_GUI_FONT) and that has worked from Win95 to Windows 7. What do you need it for?

    AxisFirst For Business

    C / C++ / MFC question delphi design

  • HTML Editing Control for Win32
    S Steve Thresher

    Thanks for trying but MFC is not an option (I did mention that).

    AxisFirst For Business

    C / C++ / MFC c++ csharp html business json

  • HTML Editing Control for Win32
    S Steve Thresher

    Can anyone suggest a library/control for editing HTML that can be added to a program written in C/C++ that only uses the Windows API (no MFC etc). We currently use nBit's HTML Editor OCX[^] but this has some small issues and hasn't been updated since 2006. The library/control will need to be royalty free.

    AxisFirst For Business

    C / C++ / MFC c++ csharp html business json

  • Doxygen Command Help Required
    S Steve Thresher

    The \verbatim tag instructs the Doxygen parser to skip over a block of text. I'd have preferred to use an XML tag but it works and remains readable in the source.

    C / C++ / MFC tutorial html business xml help

  • Doxygen Command Help Required
    S Steve Thresher

    Doesn't look too pretty in the source file but does the job. Thanks for you help.

    C / C++ / MFC tutorial html business xml help

  • Doxygen Command Help Required
    S Steve Thresher

    You've not understood what I'm trying to acheive. I'm trying to document the layout of the XML file generated by a function which means I need to instruct Doxygen to ignore a block of text by placing it inside a given tag. The problem is I can't find the right tag.

    C / C++ / MFC tutorial html business xml help

  • Doxygen Command Help Required
    S Steve Thresher

    Anyone now how to emebed tags in Doxygen help eg. //////////////////////////////////////////////////////////////////////////////////////////////////// /// <summary>Save XML File</summary> /// /// <remarks>The XML file generated will have the following layout: /// /// <results> /// <count>99</count> /// </results> /// /// </remarks> /// //////////////////////////////////////////////////////////////////////////////////////////////////// I've tried <pre>, <code>, <c> and <example> and none of them stop me from getting the following warning: warning: Warning: Unsupported xml/html tag <results> not found warning: Warning: Unsupported xml/html tag <count> not found warning: Warning: Unsupported xml/html tag </count> not found warning: Warning: Unsupported xml/html tag </results> not found

    AxisFirst For Business

    C / C++ / MFC tutorial html business xml 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