Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Watts
  • Content: Threads
  • Order by date
  1. Watts

    Creating a File in the same Directory and the Application

    How can I create a file, append an array of characters to this file, and place the completed file in the same directory as the application? Any code examples would be great!
  2. Watts

    Drag and Drop from one Active X to another

    I have created two Active X controls, one is a CTreeCtrl and the other a video window. I want to be able to drag and drop from the TreeCtrl to the window. Is this possible (it should be) and if so what do I need to know to do it. My code is all in C++ MFC.
  3. Watts

    Drag and Drop from one Active X to another

    I need to know if the above topic is possible and if so, please explain how to go about it. I am working with a CTreeCtrl and another Active X that can be dropped into the same application or web browser as the TreeCtrl. The code is in C++.
  4. Watts

    Access Applet from Local Machine

    I built an HTML and java applet using a signed CAB archive. I run the HTML on my local machine and I get all sorts of securit exceptions. I know it has something to do with running from the same location as it is served. How do I get around this, so I can test without having to upload to a web...
  5. Watts

    Inserting Active X Control into Java

    Is it possible to insert an Active X Control into a Java application? I need to know how as soon as possible.
  6. Watts

    Calling CGI via #exec with Variables

    My embedded server allows SSI of cgi via the following method: <!--#exec cgi=&quot;function.fn 1&quot;--> Where &quot;function&quot; is the name of the C function and 1 is parameter passed to that function in C. However I want the following to work. <SCRIPT LANGUAGE=&quot;JavaScript&quot;>...
  7. Watts

    Lists, Frames, and Multiple Clicks Oh My !!!

    I have a web page that is split into 2 frames with a java.awt.List in the left frame and other selected applets in the right frame. The List works as a selection for which applet gets loaded into the right frame. Sounds pretty simple right? Well my issue is that when I click on the List a lot...
  8. Watts

    Mouse Events and User Defined Class

    I have developed my own class which consists of TextField and 2 DirectionButtons. This Class extends to a Panel and has all of the goodies that go along with that class except the following: I want to addMouseListener to my Object to handle mouseEntered and mouseExited events. As you'd expect...
  9. Watts

    onKeyDown Event Applying to Entire Document

    Here's the situation: (Code I Have): <SCRIPT> document.onKeyDown=handleKey; document.onKeyUp=releaseKey; function handleKey() { // does something } function releaseKey() { // does something } </SCRIPT> <BODY> <APPLET ---- onKeyDown=&quot;handleKey()&quot...
  10. Watts

    Global KeyListener (Mouse Leaves Applet)

    I want to intercept both a KeyPressed and and KeyReleased event for my entire Applet. The problem is I don't really want to add a KeyListener to every single object in the applet just to do this. Is there any way to intercept these events for the system? Secondly, is there any way to detect...
  11. Watts

    ErrorsBundle_en.* Not Found?

    It seems that when I create my java (*.jar) using Visual Cafe's deployment option and then put that file on the server and embed the applet into an HTML document, that when Internet Explorer makes a request for the (*.jar) file it also makes requests for these which it can not find...
  12. Watts

    Signing an Applet

    How is this done and what exactly does it accomplish? Can I use this to save files onto the Client's Machine?
  13. Watts

    Client Save from Server

    Here is a hypothetical. Say I have some data on a server that represents some sort of configuration and I want to download this information to the client machine and save it into a file for later uploads back to the server. Is there a security issue? Is this possible without special options in...
  14. Watts

    Comparing two identical Objects

    I have two identical object with both private and public members. I want to compare the two without having to traverse through all of the member one at a time. Is there any way to do this without writing my own function? Example (psuedocode): Rectangle rect1, rect2; {some code here}...
  15. Watts

    Apparent Impossiblity in Java

    I am only using AWT classes. Since you can not make a modal Dialog box with respect to the IE window that an Applet is contained in. How then would I pop up a save changes Dialog when the user leaves the site or closes IE? I know I can put code in the stop() function of the Applet, but since...
  16. Watts

    Forcing the Mouse to stay inside a Window/Frame/Dialog

    Is there any way to do this? I want to open a Dialog and force the mouse to stay inside the dialog until the Dialog is dealt with (closed).
  17. Watts

    Making an Applet the parent of a Dialog ?????

    How do make the parent of the Dialog object an Applet? My applet runs in a browser and I want all input to that applet blocked until the Dialog is dealt with. The Dialog constructor only accepts a Frame class as its parent. Since my GUI is running in an Applet, I don't have a Frame to assign as...
  18. Watts

    User Defined Class Frame Popup

    I have developed a user defined class that extend to the java Frame class. It creates a popup Frame with a simple message and a couple of button inside it. What I want to do is disable everything in the window behind this Frame until the user clicks on one of the buttons and the Frame closes...
  19. Watts

    NumericSpinner Component and mouseEntered Event

    This question refers to this component: symantec.itools.awt.util.spinner.NumericSpinner After adding mouseEntered event to this component, it seems to work backwards. You see every other component only handles the mouseEntered event if isEnabled()==true. The NumericSpinner handles its...
  20. Watts

    Using a Client Side Program to Setup IE Options

    You know about the IE option if you know anything about browsing the Internet. You know, all of those enable/disable buttons (Java VM, Security, Javascript, and such...) and the cache memory settings. You can also access these parameters via the Start->Control Panel method. Well my task is to...

Part and Inventory Search

Back
Top