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 strongm 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: tas2826
  • Content: Threads
  • Order by date
  1. tas2826

    using jmxremote to monitor java app

    I am just learning about the app montoring features available through JConsole. I am using jdk150_06 to monitor an app in development locally on a Windows PC. I set the property (-Dcom.sun.management.jmxremote) on the statup of my app jvm. I run JConsole, the JConsole comes up, sees the JVM, I...
  2. tas2826

    Integrating with MQ Series

    Not sure if this is the right place to ask the question, but here goes. I am fairly new to working with J2EE, about a year now. I work on an existing J2EE app deployed to WL 10. At a very high level we have an enhancement project in which a back end mainframe process is going to create a...
  3. tas2826

    How to get element height and width to match exactly

    Is there a way to get elements of different types to match exactly in size? For example, I have a textarea and a div. I want to make the div height and width match that of the text area exactly when the page loads. I have the following javascript called by onLoad()...
  4. tas2826

    How to check if form is dirty

    I have a form with several several types of input elements, hidden, text, radio, etc. The user can edit them. In which case when the form is submitted, the values are being passed. However, another action they can take is to do a search. The search performs an ajax call, returns some data...
  5. tas2826

    submit innerHTML of <div> with form?

    Can the innerHTML of a div be submitted with a form on a page? So for example, I have: <div id=mydiv>SOME TEXT</div> So, mydiv.innerHTML = SOME TEXT. Let's say mydiv is an element inside of the <form> tags of the page. When the page is submitted, how do I get the value SOME TEXT to go with...
  6. tas2826

    use of document.body.getElementsByTagName('*')

    Given the snippet below, let just say that elem[1] is a text input. How do I get the the type of input which would be "text", and the value that the text input contains? var elem = document.body.getElementsByTagName('*'); var getIt = elem[1].id; alert(getIt); //gives me the id...
  7. tas2826

    Making a readonly &lt;textarea&gt; scrollable

    I have a text area on a page that is used to hold auto generated comments based on user actions on the page. I do not want them to edit this textarea, so it is readonly. However, in IE then it will not scroll because the scrollbar is disabled too. I have to use <textarea>, so is there a way...
  8. tas2826

    Venkman and Firebug

    I had a thought trying to get a helpful js debugger in IE. Can you put the IE Tab add-on in Firefox, load a page, switch to IE Tab and then use Firebug or Venkman to debug js? I messed with it a little (IE Tab and Firebug) and it does not seem to work. Has anyone been able to do this or am I...
  9. tas2826

    indexOf() not working in IE 7

    I have a script that processes the innerHTML from a div on a page. The innerHTML contains <BR> tags. Basically I need to remove certain substrings from the innerHTML of the div and also its cooresponding <BR>. I am using some exist js for the removal and with the modifications I have made it...
  10. tas2826

    Using MSXML in a VS 6.0 C++ app

    I have never used MSXML, so bear with me. I have a small C++ app that receives a message via another app. The message received is XML format but is contained in a string and not passed as an XML doc. Stuck with this, nothing I can do about this part. So, I need to implement MSXML, I am...
  11. tas2826

    What's the difference?

    I am curious about something dealing with constructors in dialog classes. I have seen a certain way of doing the constructor and I wonder if it actually buys anything. Here is what I am talking about: FOO::FOO(CWnd* pParent /*=NULL*/) : CDialog(FOO::IDD, pParent), m_pSomeObject( NULL )...
  12. tas2826

    Exporting dialog resources

    Is there a way in MS VC++ 6.0 and/or VS 6.0 to export a dialog (buttons, dropdowns, etc.) and import it into a VB form or vice versa? I am in a position where I have to create some screens in VB that exist in VC++. I would prefer not to have to re-make the screens, i.e. add all the buttons...
  13. tas2826

    Interfacing with 3270

    Where I work we have a lot of mainframe legacy still in place. I myself am a windows developer, but often have to access TSO and 3270 sessions. I go an idea about writing an app to interface with the mainframe to do some specific functions, viewing logs, resetting passwords, etc., that I now...
  14. tas2826

    Pulling my hair out over dialogs

    My dialog has a dialog data section as follows // Dialog Data //{{AFX_DATA(CSpecialPayeeWarningDialog) enum { IDD = IDD_SPECIALPAYEE_WARNING }; CStatic m_payeeNames; //}}AFX_DATA However, when I compile the dialog I get the error. C:\Projects\ta_root\TaGui\SpecialPayeeWarningDialog.h(81)...
  15. tas2826

    Message Box Position

    I have a scenario where the size and position of a warning dialog is inconsistent depending on what is done with a modeless dialog that produces it. I have a modeless dialog that has a combo box that fires a kill focus event. If I tab out of the combo box the warning pops as expected centered...

Part and Inventory Search

Back
Top