Installing Speech SDK 5.1 On Windows XP

Jun 9, 2011

I'm trying to make a form in VB.Net that takes speech input (not text-to-speech) on my Windows XP Pro computer.I've tried to install Microsoft Speech SDK 5.1 according to url..The problem is my Office 2007 does not have an Alternative User Input feature, as it says in the instuctions. So is there any way to get this on my computer? If not can you suggest any alternative other that buying a new computer for making my Visual Basic .Net form speech-enterable?

View 3 Replies


ADVERTISEMENT

Using A WAV File As The Input To The Windows Speech Recognition Software On Machine (Windows Vista)?

Nov 1, 2010

Could anyone provide me with sample code for using a WAV file as the input to the Windows speech recognition software on my machine (Windows Vista)?

View 3 Replies

Trying To Do Text-to-speech On Windows 7

Aug 8, 2011

I'm trying to do text-to-speech in VB2008 on Windows 7 but I encounter the following exception: first chance exception of type 'System. Runtime. InteropServices.COMException' occurred in Text to Speech.exe..so I made the simplest program I could imagine that should work to minimize error sources but I can't seem to avoid the error. I have included a reference to Microsoft Speech Object COM for both programs and speech-to-text works in the original program.[code]

View 3 Replies

.net Windows Service Not Installing?

Aug 27, 2009

I have created a Windows Service in VB.net for building xML from a database. I need to install it in my machine. I have followed all the steps as shown in [URL] When I right click on setup project and click install it opens the installation wizard and after hitting the next buttons it promptly says that the Service is installed successfully.When I go to Services I don't see the service. I refreshed the list and rebooted my machine n times.

View 2 Replies

Installing Windows Service?

Jul 16, 2009

I am creating a windows service. I want to know that , is there any other way to install windows service than using installutil.exe ? I don't want to install my windows service on client's machine using command prompt. Better way if I can install it using setup.

View 2 Replies

Windows Service Not Installing

May 1, 2012

I have been working on creating a windows service. I am using XP SP3, VB.net, VS 2010 Express, compiling for .Net 4.0 client profile. I have am using very rudimentary code templates that I've cobbled together.I have a class the inherits 'ServiceBase' and overrides the constructor, 'OnStart', and 'OnStop'. I also have another class in another .vb file in the same project that inherits from 'System. Configuration. Install. Installer' and overrides the constructor to add a 'ServiceInstaller' and a 'ServiceProcessInstaller' with the appropriate properties set for the service. The 'ServiceInstaller.ServiceName' is set to the same name as the service class and the installer class has the 'RunInstallerAttribuite (True)'attribute. Everything compiles and if I try to run the exe I get a message telling me it's a service and needs to be installed as such. but when I use installutil(.net 4) to install the service, it appears as though it was successful, but the service does not show up in the services list and I can't find registry entries for it either. I've checked the exe with the object browser and it presents the installer class with the 'RunInstaller Attribute' as it should. I included some code to create a file in the installer constructor and no file is created so I'm assuming that the installer class is never instantiated by installutil.

View 4 Replies

Using Speech Sdk In VB Without Windows Spech Recognition

Feb 26, 2011

I want to enable voice recognition in my vb application witouh havin to use windows speech recognition, is it posible if not how can I add a my own command to turn on the recognition on windows the default command is strat listening but I want it simple like "activate", also I would like to record my own voice command using my app, I say activate I put this code : Grammar.DictationSetState(SpeechLib.SpeechRuleState.SGDSActive), but it does not turn on windows voice recognition

View 1 Replies

Installing An Application On A Windows 7 Machine?

Sep 1, 2011

We are using a Windows 7 virtual machine as a testing platform for our VB 6 application. Th application utilizes an Access database.The application locates the database by looking at a configuration (ini) file.When I install the application on the virtual machine, it places a database where InstallShield directs it to and writes that path to the ini file. All well and good.However,somehow a second copy of the database is created in a user local folder.

If the user uses the "run as administrator" option, the application uses the database that is in the location designated in the ini file and that works fine. But if the user does not select the "run as administrator" option, the application apparently somehow attempts to use the local database and is unable to locate it.

Is this behavior is peculiar to the virtual machine, or is it something we need to be concerned about on "real" Windows 7 systems?If it is peculiar to the virtual machine, is there some way to get the virtual machine to behave more normally?

View 6 Replies

Installing Windows Service Error

Dec 29, 2011

i running into an error when installing a windows service that i have created in vb .net. i followed the tutorial but i am getting an error. bellow is the log for the whole process until we get to the error. can someone please assist.

[Code]...

View 1 Replies

Installing Windows Services Gives An Error

Aug 3, 2010

I created a simple windows service on my local PC and added the following code to it [code]...

