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. Jonathan

    Placing email in 'Sent Items' folder

    Although re-reading the original post, the method I described wouldn't work for Laaitie anyway. Oops. Jonathan tektips@jonathangeorge.co.uk
  2. Jonathan

    Placing email in 'Sent Items' folder

    True - a misstyping on my part. Laaitie (who started the thread) wanted stuff in the Sent Items folder. The method I described would place the message in the Outbox from where it would be sent. It would also place a copy in Sent Items, in the same way as happens when an email is sent manually...
  3. Jonathan

    Placing email in 'Sent Items' folder

    If you connect to Outlook, then create a new email and send it using the various objects, then a copy will be saved in the Outbox in the normal way. So use the CreateItem method of the Outlook.Application object, specify the type as olMailItem. This will return a MailItem object, you can then...
  4. Jonathan

    Trying to use a DLL function that returns a string

    I'm trying to use a DLL written in Delphi. Both of the functions in the DLL return a Delphi PChar, which is essentially a null terminated string. When I call the functions, the strings get passed in OK but the return values don't work correctly - one of the functions returns garbage and the...
  5. Jonathan

    Getting user name from logon id

    Is there any way, given a users NT logon ID, to obtain their full name? I've looked through the Win 32 API reference, but nothing leapt out at me... does anyone know how to do it? Thanks Jonathan jon_george1@hotmail.com Working against: Visual Basic, Access, Visual Interdev, VBScript...
  6. Jonathan

    How do I use a secured Access database

    Hi, I am trying to get Crystal Reports to use an Access 2000 database with user level security. As far as I can gather from the web site, there is a registry setting that you must set to point at the workgroup information file. However, I don't want to tie crystal to a single mdw file on each...
  7. Jonathan

    Setting the text colour of a disabled SELECT box

    Is it possible to change the foreground colour of a disabled SELECT dropdown? I have tried everything I can think of, and it still appears as grey text (although I can make the background colour anything I like). As a result, my form looks a bit rubbish. Please help! Jonathan...
  8. Jonathan

    "Unspecified Error" calling MTS object from ASP

    Troy, We never found the exact cause of the error, but by changing to the Microsoft ODBC Driver for Oracle (from the Microsoft OLEDB Driver for Oracle), we managed to make it go away. We also tried the Oracle OLEDB Driver, without much luck. It seems a bit of a shame to be forced to use the...
  9. Jonathan

    "Unspecified Error" calling MTS object from ASP

    Hi, I am getting an "Unspecified Error" message back from my MTS objects when I call them and I can't work out why. The exact setup that causes the problem is as follows: ASP page written in VBScript doing the initial call MTS Components written in Delphi. Database is Oracle 8.1...
  10. Jonathan

    Inter-window communication

    I'm not entirely sure what you mean by this. I understood that document.write is for writing new content to a page, rather than setting the value of a variable in that page. And I still can't work out how to call a function in the new page from the original page when they are both open in...
  11. Jonathan

    Inter-window communication

    I am writing some pages using Javascript as my main scripting language. The pages are for an intranet, so I know that all users will have IE5.5. What I'm trying to do is find out a way of calling a function defined in one page in another. My script on page A opens page B in a separate window...
  12. Jonathan

    XMLHTTP to XMLDOM

    Instead of this line: xmlDoc.loadXML(http.responseXML)???? try xmlDoc = http.responseXML Hope this helps. Jonathan j.w.george@virginnet.co.uk Working against: Visual Basic 6, Access 97, Visual Interdev 6, VBScript, JavaScript, Active Server Pages, SQL Server, Oracle 7, XML
  13. Jonathan

    Bitwise operators in PL/SQL

    Found it - its the BITAND function Jonathan j.w.george@virginnet.co.uk Working against: Visual Basic 6, Access 97, Visual Interdev 6, VBScript, JavaScript, Active Server Pages, SQL Server, Oracle 7, XML
  14. Jonathan

    Bitwise operators in PL/SQL

    This seems to me like it should be obvious, but I haven't been able to find out how to do it. In languages such as VB, VC++, Javascript, it is possible to do "bitwise comparison" on two numbers using AND, OR, etc. For example, 10 AND 2 would equal 2, since: 10 = binary 1010 2 =...
  15. Jonathan

    ZOrder problem

    I've set up some menubars on my web page which work by showing and concealing absolutely positioned DIV blocks. The problem I'm having with this is that some of my pages contain form elements (text boxes, drop down lists, etc) and these always end up in front of the menu blocks when they appear...
  16. Jonathan

    Write to NT Event Log

    Hi all, Is there a way of writing to the windows NT event log from VB script? Thanks Jonathan j.w.george@virginnet.co.uk Working against: Visual Basic 6, Access 97, Visual Interdev 6, VBScript, Active Server Pages, SQL Server 6.5, Oracle 7
  17. Jonathan

    XML Formatting Dilemma

    I am writing an app which allows users to search a database. I have put together some routines which do the searches, accepting several parameters and returning the data in XML. The data is then transformed to HTML using XSL files. As with most searches of this nature, I wish to paginate the...
  18. Jonathan

    UserControl_Terminate Event problems

    I think this problem is due to me missing something fundamental, but there you go. I am writing an ActiveX control to get some practice. I want to create an IP address control for use within VB (this control is present in the common controls dll but not the ocx provided with VB). In the...
  19. Jonathan

    relative path to linked tables?

    I don't believe it is possible to enter a relative path for the links. However, it would be possible for you to add some code to your "front end" database that will run at startup and relink the tables for you if necessary, using a relative path. There is an example of how to do this...
  20. Jonathan

    Writing Excel files from VB

    That code will work, but it's not what I'm trying to do. I want to be able to write Excel files directly, not create them in Excel and save them. I have found that under Windows 95 (the environment which my customer uses, so I can't do anything about it) creating several largish excel workbooks...

Part and Inventory Search

Back
Top