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

  • Users: rturner003
  • Content: Threads
  • Order by date
  1. rturner003

    CR XI MS Access secured database

    in .Net 2.0 how do I tell the Crystal Reports XI connection info the location of a system.mdw file to use. I can find properties for User Name and password etc crInfo.DatabaseName = appSettings.Settings["AccessDB"].Value; crInfo.ServerName = appSettings.Settings["AccessDB"].Value; crInfo.UserID...
  2. rturner003

    Data Cache not saving

    I am developing a asp.net (2.0) application which uses data caching to save data until the user completes all the tasks. I am using the following commands: Cache.Insert("Allocations" + strCacheNo, dtAllocations, null, System.Web.Caching.Cache.NoAbsoluteExpiration...
  3. rturner003

    Data Formating in VBScript ASP

    All the settings that I can find on my PC are set to UK date format of dd/mm/yy. When I run a ASP script that has for instance Response.Write(Now) the data is displayed in US format. Most of page that I am viewing/testing are written by someone else, the dates appear ok on the main service but...
  4. rturner003

    using varable with IN clause for an integer field

    create procedure p_test @cs varchar(200) as update decisions set subscription_date=getdate() where id in (@cs) The parameter cs would contain someting like '81,82,85' The field id is an int field I tried charindex which of course does not work as id is an int. Is their a better way than...
  5. rturner003

    Update a record but do not replicate!

    How can I update a record in a table that is replicated but not have the record replicated due to the 'type' of update. There is sometimes that we need to update a record but the replication customer does not need an updated record because of it. cheers
  6. rturner003

    SQL 2000 Replication cannot connect

    Hello, I am replicating from one server to asnother with a firwall between them. Three of the replications are transactional and one is snapshot. The transactional ones are schedule every hour and the snapshot once a day. Two nights ago they did someting to the Pix (firewall) and now one of...
  7. rturner003

    SQL2000 Replication using a view?

    I am fairly new to replication and I do not know if what I am trying to do is possible. In the the publisher database I have created a view that brings together four table (some outside of this database). When I set up the publisher I selected this view as article and using tranactional...
  8. rturner003

    Printing from IE 5.5. or 6 in Windows 2000 Pro

    Operating system: Windows 2000 Professional Internet Explorer: Covers IE 5.5 or IE 6 at least Printers: HP printers, a deskjet and a laserjet. Problem: In page setup of IE I set the margins to; top and bottom at 10mm and the left and right at 13mm. Both these are greater than the printer...
  9. rturner003

    Win 2000 and IE printing

    I have a mystery. My machine at work has Windows 200 Profesional and Internet Explorer 6. When it comes to printing from IE it ignores the margins I have set in the page setup. I have set the top margin at 10mm and the right at 13mm (both greater that the printers minimum) and cleared the header...
  10. rturner003

    Inserting a HTML document into Word 2000

    I have a html document which I save to a file using the save as command on IE. The document, apart from the first three lines, is completely made up of tables. The tables and columns are sized using percentages. When I insert the document into word the width of the tables vary, some overflowing...
  11. rturner003

    Word 2000 server name in path

    Is there any way of having the server name inthe path when using the filename field in Word 2000
  12. rturner003

    Word 97 - Merging Data Files with lots of fields

    I am creating comma delimted data files from an SQL database and merging that data into a prepared word template. The problem I have come up with is that there is a limit of 31 fields in Word (or a least Word 97). Does anyone know of a way around this? Can you merge with more than 1 data...
  13. rturner003

    communicating with windows from different servers

    On Microsoft IE I am calling up a page in a pop up window and it is also stored on a different server. My problem is communicating between these windows/pages. Window.opener just stops the JS working. The code that calls the popup is a follows: function popUp(URL) { day = new Date() id =...
  14. rturner003

    Strange proble with window.opener

    I have two applications, although it shouldn't matter one is sourced from perl and the other from asp, and they both carry out the same function but with different results. The function is that from a JavaScript routine a pop up window is called where a user selects from a list and then presses...
  15. rturner003

    webbrowser and object doesn't support this property ....

    I have tried several routines, on different browsers and different machines but when I try using the webbrowser control all I get is a script error of 'object doesn't support this propert or method'. For example this is a piece of code from a MSDN page: [OBJECT ID="wbp&quot...

Part and Inventory Search

Back
Top