User Profile

Collapse

Profile Sidebar

Collapse
jerger
jerger
Last Activity: Apr 10 '13, 12:53 PM
Joined: May 22 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • need an asp.net text to speech very simple app to use as a guide

    I posted this in ASP... does it belong here instead?

    I have converted my dictionary program into a simple asp program. It works great... but I now want to add speech functionality but have not had any success. I have tried several online templates that give errors... or I have added suggested code to my own... which then breaks my code!

    Please, if anyone is an expert in TSS ... could you make me a simple asp page template......
    See more | Go to post

  • Simple text to speech.. I believe in asp (or is it .net?)

    I have converted my dictionary program into a simple asp program. It works great... but I now want to add speech functionality but have not had any success. I have tried several online templates that give errors... or I have added suggested code to my own... which then breaks my code!

    Please, if anyone is an expert in TSS ... could you make me a simple asp page template... that I can then utilize on my own?

    My program...
    See more | Go to post

  • need to send email, some survey check boxes and text comments to both a file & email

    I have not made a program or page from start yet. I have made modifications to our signoff asp pages like changing the questions, texts, shortening field lengths etc... I also have copied the files and reused them for other domains

    asp 1:
    Basically I have a signoff asp script... that asks
    a. name b. email address
    (then submit)..
    this data is written to a sub folder's text file with the same name signoff.txt...
    See more | Go to post

  • jerger
    replied to how to create an about box, with swing gui?
    in Java
    my program is already created. i have buttons and gui and everything... i had some help from someone in its initial creation. i just placed all my info in the right side of the program for now
    See more | Go to post

    Leave a comment:


  • i have a java/c++ program that needs an html link or to use a link

    I found a great page that reads a language i need in the program... is there anyway to have a clickable or launching html link from my program? all i have is copy/paste.

    also is there a way i could implement their embeded link to my program?

    this is the link i need :
    http://www.lomation.co m/hmong/reader/index.php

    this is the embed link i want to experiment:
    http://www.lomation.co m/hmong/...
    See more | Go to post

  • jerger
    replied to how to create an about box, with swing gui?
    in Java
    hmm i am unfamiliar with how to code in java so it will take some practice. any help on invisiable or adding a button to a button? (is it action, then another button?)
    See more | Go to post

    Leave a comment:


  • jerger
    started a topic how to create an about box, with swing gui?
    in Java

    how to create an about box, with swing gui?

    I have a swing gui application wrapper that wraps my c++ dictionary program. how can i add an about box to one of my buttons? this way users can contact me and find updates. if someone has code, or files that would help!
    See more | Go to post

  • how can i make that work with a cstring, and in c++? it currently works pretty well/fast but only for like 8 punctuations
    See more | Go to post

    Leave a comment:


  • jerger
    replied to how to remove periods , punctuation from cstring
    in C
    interesting!!! how could i incorporate that?

    well i made a double case statement and it works awesome for now with no memory overflows or crashing:

    //punctuation removal
    //case statement loops until punctuation is moved
    //this prevents error where only one punctuation is fixed and it moves on, this catches quotes and punc."
    //default is when input is good/cleaned

    len = strlen(in);...
    See more | Go to post

    Leave a comment:


  • jerger
    replied to C++ string to lowercase method?
    in C
    i think i posted this at 5am or after waking up lol i thought it was my original post, my bad!
    See more | Go to post

    Leave a comment:


  • jerger
    replied to how to remove periods , punctuation from cstring
    in C
    can you expand on this? i'm a little confused. what do you mean by "skip the punctuation"??? how can i remove it then? thanks!

    how can i ignore the chars while making the temp? sounds like a better idea with less if statements
    See more | Go to post

    Leave a comment:


  • jerger
    replied to C++ string to lowercase method?
    in C
    oh, umm... well this works now hehe. so thats good, the last post is what i had to do to make it work...

    but your probably right too..

    i just need to find a way to not crash now if the user types ............... .....

    if there is more then one symbol in a row of the same type it crashes, which bewilders me. i posted my code so please mods dont get mad if i post it again, so i was thinking maybe i should...
    See more | Go to post

    Leave a comment:


  • jerger
    replied to how to remove periods , punctuation from cstring
    in C
    errr only problem is if i enter like 30 periods it crashes the program 0.o
    See more | Go to post

    Leave a comment:


  • jerger
    replied to C++ string to lowercase method?
    in C
    since in is cstring... i had to store another cstring as a temp

    so i have cstring temp

    so

    temp = In // In is my real input complex [999]

    in = temp.MakeLower( );

    then it works! check out my other threads if you need help with cstrings and removing punctuation
    See more | Go to post

    Leave a comment:


  • punk is int, len is int, in is cstring

    //punctuation removal
    //while loop checks several times to catch all punctuation

    while (punk < 10){
    len = strlen(in);
    if (in.Left(1) == '"')
    in = in.TrimLeft('"' );

    if (in[len-1] == '.')
    in = in.TrimRight('. ');

    if (in[len-1] == '"')
    in = in.TrimRight('" ');

    if (in[len-1]...
    See more | Go to post

    Leave a comment:


  • jerger
    replied to how to remove periods , punctuation from cstring
    in C
    punk is int, len is int, in is cstring

    //punctuation removal
    //while loop checks several times to catch all punctuation

    while (punk < 10){
    len = strlen(in);
    if (in.Left(1) == '"')
    in = in.TrimLeft('"' );

    if (in[len-1] == '.')
    in = in.TrimRight('. ');

    if (in[len-1] == '"')
    in = in.TrimRight('" ');

    if (in[len-1]...
    See more | Go to post

    Leave a comment:


  • jerger
    started a topic how to remove periods , punctuation from cstring
    in C

    how to remove periods , punctuation from cstring

    len = strlen(in);
    if (in[len-1] == '.')
    in = in.TrimRight('. ');


    you have to declare len, and use cstring for in...

    this took me forever lol and its so simple.. i need to set it up for ! points now...

    sorry if this is not relevant it took me weeks to figure this out lol and im excited
    See more | Go to post

  • woot 4am i figured it out!

    len = strlen(in);
    if (in[len-1] == '.')
    in = in.TrimRight('. ');
    See more | Go to post

    Leave a comment:


  • i think i have to do something like this with the cstring, but not sure what to do yet to make it not crash

    len = strlen(word); //this line made it stop crashing but now has no effect


    //original post
    if (in[len-1] == '.' || in[len-1] == '?')
    in[len-1];= '\0';

    //only works if i use == instead of =''\0" , if i do that i get error like cant use l-value

    ...
    See more | Go to post

    Leave a comment:


  • jerger
    replied to C++ string to lowercase method?
    in C
    i don't have permission to post the code so i can post parts...

    char In[999];
    CString in;

    cin >> In;
    in = In;

    then in is sent through the dictionary. it gets it from the input In.... (in does)

    so... if i do in = "love", it will always search love... therefore in depends on In, for what to input.

    i never used "cstring" before, so...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...