It's said that information stored in ttf files are strokes in bezier format. How to extract such information? i.e., what's the details in a ttf file? Thanks!
sduhd
Posts
-
TTF file format -
How to get the linked url from a document?HtmlElementCollection links = webBrowser1.Document.GetElementsByTagName("a"); foreach (HtmlElement link in links) { //if link links to some interested URL, navigate to link } Which property may I use to get the "a href=some url"?
-
how to get user-submitted info from BBS pages?I want to write code to download pages from BBS and then analyze the data. The first step is to retrieve the structure of the page. "webBrowser" has many methods and properties that sounds help. The main loop should be sth like this: foreach (HtmlElement elem in elemColl) { } I can get the elements easily. But how can I get the structure among the elements? How to get the user submitted info from the advertisements, signatures, links...... Thanks.
modified on Friday, December 21, 2007 12:35:18 AM
-
edit position (cursor? carret?) of richtextboxI want to store the edit position of a richtextbox and set the position back after I renewed it's contents. Thanks.
-
How to compile a txt into an exeMy program reads some data from a txt. I want to compile the txt into the exe itself, so I won't distribute the txt file. If possible, how? Thanks.
-
How to submit info programatically?It's an "event delegate", you cannot call it in your code. You can only use it at the left side of + or += operator. You know, I download an html document, it's written by other people. In the page there was a button. I want to emulate a "click" of the button in my program. I googled but no useful result.
-
How to submit info programatically?I used WebBrowser to get an html Document, in which there was a "Submit" button. I can get this HtmlElement. How to emulate a click in a program? Call the elem's Click is invalid, cause it's a delegate , it can only appear in the leftside of a + or +=. Thanks.
-
How to click a button in a programNo such method. I guess you are kidding me.
-
How to click a button in a programI used WebBrowser to get an html Document, in which there was a "Submit" button. I can get this HtmlElement. How to emulate a click in a program? Call the elem's Click is invalid, cause it's a delegate , can only appear in the leftside of a + or +=. Thanks.
-
embedded development problemProblem solved. Set up in the enviornment.
-
embedded development problemI am working on a Silicon Labroratories F340, and in my KEIL uVision3 I have found it in the "device database". I can make a project with this chip set. But when I compile the project, it showed error message "path for toolset undefined". I checked the tools.ini, it only contains my email address. Thanks.
-
How to send message to a windowI can get the handle of the window, it's another application. I want to send a "Ctrl+C" to the window. I think I should use the windows message system. But I don't know how to do. Thanks in advance.
-
Google Earth APII don't know why GE' designed it's API this way: you can get features like placemarks, but they don't have the Lon/Lat info at all! Yes, you can make GE "fly" there and then you can get the Lon/Lat via the camera, but the prerequisit is the feature's HasView==1. In practice I found most features don't have view. How can I get the Lat/Lon of a feature?
-
DEBUG:0xC0000005: Access ViolationThanks. I unchecked the "debug unsafe code" and reset exception settings, then it's OK.:laugh::laugh::laugh:
-
Debug failure before program runningWhen I debug my C# program in vs2005, I got the problem of first-chance exception:0xC0000005: Access Violation. The problem occured when vs loaded the dlls. If I run the exe outside the IDE, it's OK. I doubt that an anti-virus software I installed yesterday caused the problem. Before the antivirus installed, everything was OK. Can I config VS not load the anti-virus.dll? Please help.
-
DEBUG:0xC0000005: Access ViolationThanks. But I cannot open that page. :(
-
DEBUG:0xC0000005: Access ViolationThanks. I would not worry about it at all if the IDE ignored the problem and let me debug my program.
-
DEBUG:0xC0000005: Access ViolationWhen I debug my C# program in vs2005, I always met the problem of first-chance exception:0xC0000005: Access Violation. The problem occured when vs loaded the dlls. If I run the exe outside the IDE, it's OK. I doubt that an anti-virus software I installed yesterday caused the problem. Before the antivirus installed, everything was OK. Please help.
-
How to show registers while a program running?I want to write a program, while it runs, a window shows the hardware registers ax,bx.... just as the debugger does! Is there a handy control to show registers?
-
DrawImageUnscaled......why scaled?I draw an image in the form_Paint event handler: e.Graphics.DrawImageUnscaled(bmp,0,0/*panel1.Bounds*/); But the image IS scaled! The size of bmp is 2048*1900, but the whole image was drawn in a small area of the form, the width was 800 more or less. Why scaled? How can I make it unscaled?