You are here : HOME > ActiveX
Outsource your projects to thousands of programmers at ScriptLance.com
Late Night Activex Late Night Activex
Price : $44.99 $9.53

Average Customer Rating : Not yet rated

Editorial Review :

Discusses all aspects of ActiveX technology, providing descriptions of the different technologies. The book aims to teach programmers how to add dynamic content to their Web pages, and how to integrate existing applications with the Web.

Customer Review :

No review yet

Controls to Go: The Instant Toolkit for Web Site Developers, with CDROM (ActiveX) Controls to Go: The Instant Toolkit for Web Site Developers, with CDROM (ActiveX)
Price : $44.95 $44.39

Average Customer Rating : Not yet rated

Editorial Review :

The fast, easy way to enhance a Web site with ActiveX controls -- and learn Active X at the same time.
-- Two books in one! A complete ActiveX tutorial, plus a directory of ActiveX controls by category.
-- CD-ROM includes ready-to-use controls for animation, conferencing, database interfacing, financial applications, Web gadgets, games, multimedia, document viewers and VRML -- all organized by category.
-- Covers issues critical to Web developers, especially security, digital signatures, and licensing.
-- Expert guidance on how to embed any type of control into your existing Web site.

This book helps Web developers leverage the exciting benefits of Microsoft's ActiveX technology on their Web sites, whether or not they have any programming experience. It positions ActiveX among the growing number of technologies available for enhancing Web sites, including CGI, cookies, Java, JavaScript, Jscript, VBScript, and plug-ins. It introduces the fundamentals of ActiveX and shows how to determine whether ActiveX controls are the best solution for your audience, and your Web site. It presents fundamental techniques for ensuring maximum security while using ActiveX controls, including coverage of digital signatures and licensing. Introduces the ActiveX Control Pad. It also includes a detailed directory of controls on CD-ROM, including controls for the following applications: animation, conferencing, database interfaces, financial applications, gadgetry, games, multimedia, document viewing, and VRML. This is an extraordinary resource for Web page developers, Webmasters, and for any developer who wants to understand and implement ActiveX controls quickly.

Customer Review :

No review yet

Mozilla Activex Control Mozilla Activex Control
Price : Click to see price

Average Customer Rating : Not yet rated

Customer Review :

No review yet

Web Programming With Activex Web Programming With Activex
Price : $39.99

Average Customer Rating : Not yet rated

Editorial Review :

Mueller focuses on the market for developers that will be creating the ActiveX controls that "Scripters" will be calling with VB Script, Internet Explorer extensions or any other ActiveX enabling language. In addition, related ActiveX topics such as creating browsers, ActiveX client applications and ActiveX server applications will be covered. The CD contains all source code and sample programs from the book.

Customer Review :

No review yet

Leveraging Visual Basic with ActiveX Controls with CDROM Leveraging Visual Basic with ActiveX Controls with CDROM
Price : $45.00 $33.42

Average Customer Rating : Not yet rated

Editorial Review :

Built-in Internet functions are no longer a luxury. You have to keep your programming fresh and innovative to stay competitive. From file transfers to email to writing HTML documents, the controls you need are in this professional guide.

Customer Review :

No review yet

More Results : [First] [Prev] 21 | 22 | 23 | 24 | 25 | 26 | 27 [Next] [Last]

Questions & Answers
Question : How do I repair ActiveX controller on my computer?
I was trying to watch a video a few days ago and it wouldn’t play. It gave an error message that said something about an ActiveX controller being in error. Is there any way I can repair ActiveX controllers without sending my computer in to a repair shop? It seems like it should be something that normal people can fix. Please help.

Answer:
The good news is that it isn’t hard to fix this problem. The bad news is that you had better do it soon, or your computer might crash. Here’s an idea of what’s going on.ActiveX controllers are stored in your computer’s registry. This is a section set aside to store the controlling files for all your programs, including the operating system. When this starts getting cluttered or files get lost, the first thing you might notice is that your computer starts running slower. Then you start getting error messages. Then your computer crashes.Chances are, since you’re getting error messages for ActiveX now, there are probably hundreds of other problems in your registry that haven’t come to the surface yet. If you don’t fix it now, it only gets worse.Just a few years ago, you would have had to send your computer to the shop. Now they’ve developed registry cleaning programs to take care of this. The best one I’ve seen is here: http://optimize-your-pc.com/regcure/activex_errors.php. I’ve compared it to several other registry programs, and it’s hands down the winner. It’s faster, easier to use, and more thorough than the others. Highly recommended.

 

Question : How do I locate and uninstall ActiveX control on my computer?
I have allowed some websites to either install or run ActiveX control on my computer. I do not remember the websites to whom I have given permission. Now I need to know how to locate and uninstall ActiveX control from my computer.

Answer:
(1) Get you self a good antivirus or a free one . (2) If you have not already scanned your comp with spybot do that now .Update it and then run it so it gets rid of all the spyware and trojans (3a) Do an online virus scan to check if you still have any other viruses in your computer. And let us know if the online virus scan still finds any virus or spyware .(4) Download hijackthis

 

Question : What should I do in Dreamweaver to get rid of the activex warning in IE7 on a basic HTML page I make?
Whenever I make a basic HTML page (2 columns with header and footer) in Dreamweaver, and I preview it in IE7, an activex warning pops up. However I havent put anything fancy, and I dont get this warning when I go on sites that have flash or anything either.

