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 Wanet Telecoms Ltd 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: markknowsley
  • Content: Threads
  • Order by date
  1. markknowsley

    Efficient searching algorithm

    I want to write an algorithm that will search through a list of documents held in a database and pick out those documents that are duplicated once or more, and show the location of each copy of the document. Here's the process I normally follow for such things with a few hundred rows: 1...
  2. markknowsley

    Restricting databases seen in SQL 2005

    I've installed SQL Server 2005 Management Studio Express on a colleagues PC and granted her access to only one database on one server. When she expands the server, she can see the full list of databases on that server (although if she tries to open any of the other databases that I haven't...
  3. markknowsley

    Installing 32bit .net framework v1.1 onto 64bit server

    I noticed the following anomoly today when I was installing v1.1 of the .NET Framework onto a 64bit w2k3 server. 64bit w2k3 won't run 32bit applications using the framework by default so you have to run a script. The .net framework installation package actually tells you to do this - and the...
  4. markknowsley

    XmlDocument.Save()

    I've written a method which takes an XmlDocument passed from a Biztalk orchestration and then appends some information to the XmlDocument. I now want to save the changes that I have made to the document and send the modified document back to Biztalk. The document is in memory - I don't want to...
  5. markknowsley

    Concatenate results and insert into field

    Imagine I have the following table: |*******|*******|*********| | EmpID | Value | History | |*******|*******|*********| | 000001| 13.62 | | | 000001| 20.22 | | | 000001| 12.90 | | | 000004| 18.11 | | | 000004| 30.01 | | | 000004| 15.90 |...
  6. markknowsley

    Deleting XML nodes

    I have some XML in the following format: <employee ID="000001" Initials="G" Surname="RUSEDSKI "> <summary batchnumber="00841" batchitem="01" claimmonth="1" claimyear="2007" Miles="154" amount="27.72" AuthStatus="Rejected" vmodifiedby="" vnotes=""/>...
  7. markknowsley

    Deleting nodes from XML file in C#

    Using the following XML file as an example: <?xml version='1.0'?> <Collection> <Book Id='1'> <Title>Principle of Relativity</Title> <Author>Albert Einstein</Author> <Genre>Physics</Genre> </Book> <Book Id='2'> <Title>Cosmos</Title> <Author>Carl...
  8. markknowsley

    'Unable to connect to remote server' when trying to pick up RSS feed

    I'm trying to write small asp.net app to pick up and display data from an RSS feed. I've used the code sample available on http://aspnet.4guysfromrolla.com/articles/031903-1.aspx and modified it into C#. When I run the app, I get the following (summarised) error message: Unable to connect to...
  9. markknowsley

    Call a C# class from within ASP.NET

    Here's my problem; I'm trying to write a small web - based application that will update some of the fields in Active Directory. The app uses ASP.NET. The problem is that I keep getting a 'General Access Error' when my app tries to commit the changes. Microsoft states that this is a problem with...
  10. markknowsley

    Web Log analysis from Share Portal 2003 web server

    The organisation that I work for wants to do some analysis of Share Portal useage. The way I understand it there are two different useage logs created - one of these by IIS, the other by WSS. I can see where the WSS logs are output to (that information is available on the Share Portal Central...
  11. markknowsley

    How can I 'fool' the NBC website?

    Hi, I live in the UK and I want to watch 'Heroes' online on the NBC website. However, when I select an episode the player tells me that it can't connect because 'the clip isn't available in my area'. I'm guessing that IE is seeing my browser settings and disconnecting me because I'm in the UK...
  12. markknowsley

    Troubleshooting WSS Adapter in Biztalk 2006

    I'm trying to get Biztalk 2006 to receive XML files from a Sharepoint document library and send them to another library on the same site. I've followed both these tutorials: http://msdn2.microsoft.com/en-us/library/aa560513.aspx...
  13. markknowsley

    Laying out controls in SP 2003 Web Parts

    Can anyone tell me if there is a better way to layout controls on web parts than the example below? What I do at the moment is create a series of tables containing TableRow and TableCell. For example: Table tbHeader = new Table(); TableRow tbHeaderRow1 = new TableRow(); TableCell...
  14. markknowsley

    C# Class Files

    This is more of a Visual Studio .NET question than C# specific, but there's no forum for that so this is the next best thing. My question regards the update of class files. I have three seperate projects in Visual Studio .NET, and I want them to use two class files which contain tools I have...
  15. markknowsley

    Writing XML Schema notation

    I'm working on a specification document that involves the mapping of two XML Schemas. Is there a correct way to write out the "path" of an XML schema element? For example, if I were writing a formal specification that was instructing someone to use a particular Method in C#, i would tell them...
  16. markknowsley

    Any alternatives to &lt;p&gt;?

    Hi, I would normally use tables to layout text on a web form, but I've been having a go at using CSS to do the same and found that it is much more powerful. My question regards the spacing of lines; normally I would use the <tr> command and insert web controls such as labels inside. I could...
  17. markknowsley

    Form layout using CSS - make div respond to position of others

    I want to design a web form using CSS, with the layout as follows: -- HEADER -- COL1 -- COL2 -- FOOTER -- However, I want the footer DIV to be positioned according to the height of both column DIVs - I'm going to add a number of controls to each column and I always want the footer to appear...
  18. markknowsley

    Laying out controls in CreateChildControls()

    I've got some controls in a web part, and I want to try to lay them out a in a table. So I've got the following code: public override void CreateChildControls() { lblLabel = new Label(); lblLabel.Text = "Some Text"; this.Controls.Add(lblLabel); txtSearch = new TextBox()...
  19. markknowsley

    Using MSMQ from Share Portal 2003 web part

    I have created a web part, and I want it to be able to insert a message into an MSMQ queue. I have written a small web app on my local machine that can talk to an MSMQ fine, so I understand how to communicate with the queue. The problem is that I keep getting a security error whenever the web...
  20. markknowsley

    Problem with 'Copy Web Site' option in Visual Studio 2005

    Not sure if this is the right venue for this question, but here goes; I use Visual Studio 2005 to design and deploy some asp.net websites. I connect to the virtual directory on the remote IIS server and copy my files across, and Visual Studio shows both sets of files (locally and remotely) as...

Part and Inventory Search

Back
Top