Next I added a Setup project to this solution and added a custom action (By double clicking application folder then clicking add output folder then selecting primary output from the dialog). The solution builds fine but I have 2 problems.

1) Everytime I install the service, it asks me for the username, password and confirm password; I was wondering if there was anyway to get rid of it atleast while running locally. I tried setting the account type to user, local service, local system etc but it keeps popping up.

2) Once I enter the credentials (random ones), I get an error "No mapping between account names and security ids was done".

View 1 Replies

VS 2008 Installing A Windows Service In .Net

Apr 2, 2010

I have had some success making a windows service but I can�t seem to fix a simple issue

I can get the service to run through my code once, but I can�t get it to loop, well I can but then the service will not start correctly and just times out while the code is running.

How can I get the service to start and then loop, at the moment it just says starting service and the code is looping but the service wont start! Windows times it out after a few mins.

Public Class WwService
Dim sDate As Date
Dim con As New OleDb.OleDbConnection

[Code].....

View 4 Replies

Install Microsoft Speech SDK 5.1 On Windows XP Professional?

Jul 6, 2011

I'm trying to install Microsoft Speech SDK 5.1 on my Windows XP Professional computer for a VB.Net project I'm working on and I'm getting nowhere. I have Office 2007 Pro. Can anyone confirm or deny that this cannot be done? I have an old Office 2002 disk. Would it do any good to put that on the computer (due to the fact that you're supposed to install Speech through Office and Office 2007 does not do this)? Will installing Office 2002 interfere with Office 2007?

View 6 Replies

Windows 7 Speech Recognition As InProc Engine?

Apr 10, 2010

I am currently working with Speech Recognizer 8.0 and trying to develop an application in VB for simple speech recognition tasks. Unfortunately, with Windows 7, anytime speech isenabled, it is listening for any sort of all sorts of commands (ie: "start menu", "press a key", *delete*)... all of which interfere with the desired operation of the program.Now, I believe what my problem is, correct me if I am wrong, is that I should not be using theshared engine, but the "InProc" engine, so the application then has the only access to the speech engine... better question: I know how to add commands to the speech engine, but *how* do I remove all the other commands, so that it only listens for a handful of words/commands that I want it to?

View 6 Replies

Account Type For Installing A Windows Service?

Oct 20, 2009

Account Type for installing a windows service

View 1 Replies

Error In Installing Windows Service Using Instllutil.exe

Sep 24, 2011

Error in installing Windows service using instllutil.exe in vb.net

View 10 Replies

Error While Using Installutil For Installing Windows Service App

Feb 12, 2007

I new to .net My project involves developing a windows service application using VB .NET. I have installed the service successfuly on the first attempt using the installutil provided by the frame work.When i uninstalled the application the it gave me the following result.

System.ComponentModel.Win32Exception: The specified service does not exist as an installed serviceAn exception occurred while uninstalling. This exception will be ignored and the uninstall will continue. However, the application might not be fully uninstalled after the uninstall is complete.

The uninstall has completed.

When i tried to install the app again it gave me the following error

An exception occurred during the Install phase.System.ComponentModel.Win32Exception: The specified service already exists

I removed the application from the list of application event log entries in the registry(HKEYLOCAL_MACHINESYSTEMCurrentControlSetServicesEventLogApplication) ant tried installing the app agin it installed successfully. Why is uninstalling the service not removing the entry from the registry.

View 12 Replies

Installing A Visual Basic .Net Application On Windows 7?

Oct 4, 2011

We are installing our application on windows 7. The application utlizes a Acces database. The application locates the database by looking in the registry under at HKEY_LOCAL_MACHINE / SOFTWARE / WOW6432NODE / COMPANY NAME / SOFTWARE NAME /STARTUP. When i install the application on windows 7 it places the a database where installshield directs it to and writes the path to the registry. However, somehow local copies of the database are showing up under the user profiles. (Example: c:/users/profilename/AppData/Local/VirtualStore/Program FIles (X86)/Company/SoftwareName/Data). We recently changed it to store the information in c:/ProgramData/Company/software however the same issue occurs and its creating local copies of the database and when the application runs it points to the local copy of the database. What we need is for all users to be pointed to and use the same database in ProgramData, is there something we are missing to accomplish this?

View 10 Replies

Installing A Windows Service In Stopped Mode

Mar 18, 2010

I have a windows service that I've written in vb.net using vs 2008 targeting ASP.NET 3.5. It appears that it's installing in a running state, but with the start mode set to manual. Is there a way I can have the service be initially stopped? I assume that it would be something in my service installer, but haven't been able to find it.

View 4 Replies

Installing Visual Studios 2010 - Windows

Dec 23, 2011

