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 Mike Lewis 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. aesseal

    Using the Windows Auto Document Preview Control

    Does anybody know if there's any way of implementing the windows document preview control in an application? I'd like to be able to select a file name from the directory structure and display a preview of it, in a similar way to the thumbnails windows shows of pdfs/images/office documents etc...
  2. aesseal

    Building Project Disconnects Users

    Does anybody know if there's a way to build an asp.net project without disconnecting any active users? Whenever I debug or release any of my asp.net projects any active sessions are destroyed and active users are sent back to the login page. There must be some way around this, or you can only...
  3. aesseal

    On Error Resume Next problem

    You were right! I've been doing that for years as well! FYI I've changed it to: Public Function printFile(fileToOpen As String, printerName As String) As Boolean On Error GoTo handler printFile = True Dim sEdgeApp As SolidEdgeFramework.Application Dim sEdgeDft As...
  4. aesseal

    On Error Resume Next problem

    I have a problem with 'on error resume next', or indeed any other error handling routine. The problem is an error is thrown rather than the code entering the handler. The Code is here: Public Function printFile(fileToOpen As String, printerName As String) As Boolean On Error GoTo handler...
  5. aesseal

    Linked Table Memo Field Corruption

    I finally fixed it by adding the registry key: [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0] "NLS_LANG"="ENGLISH_UNITED KINGDOM.US7ASCII" Dan
  6. aesseal

    Linked Table Memo Field Corruption

    The same field is displayed correctly on my PC, so there can't be any carriage returns, it just doesn't display correctly on another. Dan
  7. aesseal

    Linked Table Memo Field Corruption

    I have an oracle table linked into as access 97 database. This all works fine, apart from a memo field in the table. The memo field shows only the first letter. When the cell is highlighted it shows all of the letters seperated by the little square character that means it doesn't recognise a...
  8. aesseal

    GMT/BST Date/Time Function

    I have a system that returns a date and time in GMT all year round. I need a function to find out if the date passed through is in BST or not and add an hour accordingly. Has anyone any idea if this sort of thing already exists? Thanks! Dan
  9. aesseal

    Shareware Licence

    Does anybody know where I can get a sample shareware licence agreement template from to add to the installer of my program? (All the agreements I've seen are between a company and an end user rather than an individual (i.e. me!) and the end user.) Thanks! Dan
  10. aesseal

    easy question: how can i add this to "href"

    Sorry, I forgot the &! <a href='./selectsurvey.asp?c=<%=callID%>&i=<%=incidID%>'>My Link</a> Dan
  11. aesseal

    easy question: how can i add this to &quot;href&quot;

    Have you tried: <a href='./selectsurvey.asp?c=<%=callID%>i=<%=incidID%>'>My Link</a> Dan
  12. aesseal

    Gauge, Dial Library

    Have a look at: www.componentsource.com They've got loads of different Dial ActiveX components available. Dan
  13. aesseal

    Network Ordering Problem

    That's not the point, if I turn on another PC (PC-2) after the PC with the problem (PC-1), then PC-2 can see PC-1 but PC-1 cannot see PC-2 until I repair the connection on PC-1. Dan
  14. aesseal

    Network Ordering Problem

    I have a PC on my network that will only recognise any deviced that are present when it boots. If I turn on the pc and then turn, for example, my adsl router or another PC, the PC won't find it. If I turn on the router before the PC it works fine. Selecting 'repair' on the connection fixes the...
  15. aesseal

    Is it TRIM?

    You can use the Right function, as below: strNew = right(strFilePath,len(strFilePath)-3) where strFilePath is the string you want to manipulate. This will give you all the string without the first 3 characters. Dan
  16. aesseal

    Adding Excel library gives puzzling &quot;type mismatch&quot; error

    Have you tried: dim buttt as ToolToggle.Button Dan
  17. aesseal

    Installer completes, then rolls back

    I have an XP machine that will not install or uninstall anything! The install or uninstall routine completes, rolls back and then reports that it was successful. It is logged in as an administrator, and I can't see anything wrong with it. Help!
  18. aesseal

    Query 2 Databases

    I'm afraid not, they're both client side Access databases.
  19. aesseal

    Query 2 Databases

    Does anybody know if it is possible to create a recordset based on a query across tables in different databases? I have one database with a table of customer details, one database with a table of customer visits and I want to get both customer details and visit details in a single query. Any ideas?
  20. aesseal

    Converting an Access Database

    Does anybody know how to programatically convert an Access database from 95 to 97 format?

Part and Inventory Search

Back
Top