CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Calculator

Page 1 of 21 1 2 3 4

Search: Search took 0.17 seconds.

  1. Replies
    3
    Views
    5,219

    Re: Microsoft.Office Components?

    I don't really understand, I read that VSTO is it's own IDE or something but I can't tell how I get it? I mean, most uninformative page ever is the homepage --...
  2. Replies
    3
    Views
    5,219

    Microsoft.Office Components?

    I'm trying to compile some source code that uses microsoft office task panes and to work with some speech recognition.

    Code is from the following article

    Enabling Speech Recognition in...
  3. Replies
    0
    Views
    1,192

    The Libgd is Coughing up Errors

    This code crashes on gdImageGifAnimBegin


    #include <gd.h>
    #include <string.h>

    int main(int argc, CHAR ** argv)
    {

    gdImagePtr im = gdImageCreate(100, 100);
  4. Replies
    4
    Views
    2,011

    Re: Animated GIF Encoding Library

    I used a tool to generate a type library and came up with this


    #ifndef __Gif89_h_
    #define __Gif89_h_


    #ifndef __RPC_H__
    #include "rpc.h"
    #endif
  5. Replies
    4
    Views
    2,011

    Re: Animated GIF Encoding Library

    I can't seem to get too much information out ofv the OLE-COM viewer. I am also not too experienced with COM services or servers or whatever. These interfaces are given

    Object Instances
    Drag...
  6. Replies
    4
    Views
    2,011

    Animated GIF Encoding Library

    Before I go and storm through the gif89a docs to create an animated gif encoder, is there an available C or C++ interface for turning a set of images into frames for an animated gif? I have heard of...
  7. Replies
    2
    Views
    1,920

    Re: Subclassing Using WTL

    I get error 1400 - ERROR_INVALID_WINDOW_HANDLE: Invalid window handle for each and every time I tryh it. Here is essentially the code for my dialog


    class WtlKbdCtrlsDlg :
    public...
  8. Replies
    2
    Views
    1,920

    Subclassing Using WTL

    I'm trying to subclass an edit control using WTL. I am using this article for instruction

    http://www.codeproject.com/wtl/subclassededitcontrol.asp

    So, basically, what I have, is a bunch of edit...
  9. Replies
    1
    Views
    721

    Re: A Modeless Dialog Problem

    Note: This problem exists whether or not the dialog was created in the same or a different thread than the main thread calling the plug-in
  10. Replies
    1
    Views
    721

    A Modeless Dialog Problem

    I am writing a plugin for an iTunes application and trying to pop-up a little dialog box. When I get the word I say


    // On dialog creation notification...

    HWND dlg =...
  11. Thread: Winsock

    by Calculator
    Replies
    2
    Views
    755

    Re: Winsock

    It is difficult to tell you without code, but you may need to choose a different socket model (async, select, iocp, etc) to effectively do what you want
  12. Replies
    2
    Views
    2,135

    Re: Xerces - Serializing DTD Grammar

    The DOMDocument interface specifies this http://xml.apache.org/xerces-c/apiDocs/classDOMDocument.html#z57_8 'getDoctype' method but goes on to say

    >> The DOM Level 2 does not support editing the...
  13. Replies
    5
    Views
    1,000

    Re: Why am I getting these errors?

    In the end it's really your choice but read this

    http://www.parashift.com/c++-faq-lite/coding-standards.html#faq-27.5
  14. Replies
    2
    Views
    2,135

    Re: Xerces - Serializing DTD Grammar

    The serialize grammars thing doesn't make any sense to me. I tried it


    DOMImplementationLS * impl = (DOMImplementationLS *)
    DOMImplementationRegistry::getDOMImplementation(XS("[removed]"));
    ...
  15. Replies
    2
    Views
    2,135

    Xerces - Serializing DTD Grammar

    Hello. I am trying to generate XML logs from scratch using the Xerces-C library. I have found that I can load a dtd definitions file to use for the XercesDOMParser:...
  16. Replies
    2
    Views
    641

    Re: How to Japanese characters being typed

    Are you rascist or something? Support international character sets
  17. Re: Professional placement of derefencing operator

    1) It doesn't matter, don't concern yourself with it
    2) Quite the contrary
  18. Replies
    6
    Views
    5,046

    Re: SetWindowsHookEx->Modding keyboard input

    It's possible that you can not do this with WH_KEYBOARD_LL hooks then, and that stopping the hook chain doesn't make the computer forget that it's there.
  19. Replies
    6
    Views
    5,046

    Re: SetWindowsHookEx->Modding keyboard input

    Basically, that is an initial keydown notification, and you send a b, and then when you callnexthook the window manager still interprets the data as an a, and then you get a keyup and you send a b...
  20. Re: How to call static DWORD WINAPI ThreadFunc(LPVOID pvParam)

    http://msdn2.microsoft.com/en-US/library/ms682453.aspx

    So you should cast your 'ob' instance to lpParameter.


    CreateThread( ..., ( LPVOID ) &ob, ... );

    ...
  21. Re: Can Someone Explain To Me What All This Means?

    It's funny really, the tutorial that Notsosuperhero linked you to explains all of that. In detail. Also, do you like to appear helpless? It strikes me as a bit odd.
  22. Replies
    1
    Views
    792

    Re: Class Instance as Timer ID - Failing

    I should have been more perceptive, I of course knew the objects were being copied and took measures for making that work for the program, but I never thought that the instance that would have...
  23. Replies
    1
    Views
    792

    Class Instance as Timer ID - Failing

    I have a few wierd things going on here, but basically, I am storing instances of these 'client' classes in a vector in a server program, and I keep a timer going that pings them occaisionally to...
  24. Replies
    2
    Views
    1,012

    Re: ESP value modified.

    Why would you want to bypass something that is obviously erraneous and bad to have in release code?
  25. Replies
    5
    Views
    1,028

    Re: PlaySound() problem

    Just thought I'd make a useless comment, and mention that FMOD::Sound::getOpenState only completely works on streaming sounds. This wasn't clear from the documentation and I recently ran into that...
Results 1 to 25 of 514
Page 1 of 21 1 2 3 4





Click Here to Expand Forum to Full Width

Featured