Disable debug build assertion warning in firefox
Sunday, January 20th, 2008Firefox debug version has a lot of assertion warnings.
I felt confused that they are not got fixed even in latest version 3
A way to disable the warning is here:
Firefox debug version has a lot of assertion warnings.
I felt confused that they are not got fixed even in latest version 3
A way to disable the warning is here:
It is good to keep some programming tips we used.
To get the filename of the application, most of the time you can call:
sFileName := Application.ExeName; // or sFileName := ParamStr(0);
Htmlsnapshot is a component to convert html or url to image. It can be used to build large scale URL to image conversion system. Here, the large means the system is designed to convert millions of URLs to image in the future.
My recommendation for making a robust system is to use process based method. There are […]
You may have a favourite song want to share with your friends or customers etc on the internet. They can listen to the music in internet explorer or firefox without installing any music player.
MP3 Steam Creator is designed for such purpose. It creates streaming Flash audio from mp3 file on the fly. And it also supports batch […]
VML is a kind of vector based graphic format.
html snapshot can convert VML to image like jpg, tiff etc.
In Win2003, there is an “IE enhanced security” component which may restrict some behaviour of rending vml to image.
When I first try to register our ActiveX component such as htmlsnapshot, an error is shown,”DllRegisterServer in xxxx.dll failed.Return code was:0×80070005″.
0×80070005 means “Access Denied”, but I’ve been an administrator. I think this is related to the new security model in vista.
We have been asked about licensing models by some customers. Here are some clarifications.
For end-user products:
Single user license: the license is applicable when only one user will use it.
Site license: the license is applicable when the product will be used by a group of people in a company.
When converting html to image, html snapshot will hold a bitmap in memory.
Some html will result a large image which will use a large amount of memory.
If you are a developer that is looking for one the solution for the following tasks, then you come to the right place:
php script that will take screen shot of website
convert html text into an image in asp.net
convert html to image
html to image conversion in asp.net, .net
html to jpeg converter
web site to thumbnail in C#
capture html page in […]
We added a method to PDF security.
IsEncrypted(String file)
This function will return 1 on an encrypted PDF, 0 on an unencrypted one. It will return negative if there is any error.
PDF file format supports javascript. The script can access the pdf document object model like the HTML DOM.
When doing pdf encryption or decryption, it is necessary to keep the javascript information.
You may have a lot of html files to convert to image. It is very easy to do it with html to image.
In your Windows explorer, do a search for the html files in some folder on your disk. Explorer will list all the html files in the folder including sub folders.
The shortcut created by MSI installer may be a GUID, not directly points to an executable.
You can have a look at the word or excel shortcut if they are on your desktop.
The magic behavior of MSI is that if it finds some dependency is missing. It will run the setup application again. That is so […]
Normally when a html page is fully loaded, there will be an event generated by web browser.
Pages with flash movie can be different. Since flash movie has a feature that loads itself from servers. With this feature, it is hard to tell when the flash movie has been fully loaded. The web browser first downloads a […]
After purchase, there will be a code sent to you via email. Normally the order email will be sent in several hours. If you don’t receive it, please check your spam folder (sometimes, it may happen). If it is not there, please send email to us. We will help check the status.
Our Audio Record component has simple playback functions for mp3, wma, ogg or wave files.
You can use play object in C# easily like the record object since it is a standard COM object like the record one.
WINDEV, a powerful IDE, lets you build strategic projects easily and quickly thanks to its total integration, ease-of-use and cutting-edge technology.
Support .Net, Java code and more!
I don’t use Windev before. This Windev example is kindly provided by one of our customers.
Software always has “bugs”. This is because the software running environment varies a lot. You may use a computer which installs incompatible programs, or you may lose some dependency DLLs that the program requires, or the software developer like us didn’t consider carefully on certain scenarios. Don’t worry about bugs too much. We will find way […]
Some times you may not want to write the image converted from html page to an image file. You may want to write the image data to another place like a network stream or a database, etc.
GetImageBytes is designed for this kind of scenerio. It is used to do in memory compression of the bitmap […]
After integrating html snapshot with your application, the next thing may be redistributing it so that every user of the app. can convert html to image by installing your app.
For registered users, it’s totally free to redistribute the htmlsnap2.dll.
Since htmlsnap2.dll is an ActiveX server, it must be registered like any other ActiveX component on […]
When doing html to image conversion with html snapshot, the image will be rendered with current display context.
So to achieve the best image quality, the display mode needs to be in true color mode, either 24 or 32 bits. Almost every video card can support the above mode nowadays.
The other thing related is […]
Currently html snapshot converts the whole html document into an image.
Html document may be very large so the resulted image will be large as well. If the video card ram memory on the machine is low, the bitmap image may not be able to be held for rendering. So it will lead to a snap […]
Html snapshot ActiveX is a thread safe COM component. It uses single apartment COM threading model. So if you want to use multiple instances of html snapshot in several threads, you can create work threads and in each work thread create the html snapshot object, then you can convert html to image in the threads.
Some people may want to fax a html document in their application. First it is necessary to convert the html document into image that the fax driver can understand. Fax machines typically support TIFF format which supports multiple encoding scheme. Html Snapshot has full support for TIFF encoding. It supports LZW, CCITT3, CCITT4 and RLE (Pack […]
Some customers want to convert text to audio in web sites with Active TTS. They may use ASP, ASP.Net as program languages and use IIS as the web server.
If they query the voice installed on the system in such script languages, they will find there are only SAPI4 voices listed. The reason behind it is […]
Some times I saw some visitors to our web site by search for “JPG to html”.
We don’t have a jpg to html product. What we have is html to image solution including end-user product Html To Image and development tool Html Snapshot. Their function is to convert html to image such as JPG, PNG, TIFF […]
Active TTS is a standard COM component that is supported by .Net framework.
I was often asked about a question about Active Audio Record component: Can I detect the input audio level without start recording?
The answer is NO. The reason is that if the recording is not started, sound card doesn’t sample any input signal then no audio level can be returned.
This article will discuss how to use html snapshot to convert html to image (JPG, TIFF, GIF, PNG and BMP) under IIS (with ASP or ASP.net)
First, we will discuss IIS 5.0 on Windows XP.