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!

Recent content by NuWood

  1. NuWood

    Setting windows username inside app.

    Thanks for the info. The application is a 3 tier product and I have considered placing the file access into a 'server' app and streaming it but I need a quick solution for now. As for the username and password it would be stored on the database to which the clients have no access except via the...
  2. NuWood

    Setting windows username inside app.

    Hi I need to be able to set a username/password within the application I have developed so that the application can access network resources (folders) but the user of the app cannot. This is to protect the content of the folders as the app needs read, write and delete access but the user does...
  3. NuWood

    Crystal Reports connecting to Oracle 9i

    Microsoft ODBC for ORACLE is not ideal. Use the ODBC driver from ORACLE for your specific ORACLE version. This should have been loaded as part of your original ORACLE client install.
  4. NuWood

    dbgrid select records by code

    You can use the TBookmarkList class. myDbGrid.SelectedRows.CurrentRowSelected := true; Just traverse your dataset and set the CurrentRowSelected according to your needs for the current record. regards
  5. NuWood

    UNC File Copy

    Hi I am attempting to copy a file using UNC file paths i.e. \\server\somepath\somefile.txt to \\server\someotherpath\somefile.txt I am using copyfile but it does not work. If I change to path names such as P:\somfile.txt etc. it works fine. I get no exception it just fails to do the copy...
  6. NuWood

    Public db link Vs Private db link

    Hi If its owned by scott then you would need to use scott.SCOTT_link but as the link effectively gives access to another schema on another DB you may not be allowed to use it. regards
  7. NuWood

    Maintaining position after a Requery

    Hi I need to refresh datasets using ADO and the requery method. This works fine of course and I can maintain the record position so I don't go back to the top. Now If I associate a child dataset with this the requery of the parent causes the child to requery. Now I could of course record the...
  8. NuWood

    EMail Viewer

    Hi I need to view emails in the same way that OUTLOOK does. I currently use the DHTMLSafe ACTIVEX control from MS which leaves a lot to be desired. It is very fussy about the syntax of the HTML and then does not display anything. Does anyone know of an equivalent control that will render the...
  9. NuWood

    User Change in Windows 2000 affects DELPHI

    Thanks for the quick response I knew there was a quick way just didn't know the details Works great
  10. NuWood

    User Change in Windows 2000 affects DELPHI

    Hi I have used DELPHI for years logged into my PC running W2k. Now my company is growing I have a domain which I wish to login to instead of to the PC itself. This is fine except that when I run DELPHI all my extra VCL is no longer there. Does anyone know of a way of migrating your DELPHI...
  11. NuWood

    Displaing formatted HTML

    Hi The code worked fine but I only got the html displayed not the web page so it looked just like it does in the dbmemo. The PC is Win2k with IE6 on it. This is HTML from an email and is will look like the following ------=_NextPart_001_0045_01C40DAA.C158CC00 Content-Type...
  12. NuWood

    Displaing formatted HTML

    Hi Thanks for that but it still shows the HTML it does not interpret it. Is there a control to utilise the message window in OUTLOOK? This would seem to interpret email based HTML properly. regards Andrew
  13. NuWood

    Displaing formatted HTML

    Thanks Great idea but how do i feed a text stream into the TWebBrowser. I don't want to write a file to read it via a URL..... There has to be a simpler way
  14. NuWood

    Displaing formatted HTML

    Hi I have a database that contains a field which may well be HTML (the text is from incoming emails). Within my application I want to display the contents of the field. Which is fine with a dbmemo control. Trouble is it only shows the contents and does not format them as an HTML page. How can...
  15. NuWood

    Unique value independent of an IDENTITY column

    Hi I got no answer so I ended up doing this Created a table CREATE TABLE sss_unique ( id integer IDENTITY NOT NULL, dummy varchar(10) NOT NULL ) created a procedure create procedure sss_get_unique_ref(@ref integer output) as begin begin transaction insert into...

Part and Inventory Search

Back
Top