Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

rryyjw

@rryyjw
About
Posts
12
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Does anybody know Workwise,Inc?
    R rryyjw

    I've got an offer from this company. I'm hesitating whether to accept this offer because I don't know much about it and i'm not sure whether it's a good company. Does anybody know it? Could anybody give me some advice? I appreciate any suggestions and comments. Regards Blinda

    Work Issues question

  • Question about calling SAPI from javascript.
    R rryyjw

    Suppose now I have a webpage with following content.

    How are you?

    Question about calling SAPI from javascript. I came across a difficult problem. Could anybody help me? Thanks!

    How do you do?

    And I use the following script to interact with the speech engine. var VoiceObj = new ActiveXObject("Sapi.SpVoice"); VoiceObj.Speak(p2.innerText, SPF_ASYNC); //SPF_ASYNC == 2 What I want is to highlight the word which is currently being read by the speech engine. So it's a synchronization problem. I think I have to handle the Word event of the SpVoice object. So I wrote the following signature. But what code shall I put in this function? function VoiceObj::Word(Number, Position, CharacterPosition,Length) { } Very thanks! Jie

    Web Development help question javascript tools

  • Javascript highlight words on a webpage
    R rryyjw

    Suppose there's a paragraph on the page which contains several lines of words. How can I highlight those words one by one, from the first one to the last one? It's just like reading through the paragraph. I think I have to use TextRange object and its getClientRects method. Could anyone help me? Very appreciate. Thanks Jie Edit/Delete Message

    Web Development question javascript help

  • IE Extension: How to add a button to the status bar?
    R rryyjw

    Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J

    .NET (Core and Framework) tutorial question

  • IE Extension: How to add a button to the status bar?
    R rryyjw

    Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J

    Web Development tutorial question

  • IE Extension: How to add a button to the status bar?
    R rryyjw

    Have you ever tried Google Notebook? After installing the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J

    C# tutorial question

  • IE Extension: How to add a button to the status bar?
    R rryyjw

    Have you ever tried Google Notebook? After installing the software, it will add a button to the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J

    COM tutorial question

  • IE Extension: How to add a button to the status bar?
    R rryyjw

    Have you ever tried Google Notebook? After install the software, it will add a button at the bottom-right corner of IE. Dose anybody know how to implement that ? Any reply is appreciated. Thanks R.Y.J

    C / C++ / MFC tutorial question

  • How to develop an ie extension similar as google notebook?
    R rryyjw

    Hi all, After installing google notebook, a button will be added to the right-bottom of ie. Does anybody know how to implement that? Very appreciate for any reply. Jie

    C# tutorial question

  • How to grab a web page using .Net 2.0 WebBrowser Control
    R rryyjw

    Hi All, I want to grab a page using WebBrowser Control (see code below). I try to get the page content through DocumentText property in "DocumentCompleted" event handler, but it seems that the event won't be triggered. The "Navigated" event won't be triggered either. However, the "Navigating" event does. I used to use HttpWebRequest/HttpWebResponse to grab webpage content, however, the drawback is that I can't get the full loaded page through it. What I mean by this is that maybe some javascript will execute to modify elements on the page after it's loaded, I call this page as full loaded page. I think using WebBrowser Control can overcome this drawback. It's just like a browser, and it'll execute those javascript after loading the page. But I can't make this control work correctly. Could anyone help me? I'm very appreciate. Thanks Jie using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace ConsoleApplication1 { class Program { static WebBrowser wb; [STAThread] static void Main(string[] args) { Go(); } private static void Go() { wb = new WebBrowser(); wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted); wb.Navigating +=new WebBrowserNavigatingEventHandler(wb_Navigating); wb.Navigated += new WebBrowserNavigatedEventHandler(wb_Navigated); wb.Navigate("http://www.google.com"); Console.ReadLine(); } static void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e) { Console.WriteLine("Navigating"); } static void wb_Navigated(object sender, WebBrowserNavigatedEventArgs e) { Console.WriteLine("Navigated"); } static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { Console.WriteLine("DocumentCompleted"); Console.WriteLine(wb.DocumentText); } } }

    C# csharp javascript com help tutorial

  • how to implement zoom operations in C#
    R rryyjw

    I think you should use javascript at client side to do that. IE has build-in zoom support. e.g. body.style.zoom = 120%

    C# csharp help tutorial

  • Question about grabbing webpage using WebBrowser Control. [modified]
    R rryyjw

    Hi All, I want to load a page using WebBrowser Control (see code below). I try to get the page content through DocumentText property in "DocumentCompleted" event handler, but it seems that the event won't be triggered. The "Navigated" event won't be triggered either. However, the "Navigating" event does. I used to use HttpWebRequest/HttpWebResponse to grab webpage content, however, the drawback is that I can't get the full loaded page through it. What I mean by this is that maybe some javascript will execute to modify elements on the page after it's loaded, I call this page as full loaded page. I think using WebBrowser Control can overcome this drawback. It's just like a browser, and it'll execute those javascript after loading the page. But I can't make this control work correctly. Could anyone help me? I'm very appreciate. Thanks Jie using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace ConsoleApplication1 { class Program { static WebBrowser wb; [STAThread] static void Main(string[] args) { Go(); } private static void Go() { wb = new WebBrowser(); wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted); wb.Navigating +=new WebBrowserNavigatingEventHandler(wb_Navigating); wb.Navigated += new WebBrowserNavigatedEventHandler(wb_Navigated); wb.Navigate("http://www.google.com"); Console.ReadLine(); } static void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e) { Console.WriteLine("Navigating"); } static void wb_Navigated(object sender, WebBrowserNavigatedEventArgs e) { Console.WriteLine("Navigated"); } static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { Console.WriteLine("DocumentCompleted"); Console.WriteLine(wb.DocumentText); } } } -- modified at 10:06 Thursday 14th September, 2006

    C# question javascript com help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups