Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. markftwain

    Speech Normalization from within XML

    Hi All, Similar to my previous post, rather then using semantics, is there anyway within XML to change the speech recognition normalization process such that the spoken "to" can be normalized to "two","to","too", or ":" from within the rule expansion? Thank you.
  2. markftwain

    How to integrate child semantics with parent rule in xml grammar

    Hi All In writing a grammar xml file, I wish to isolate the words "ratio of two to three" and have it written as "2:3". The parent rule will be like "The box's height to width is 2:3" (with the actual spoken words as "The box's height to width is of ratio 2:3." I can achieve the desired results...
  3. markftwain

    E_ACCESSDENIED with SAPI 5.3 GetStorageFilename

    Hi experts; I have exhausted all sources on the net. In trying to improve speech recognition with SAPI 5.3 (on Windows 7 Ultimate 64bit), all goes well until I try to create the registry entry with GetStorageFileName, at which time HERROR is returned as E_ACCESSDENIED. I've taken this from the...
  4. markftwain

    HRESULT hr=3D S_OK; ???

    Sorry... The code was copied from Microsoft's web site. I'm new to C++, but alot of the code would insert the semi-colon where it was not needed (for C++ at least). Also, for some reason it appears Internet Explorer gives me "3D" and "=92" on some web pages. (Don't know why). (The "=92" appears...
  5. markftwain

    HRESULT hr=3D S_OK; ???

    Hi, Very newbie question: what does "HRESULT hr=3D S_OK;" mean? I can't seem to find the meaning of "3D" and the whole statement gives intellisense errors in Visual Studio 2010, yet it is used often on the net. Thank you for your time.
  6. markftwain

    using speech recognition for pronounciation

    Hi experts, Is it possible under C# and WPF to: 1. train the speech recongition engine on a specific word from a WAV file, and 2. having the speech recongition engine return the atomic word with which it hears with the correct lexicon for an XAML document? For example, as a single user (me)...
  7. markftwain

    How to return a new object by reference

    Hi experts, Newbie question: How do I return a new object from a child window back to the calling window? (The child window is to perform edits on the object but only keep those edits if user presses <save>, othewise, no editing is to be kept). I am sure this is done often. I am using C# with...
  8. markftwain

    moving empty timestamp fields to postgresql

    Thank you, I tried replacing the empty date/datetime fields with NULL by update, but it seems the "?" evaluator within the sqlexec statement still passed an empty string "" to the postgresql backend, not NULL. The use of cursors looks very promising. Thanks again, bye.
  9. markftwain

    moving empty timestamp fields to postgresql

    Thank you Olaf. I am a novice, but wrote this to solve my problem. I tested it with several hundred thousand records over 30 files, and all went well. I would be interested in any comments or improvements that the community can make:) Thanks again. Platform: Windows 7 64-bit PostgreSQL: 9.1...
  10. markftwain

    moving empty timestamp fields to postgresql

    Hi, After establishing a connection to a postgresql database, I am unabe to insert a new record when the source vfp record has an empty timestamp value. The sql syntax of ?varname seems to pass an empty string to the backend postgresql database resulting in postgresql message of wrong data...
  11. markftwain

    Setting order of an existing dataset

    Hi experts, I am very slowly moving from vfp to C#. After much reading I am unable to find a simple answer to this question: Having created a dataset using the visual foxpro ole db, can the dataset row order be changed based on the value in a specific column without creating a new dataset from...
  12. markftwain

    C# or VB.NET as help to vfp for com objects

    Also, a bit confusing...which should be used: the InkAnalyzer Class is in System.Windows.Ink Namespace with definition of: public InkAnalyzer(Dispatcher synchronizingObject) AND in Microsoft.Ink Namespace with definition of: public InkAnalyzer(Ink ink,ISynchronizeInvoke...
  13. markftwain

    C# or VB.NET as help to vfp for com objects

    Probably a bad choice for a name of an example method in my created cInk class. What "interfaces" does the vfp "form" implement, if any? Or is there a way of adding an additional interface or wrapping the vfp form in an interface that .net would accept?
  14. markftwain

    C# or VB.NET as help to vfp for com objects

    In the overall scheme, it appears that the inkAnalyzer provides better handwriting recognition then vfp's inkEdit, so I thought I'd work with it some; it appears that C# works easy with the inkAnalyzer. The problem I am having is getting a COM object created by visual studio 2008 to pass the...
  15. markftwain

    C# or VB.NET as help to vfp for com objects

    Hi Doug; The conference looks great, but is long off. In C#, ActiveX controls can be made quite easy...but interfacing with VFP is a challenge. How do you pass the foxpro form to an ActiveX component? More details: Defining a C# module as a windows form works well: public partial class...
  16. markftwain

    Writing COM with C# for visual foxpro

    Hi experts, This is my first jump into C# (visual studio 2008) from a vfp background. I am trying to expose the methods of the inkAnalyzer to my main vfp program by encapsulating it in a COM object. I have created a windows form in C# that successfully uses the inkOverlay and inkAnalyzer, but I...
  17. markftwain

    C# or VB.NET as help to vfp for com objects

    Thank you. Much to learn.
  18. markftwain

    C# or VB.NET as help to vfp for com objects

    Hi experts, It appears that there are many objects on windows 7 that are accessable to C# and not vfp (e.g., the inkAnalyzer). Is it possible to use c# or vb.net to create a com object for the inkAnalyzer that would expose its methods and events to VFP? And if so, coming from a vfp background...
  19. markftwain

    Erasing Ink from inkOverlay.1

    The only solution I have found is to build a new ink object: local loInk as MSInkAut.InkObject loInk = createobject("MSInkAut.InkObject") with thisform.oink .enabled = 0 .ink = m.loInk .enabled = 1 endwith Is there a better way? Bye, Mark

Part and Inventory Search

Back
Top