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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ashorton

  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.

Part and Inventory Search

Back
Top