Answer:
Well, i too have seen the same problem. But once you upload the files to a web server, the access it from there, no activex warning comes. IE7 may be showing this warning may be because some elements in your code needs access to the internet. Anyways, I these days I am using BlueVoda in addition to Dreamweaver, because creating a page in BlueVoda is much easier and faster as compared to dreamweaver.BlueVoda: http://www.vodahost.com/partner/idevaffiliate.php?id=10787_1_3_9

 

Question : Is their a activex option on access 2007 that lets you select a file?
I have an access 2007 database and would like to put something on my form that allows a user to select a file (that will be in an excel format) off of your computer to add to the table (basically this step is to make it more user friendly and would prevent you from having to go through the excel -> access wizard). I've skimmed over the list of activex things you can add and I wasn't sure if there was anyone that would work.

Answer:
I do not believe there is something already established. But you can easily create the code to do this. And it works even better if the data is always in a particular format on the MS-Excel worksheet.You can either create a text box on a form, where the user supplies a file name, or you can have the function always pull from a pre-defined file and directory path, or have the typical Windows dialog come up for them to do their own search and find of the file.You might need to establish an Import Specification and save that to use in your code.Here is an example: Private Sub RetreiveData(ByVal DataFile As String, ByVal FileType As String) On Error GoTo RetreiveData_Err DoCmd.TransferText acImportDelim, FileType &"ImportSpecification", "tbl_"& FileType, DataFile, True WriteHistory "Imported Data", "tbl_"& FileType, 0, 0, FileType MsgBox ("The quoted delimited text file has been read in and processed. "& vbCrLf & _"The data is ready for producing any of the available reports.")RetreiveData_Exit: Exit SubRetreiveData_Err: MsgBox "Error#"& Err.Number &": "& Err.Description & vbCrLf & _ Err.Source, vbOKOnly + vbCritical, "ImportData -- RetreiveData" Resume RetreiveData_ExitEnd SubI also have code to Select the File, if you need that as an example.

 

Question : How do I remove the ActiveX messege in Windows Media Center for PC and Xbox 360?
Whenever I try to go on the MCE browser on either my Xbox 360 or my PC, a messege pops up saying: 'An ActiveX control on this page might be unsafe to interact with other parts of the page. Do you want to allow this interaction?' I just want to remove the messege, not the program.It doesn't have that box that enables it to not come up.

Answer:
Whenever I try to go on the MCE browser on either my Xbox 360 or my PC, a messege pops up saying: 'An ActiveX control on this page might be unsafe to interact with other parts of the page. Do you want to allow this interaction?' I just want to remove the messege, not the program.It doesn't have that box that enables it to not come up.

 

Question : Activex????????????????????????
I have ActiveX Control, and whenever I try to play a video, there is no picture or sound. I tried to restart Internet Explorer and I tried to refresh the page but it's the same thing everytime. please help!!!!!

Answer:
It is nothing to do with active X .you need the appropiate playerallowing websites to install active X with no reason is not a good idea.☼

 

Question : How can i make my computer allow programs with ActiveX?
I want to play this game, but when i click on that game the window that the game is supposed to open on has this pop-up saying my computer does not allow this program because of ActiveX Control. I want to know how i can make my computer allow this program.i played this game before and it was working fine and now it doesn't work. So please help!

Answer:
How to Enable ActiveX Controls Press here http://www.ehow.com/how_4536796_enable-activex-controls.html

 

Question : How do I install the Toontown Activex Control without getting redirected every time?
Whenever that white bar comes, I click on the 'Install ActiveX Control' thing, but it always redirects me back to the Toontown homepage.Im very very frustrated because Ive tried it about a hundred times. Please HELP!

Answer:
You've got to install ActiveX from Microsoft's Windows Update page. Linkage depends on the version of Windows that you are using.There are tons of reasons why you may have trouble installing the ActiveX update, or the Toontown ActiveX control. The most common is probably security settings on your 'puter, or a 3rd party security program blocking the installation.For example, in Windows XP, you need to be logged into Windows with an account with Administrator privs.

 

Question : How can I check if Activex is installed in my computer?
I need Activex to run certain programs and I don't know if it is installed already or not. If not, is there a site I can visit to install it for free?

Answer:
If it's a Windows box, Activex support is native to the machine. You must use Internet Explorer to access Activex content.When accessing Activex content, specific Activex controls may need to be installed. You'll be prompted to install the control, but you'll have to decide if it is safe to do so. Tread carefully on untrusted sites since Activex is a known attack vector used by malware authors!

 

Question : Any way to detect the local files an ActiveX object is accessing?
A website I'm using uses an ActiveX control to check for unique visitors. For some reason, the site believes me to have visited before (I haven't) and will not give me the first-time-visitor benefits I am after. I have tried deleting the ActiveX object, clearing all cookies, even changing my IP, but nothing works. I am assuming that if must be checking for the existance of some dummy file it places on hard drives on the first visit. Somehow, I seem to have this dummy file (maybe because the guy who coded the ActiveX object got lazy and put the samme dummycheck in the control for some other site I also visited).Is there any monitoring software out there that can keep an eye on what the ActiveX controls are doing?

Answer:
You can search in the windows search box by "last accessed". If you know the time and date the activex control was running, you can look through all files accessed at exactly that time for something suspicious. Good luck!(However, the ActiveX control could simply be reading your installation ID, in which case all you can do is use a different computer)

 

Powered by Yahoo! Answers

 

 

Sitemaps: ASP, ActiveX, Ajax, CSS, Cold Fusion, DHTML, General, General AAS, Java Server Pages, JavaScript, Linux Web, PHP, SQL, XHTML, XML, XSL


Returns Policy | Privacy Policy

Copyright © 2008 - 2012 Web Programming & Scripting Books

|