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

    Thanks for all the messages. theniteowl pointed me a little; I found one the regional settings applet, under the advance tab is a checkbox which if you set on will set the system accounts to the setting you have made. In Windows 200 there used to be a button but now it is hidden a little.
  4. 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...
  5. 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...
  6. 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
  7. rturner003

    SQL 2000 Replication cannot connect

    We do suspect the firewall changes to be the factor that made this go wrong, however we would also like to see if we can adjust setting to alievate the problem without having to rollback the firewall changes and lose the improvement they say it has made. Hence my question about adjusting...
  8. 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...
  9. 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...
  10. 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...
  11. rturner003

    Win 2000 and IE printing

    I have had a look at that and it is not the problem. I have also installed the latest manufacturers printer drivers, but I still have the problem
  12. 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...
  13. rturner003

    Inserting a HTML document into Word 2000

    I have set it up on portrait but I did once change the page to landscape and it still overflowed the page on the right. As for the margins they are the default settings. What I desire is that instead of just printing it out I want to included it in another document.
  14. 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...
  15. 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
  16. rturner003

    Word 97 - Merging Data Files with lots of fields

    Sorry All, I found my silly!!!! mistake, a comma was missing and that upset the apple cart.
  17. rturner003

    Word 97 - Merging Data Files with lots of fields

    Microsoft Word comes up with an error message as soon as you have more than 31 fields in the data file.
  18. 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...
  19. 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 =...
  20. 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...

Part and Inventory Search

Back
Top