User Profile

Collapse

Profile Sidebar

Collapse
Rahna
Rahna
Last Activity: Jan 28 '08, 06:06 AM
Joined: Aug 31 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Rahna
    replied to Problem with Speech
    Hi,

    I used a software named 'Install Creator' of Clickteam.com. It has got the option to run the exe's while installing our application....
    See more | Go to post

    Leave a comment:


  • Rahna
    started a topic Move Cursor along with speech

    Move Cursor along with speech

    Hi,

    I'm using the DirectSS1 Speech Control in my VB 6 application. I tried to use the WordPosition Event to move the cursor along with the speech.

    the code goes like this

    Code:
    Private Sub DirectSS1_WordPosition(ByVal hi as long, ByVal lo as long, ByVal ByteOffset as long)
    
            RichTextBox1.SelStart=ByteOffset/2
    
    End Sub

    It starts moving the cursor from...
    See more | Go to post
    Last edited by willakawill; Feb 20 '07, 05:17 PM. Reason: please use code tags when posting code

  • Rahna
    started a topic Problem with Speech

    Problem with Speech

    Hi there..

    I have made an application in VB 6.0. It uses a text to speech engine ( DirectSS1). It works fine in my system which runs on Windows XP, and i had tried it on 98 as well as Windows 2000 and ME.It works fine in all these operating Systems. But the problem is, when i try to install it in some of the client machines (includes both 98 as well as XP) it doesnt work.

    i've used 'xvoice.dll' , Text-to-speech engines...
    See more | Go to post

  • Hi..

    Private Sub Command1_Click( )
    TabStrip1.Tabs( 1).Selected = True
    End Sub...
    See more | Go to post

    Leave a comment:


  • Hope this piece of code will help you to get started.

    Dim Ageconn As New ADODB.Connectio n
    Dim Ageset As New ADODB.Recordset

    Private Sub Form_Load()

    Ageconn.Connect ionString = "Provider=Micro soft.Jet.OLEDB. 4.0;Data Source=D:\MyDB. mdb;Persist Security Info=False"
    Ageconn.Open
    If Ageconn.State <> adStateOpen Then
    MsgBox "Error...!! ! Connection...
    See more | Go to post

    Leave a comment:


  • Rahna
    replied to Progress bar
    thnx..What i'm doing right now is somewhat as you suggested. Actually i'm using 2 databases. for the final result i've to traverse through both the databases(1 for documents and other for the keywords or fields), that's why it takes time.
    to solve this i first go through the database where i store the documents and took the count(its takes abt 2 or 3 secs). then i set the progress bar with respect to the count i got. then proceeded with the...
    See more | Go to post

    Leave a comment:


  • I'm not sure whether this is the right way to do this, but the code given below will help you to select the text.

    Text1.SelStart = 0
    Text1.SelLength = Len(Text1.Text)

    And to click a command button by pressing the 'Enter' key, set the 'Default' property of the button to 'True'.
    See more | Go to post

    Leave a comment:


  • Rahna
    replied to Progress bar
    hi,

    thnx for the reply..but i cant set the max to 26000. its just the number of documents and what i need is to search for the occurrence a word in these documents. and the word may or may not exist in a record. for ex, if i search for a word say 'murder' it retrieves only 500 records. so setting the max to 26000 wont do.

    and i dont want to use it a counter..i just want to show the user that some process is going on....
    See more | Go to post

    Leave a comment:


  • Rahna
    started a topic MDI Application

    MDI Application

    Hi..

    In an MDI Application, how to check whether a particular form is active or hidden??

    Thnks & Rgds,
    Rahna
    See more | Go to post

  • Rahna
    started a topic Progress bar

    Progress bar

    Hi to all,

    i've got a set of documents (almost 26000), and i've to search for a particular record. and of course it takes some time. So to let the user know that some process is going on, i put a progress bar. but the problem is i cant set the maxvalue..( there is no way to find the number times the word occur)

    the method i currently use is -
    i set the maxvalue to 500 or so and incremented the value by 1....
    See more | Go to post

  • Rahna
    replied to how can i open html page using VB 6.0
    Hi,

    You can open an HTML page using webbrowser.

    Here is a smple code -

    Private Sub Form_Load()
    brwWebBrowser.O ffline = True
    brwWebBrowser.N avigate App.Path & "Aboutpage.html "
    End Sub
    See more | Go to post

    Leave a comment:


  • Rahna
    started a topic Quick Launch

    Quick Launch

    How can i load an application or the database to the memory during startup, so that it will lauch faster. its very urgent.. if someone can provide me a piece of code it will be more helpful..

    Thanks & regards,
    Rahna
    See more | Go to post
No activity results to display
Show More
Working...