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: *

  1. ashorton

    MSXML - CreateNode using XPath?

    I would like to 'createNode' using an XPath. Is there a method in MSXML 4 to do this? If not does anyone know how?
  2. ashorton

    How Shell Context Menu from only file name

    I have just located a link that solves this problem: Microsoft Knowledge Base Article : 132750 support.microsoft.com/default.aspx?scid=kb;en-us;Q132750
  3. ashorton

    How Shell Context Menu from only file name

    Is it possible to access a files shell context menu using only the files path. Then display it at a specific position? Anybody know if this is possible?
  4. ashorton

    Apache mail api

    Is it possible from a windows workstation to access Apache mail server api whether Apache mail is running on windows or unix server? I would like to use C++ to drop emails into apache and also collect emails. Even, if possible, to get Apache to notify a windows application that mail has arrived...
  5. ashorton

    Attach a text message to mouse pointer?

    Does anybody know if it is possible to show a text message that is attached to the mouse pointer and moves with the mouse pointer?
  6. ashorton

    XMLDOM loading give Access Denied

    I am using Microsofts XMLDOM in Javascript. It works fine! Except when the XML file I wish to load does 'not exist' and the path is 'not local'. When this happens I get 'Access Denied' message and no error reported. Any idea's
  7. ashorton

    How can I change the height of ComboBox?

    Thanks, it worked.
  8. ashorton

    How can I change the height of ComboBox?

    I have placed a Combobox onto a Dialog but need to be able to change the height of the actual control not the height of the drop down window! I also noticed that you can not change the height of the control in the dialog editor only its width.
  9. ashorton

    IE6 and document.body.scrollTop

    I have found a solution to my problem. if(document.documentElement.scrollTop) { y=event.clientY + document.documentElement.scrollTop; } else y=event.clientY + document.body.scrollTop;
  10. ashorton

    IE6 and document.body.scrollTop

    Can anybody help me. I have a script which uses event.clientY + document.body.scrollTop to position a window. Since IE6 the documeny.body.scrollTop always returns 0.
  11. ashorton

    Referencing Crystal object in VC++

    Hope this helps you. 1 Open Visual C++ 6.0 if it isn't already running. 2 From the File menu, select New. In the New dialog box select the MFC AppWizard (exe) from the Projects tab. Type in MyRDC for the Project Name and click OK. 3 From the first step in the wizard, select "Dialog...
  12. ashorton

    How to embed an image in an html styled email

    I have found the answer on the web site below: http://www.technobreeze.net/synopsis/htmlemail/ The URL of the image must point to a website containing that image.
  13. ashorton

    How to embed an image in an html styled email

    I have an application written in visual c++. This app requires that a html styled email is generated and sent from the application. The Html page needs to include and image. When the email is received the image is not there. Is there a way of attaching an image to the email and pointing the IMG...
  14. ashorton

    Any IDE macro to inform of file position

    Does anybody have or know of a Macro for the Visual C IDE that can report the character count from the beginning of a file to the cursor position.
  15. ashorton

    Close a Modal Dialog by clicking outside the Dialog

    What I really need to know is: Is it possible to force a modal dialog that I have created by clicking the mouse outside of the dialog window. Similar to a popup window. The dialog class would have control so I would need to trap the mouse click from the dialog class.
  16. ashorton

    Close a Modal Dialog by clicking outside the Dialog

    I have a Modal Dialog Window. My problem is that I would like to simulate IDOK when the mouse is clicked outside of the Dialog. Any idea's Should I be using a modeless dialog? I have not used these before.
  17. ashorton

    Find out if an elements containing DIV is hidden

    I have a collapsable tree view where each section can be either hidden or visible. I do this using several DIV tags. Within each DIV there is a series of input elements. When I access an element within a section using Javascript I need to know if the section (DIV) that contains the element is...
  18. ashorton

    Too many droplist's with Internet Explorer and Windows 98

    I generate a web page with a lot of droplist controls, 50+. Using Internet Explorer 5.5 running on Windows 98 the page will display the droplist's as blank rectangles. If the page is scrolled using the IE scroll bar the screen will plastered with droplist's. This does not always happen. Has...
  19. ashorton

    How to construct a post string on submit?

    I have a placed a table in a form. The table behaves like a grid reading data to and from a javascript array. The problem I have is when the form is submitted how can I get the browser to create a post string from the array rather than from the form. I idea I have is to dynamical add hidden...

Part and Inventory Search

Back
Top