Can anyone tell me if it is possible to use a controller in Visual C++ to show a HTML page, like a web browser would show it? My application should show a html page, hopefully with fully working links. Hope someone can tell me or direct me to a tutorial! thanx
superstein
Posts
-
HTML in Application? -
Two dimensional array problemThe array is define global and public in the header file. I have not yet been able to use the array, because when I define it the application stops before I'm able to do anything. a bit of the source code:
#pragma once #include "afxwin.h" #define MAX_DATARULES 256 // CSpeechControlDlg dialog class CSpeechControlDlg : public CDialog { // Construction public: CSpeechControlDlg(CWnd* pParent = NULL); HWND m_hwndForeground; HWND m_oldfocus; char *m_pData[MAX_DATARULES][4]; ....
I need to use an array to fill it with information about speech commands which the application recognizes. It compiles, and links, but stops with an access violation exception! When I created a new project this initialization worked perfectly, this makes me very confused! -
Two dimensional array problemI'm trying to define a char array; char m_pData[256][4]; I don't get any error messages, but the program stops and gives me a unhandled exeption when i run it.:(( this doens't work eiterh: char *m_pData[256][4]; or char m_pData[10][2]; but if I write char m_pData[2][2]; this works, it's probably just some properties needed to be change?:confused: can anyone find a solution to this? thanx
-
Speech RecognitionThanks! Looked at it and it was rather easy. To open the control panel it's just the "Control.exe" file and to open the Speech Properties I used "Control.exe speech"
-
Speech RecognitionI'm developing an application which supports Speech Recognition, in this application I want to add one button which opens the training wizard for the Microsoft Speech Recognition, and one button opening the Speech Properties Dialog, can anyone tell me how this can be done?
-
SAPI 5 TutorialDoes anyone know any good Speech Recognition SAPI 5 Tutorials (preferably for Visual C++ .NET) that really works? I've found some on the net, but I can't get them all to work! thanx Superstein