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

    Truncating An HTML String

    I have a grid view on a web form (c#) in which there is a template field which is linked to a comments field in an SQL database which contains text formatted as an HTML fragment. This field can get quite long so I am trying to return a substring of the this formatted HTML (for example the first...
  2. TheVillageIdiot27

    XSLT Child Node Count Problem

    Hi I haven't used XSLT for ages so apologies for this... I have an XML document created by a database which maps out files and folders i.e. <root> <folder name=”folder 1”> <file name=”file 1”> <file name=”file 2”> </folder> <folder name=”folder 2”> <folder name=”folder 2a”> <file...
  3. TheVillageIdiot27

    TransmitFile and Update Panel

    Hi I have an update panel which has an async trigger which is a button which sits outside of the panel and during the VB event handler for the button a file is created on the web server. What I am trying to achieve is the "open /save" box that I get with my standard...
  4. TheVillageIdiot27

    SQL For XML Page

    I am currently upgrading a site from ASP classic to ASP.net (which is learning experiance for me), that relies heavily on SQL server 'FOR XML' stored procedures, which are used to create components all over the site. it is my intention to create on page which has a query string called "sql"...
  5. TheVillageIdiot27

    VB 2005 Setting Crystal Parameters

    I am trying to write a simple command line tool in VB to export crystal reports to pdfs. It's a bit of work in progress but I can't for the life of me seem to get parameters to work. an example of the command line syntax is "C:\runme.exe" /input="c:\myreport.rpt" /output="C:\test.pdf"...
  6. TheVillageIdiot27

    Passing Arguements to VB 2005 Console Application

    I am sure this must be quite straight forward but I can't seem to find an example on the net. I have half written a console application to export a crystal report as a pdf, but want to be able to pass the input report, output pdf, and any report parameters from a batch file so it might look...
  7. TheVillageIdiot27

    Crystal &amp; Visual Studio 2003 GAC problem

    Hi I have just started looking at Crystal with Visual Studio 2003, and played about with creating a simple a report / application with the intention of installing it around the company. However I am getting the error crysal reports engine needs to be installed in the GAC first - which I...
  8. TheVillageIdiot27

    Administrating HR Databases

    We have an HR database (for third party application) which we need to keep as secure as possible from everyone including members of our IT team (a direction from our HR department). There is a thin web client which most users access though the intranet which has one SQL server login and a thick...
  9. TheVillageIdiot27

    Max File Size for File Streaming in IIS

    I have an ASP page with the following code snippet which sends a file "strDocumentPath" back to the user. Set objFile = objFSO.GetFile(strDocumentPath) Response.Clear Response.AddHeader "Content-Disposition", "attachment; filename=" & objFile.Name Response.AddHeader...
  10. TheVillageIdiot27

    Filtering A User Group Policy Per Computers

    We have a group policy which installs software for the user, (some via zap files), which isn't available for the computer configuration part of the group policy. This works okay, but the problem we have that really we wanted to apply this policy the an OU containing a number computers instead...
  11. TheVillageIdiot27

    SQL Server 2005 File Sizes

    Hi I have a problem with with a fairly new installation of SQL 2005. There are a number of databases which are essentially copies of each other used for different purposes, Live, Training, Development etc each with on log file and data file. The problem is the physical files have become...
  12. TheVillageIdiot27

    SQL Server FOR XML (Stream?)

    I a trying to create an ASP page which I will be using for AJAX requests. The page needs to go to a SQL 2005 database execute a stored procedure (FOR XML) and return the results as XML - at the moment I have: 'Response.ContentType = "text/xml" Set objReportDBConn =...
  13. TheVillageIdiot27

    Set InnerHTML value to Null

    I am having a problem with a DIV that sits in a list like this: <ul> <li id="folder1" class="closed"> <a href="javascript:ajaxfunction('1')">Item 1</a> <div id="files1"></div> </li> <li id="folder2" class="open"> <a href="javascript:ajaxfunction('2')">Item 2</a> <div...
  14. TheVillageIdiot27

    Offset, But Central Flash Object

    I can't believe I can't get this to work accross more than one browser but here goes. I have a flash object at the top of a page sitting in a div cunningly called "header" underneath this there is effectivly two columns one 300px wide which contains the navigation and then the rest of the page...
  15. TheVillageIdiot27

    CDO Appointments

    I am having trouble creating a CDO Appointment in ASP and am wondering if anyone has any template code? So far I have rather cobelled together the following from my stock CDO mail code and the scant pickings I have found on the web, but I think I am a long way off something which works...
  16. TheVillageIdiot27

    XSLT:IF Date Problem

    I am having a problem with a part of of an XSLT. I have an XML file, part of which looks like: <tr tr_trdate="2005-09-12T00:00:00"/> <tr tr_trdate="2006-11-28T00:00:00"/> <tr tr_trdate="2007-01-01T00:00:00"/> In the corresponding part of the XSLT I need to filter out the older values (say...
  17. TheVillageIdiot27

    XHTML Fragment Constraint

    I have a requirement for a constraint which will allow only an XHTML fragment (i.e. could sit in a <div> element) and was wondering if anyone has ever come accross anything like this before. If I can't I would like to at least ensure charcters have been properly escaped e.g. '&amp;' but not...
  18. TheVillageIdiot27

    Access 7.0 and SQL Server 2000 ODBC

    I have an Access 7.0 file which is used my an application on our network which we would like access it from a SQL Server 2000 database but are currently having little success. At the moment we have tried to create a ODBC connection to the the access file using a standard Access driver. Then...
  19. TheVillageIdiot27

    XQuery - Maintaining Document Structure

    I have an XML Document which apes the replicates the file/folder structure on one of our servers so that a folder node can exist within a folder node and a file node can exist at any depth. My file nodes have there own custom nodes added to them which I am trying to query although this is my...
  20. TheVillageIdiot27

    CSS Menu Problem

    I am trying to redesign a site navigation system that is currently Table/JavaScript based into a List CSS design. I am at testing stage and I have got it largely working in Netscape but it doesn't seem to want to know in IE and I am not sure what I am doing wrong. I currently have <!DOCTYPE...

Part and Inventory Search

Back
Top