I use and enjoy Beyond Compare. (www.scootersoftware.com)
I've found it quite useful for both file and folder comparisons. It allows editing and merging as well.
They have an eval version that runs for 30 days or so. Runs about $30.
RS
You will also want to make sure that the form (the one hosting the control or the one you are trying to .Hide) is Enabled. Otherwise, the 'invalid procedure call' message will ensue.
RS
Although it's been awhile since your post, this URL may be of some assistance. The thread has provided benefit to some, but not all:
http://www.codeguru.com/Cpp/I-N/internet/email/article.php/c3381
Good luck,
RS
You may also want to try this...
window.document.onkeydown = convertEnterToTab;
function convertEnterToTab() {
if (window.event.keyCode == 13) {
window.event.keyCode = 9;
}
}
Have you tried the native Open/Input statements in VB?
Open "c:\myfile.exe" For Binary Access Read As #<filenumber>
Input(<# of chars>, #<filenumber>)
Good luck,
RS
Informatik also offers a TIFF print driver.
A trial version is available on their website.
(There are other companies with similar products.)
Once the driver is installed, you can configure
a printer to use it, then programmatically print
your documents to that printer using Word or
Excel COM...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.