when I try to install it, after it extracts all of the needed temp files, it throws this error, and stops there..."windows cannot find 'C:users*my username*appdatalocal empSIT19120.tmpsetup.exe' make sure you typed the name correctly and then try again."anyone know what the heck I need to do to get this fixed...nothing has changed, not even the file location of the installation files...nothing..also, I just found out, the temp file's name is changed each time I try to run the setup application...

View 2 Replies

VS 2010 Installing Windows Serivce Option?

Feb 4, 2012

I been reading about the windows services in the msdn but I get lost quick because I'm not sure what it is that I actually need. I'm only using the standard version. Any pointers on how I can give a user the option to install my executable as a service so that it can run when no one is logged in.

View 1 Replies

Recommended Alternatives For Speech Recognition Other Than Microsoft Speech Libraries?

Aug 11, 2010

recommended alternatives for speech recognition other than Microsoft Speech libraries?

View 2 Replies

VB 2010 Speech Recognition / Speech-To-Text / Voice Control

Oct 23, 2011

I'm trying to create a Speech Recognition support for my program. I want to make it so that if I say something in my microphone, the program just writes what I said in Label1. I looked for Speech Recognition codes in MSDN and Google, but I didn't find anything useful. I found a code, but it was for VB.net, I tried but it didn't work in VB 2010.

View 1 Replies

After Installing Windows7 Sp1 - Vb6 Compiled Exe Is Not Working In Windows Xp Machine

Jun 17, 2011

I have windows7 home premium 64bit edittion, I use VB6 and VS2008. I recently install Win7 SP1 in my machine but after installing the SP1 my old VB6 application is working fine in my pc but compiled exe files are not working in other windows XP machine, then I uninstall WIndows7 Sp1 from my PC and again compile the old vb6 application, now i notice that this exe is working file in all other pc. is there any way to use win7 sp1 with vb6 ??

View 1 Replies

Installing An Application Developed In VB6 That Accesses SQL Server On Windows 7?

Dec 9, 2010

There are problems installing an application developed in VB6 that accesses SQL Server on Windows 7?

View 1 Replies

Installing VB2008 Express Apps On Windows 2000?

Apr 27, 2010

If my understanding is correct, Win 2000 only supports .NET 2.0 Framework. I am using VB2008 Express to write an app that I would like to install but I believe VB2008 Express utilizes the .NET 3.5 Framework.

Is there a way to compile my app so that it only requires the .NET 2.0 Framework? Or, more directly, is there a way to install apps written with VB2008 Express onto PC's running Windows 2000?

View 1 Replies

How To Publish A Program Which On Installing On A Computer Asks For The Drive For Installing?

Sep 9, 2009

I created a program and published it using the wizard through the "Property" in menu.

When I used the Published program to Install it in my same computer it got installed in "StartMenu".

I didn't get the option to select the Drive for Installing it like what we get when installing other program.

how to make that option to appear on installing the program?

View 8 Replies

Call Uninstall Method In ServiceProcessInstaller For Installing Windows Service Using MSI?

Aug 13, 2009

I have a Deployment project which creates an MSI setup file to install a service. (VB .NET) I have a reference to another project which is a win form application and has a setup form which takes the user name, password and some other settings information which will be used by a service. It has "Finish" and "Cancel" buttons. I am creating a new instance of this form on Sub New() of the ProjectInstaller Class, so user can input information, click Finish and installation completes. The service is then automatically started. Now, when I click Cancel on the settings form, I am not able to exit out and halt the installation process. Instead it installs the service !! How can I use the Rollback or Uninstall methods to do the task? I was trying this -

On cancel_click, set boolean var cacelStatus = True
On Sub New() method of ProjectInstaller class, I am checking - If true - uninstall, else - install

How can I achieve this?

View 1 Replies

Vb Setup Stops Half Way On Windows 7 - Also Get Fatal Error On Installing .net Framework 4

Mar 16, 2010

Visual basic setup stops half way on windows 7 - also get fatal error on installing .net framework 4

View 1 Replies

MS Speech SDK - Highlight Text On A Richtextbox Control While Reading The Text Using Speech Sdk Control

May 26, 2011

I just want to know that how can i highlight text on a richtextbox control while reading the text using speech sdk control. I mean the word currently speak automatically selected in the RichTextBox.

View 2 Replies

Dictation On Speech SDK?

Jun 8, 2009

I'm doing my senior project on an audio project; when I came to using the Speech SDK it was great when it was about Text to speech; but I'm finding a hard time using it the other way round; speech to text. is there any sample code to help me start off?, and is it possible to change the vocabulary list in a way that when ever I say a word that is in the list than it is written down; if it is not possible is it possible that I can use the dictation function to write words according to the phonemes I say?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved