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 SkipVought 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: bluebytez
  • Order by date
  1. bluebytez

    Nested tags in Web User Control

    Hi I am trying to build a web user control that will create a tabbed interface. In my aspx I would like to have something like this <uc1:tabbedcontrol runat=server id=tabbedpage> <tab><name>Tab 1</name><link>tab1.aspx</link></tab> <tab><name>Tab 2</name><link>tab2.aspx</link></tab>...
  2. bluebytez

    grab middle 100 records

    Thanks, Mike. ROWCOUNT work wonders!
  3. bluebytez

    grab middle 100 records

    Hi, I am trying to think of a solution to this problem. Let's say I have 10,000 records in my database and my web application displays the records in pages ( 100 records per page ). Let's say I would like to navigate to page 3, how can I write a stored procedure for Sybase ASE to return the...
  4. bluebytez

    Replication through a firewall

    Hi, I am trying to set up replication between two sql server 2000 with a firewall in between. How should I go about doing this ? Do I need MS Proxy Server or do I just set up the ip and port in the firewall to allow the two servers to talk to each other ? Am I right to assume that if the two SQL...
  5. bluebytez

    COM and ASPX problem

    Hi, I am trying to call a COM component from ASPX, but I keep getting an InvalidCastException, it seems that the QueryInterface for the object fails. I wrote the dll in another machine and exported it using COM+ Services. I've even tried to write a simple COM component which exposes only one...
  6. bluebytez

    COM and ASPX problem

    Hi, I am trying to call a COM component from ASPX, but I keep getting an InvalidCastException, it seems that the QueryInterface for the object fails. I wrote the dll in another machine and exported it using COM+ Services. I've even tried to write a simple COM component which exposes only one...
  7. bluebytez

    COM and ASPX problem

    Hi, I am trying to call a COM component from ASPX, but I keep getting an InvalidCastException, it seems that the QueryInterface for the object fails. I wrote the dll in another machine and exported it using COM+ Services. I've even tried to write a simple COM component which exposes only one...
  8. bluebytez

    Sybase ASE to MS SQL Server replication

    Hi, wondering if anyone can help me out here. I need to set up replication between a Sybase ASE and MS SQL Server. What are the best ways to implement this ? Would I need to purchase Sybase Replication Agent ? or is there a way to do it with SQL Server as the primary server ? Really appreciate...
  9. bluebytez

    Distinct columns

    Can i use distinct on more than one columns ? How do i construct for this then ? I am looking for distinct combination of a,b,c. That means all three a,b,c CANNOT be the same. For instance a = Name, b = Month, c = Year, d = whatever. I want a resultset where name can be duplicated ONLY IF the...
  10. bluebytez

    Distinct columns

    Hi i have a table with columns a,b,c,d and i want to insert it into another table with the condition that a,b,c is not the same. If a and b and c is the same, then don't insert. Either one is different, then insert. I can't use distinct because distinct can only be applied to one column. Can...
  11. bluebytez

    package and deployment include files

    Hi, I am trying to create a setup program for my application with Microsoft's Package and Deployment Wizard. I encounter a problem trying to include files with the same name but in different folders. For instance, I want to include file1.txt in folder1 and also file1.txt in folder2. The wizard...
  12. bluebytez

    nested counters

    Thanks for your input bperry. i agree that it's probably not a good idea to implement this. I will probably format the numbering in my ASP programming. Thanks again, I really appreciate your response.
  13. bluebytez

    nested counters

    Hi, can anyone help me with this problem ? I want to create a table with three fields, DeptID, StaffID and StaffCounter. The staffcounter is a counter for the number of staff in a department. Whenever the DeptID changes, I would like to reset the staffcounter. I don't think Identity works for...
  14. bluebytez

    Huge XML/XSLT Transformation

    Hi there, I hope someone can help me out with a problem I've been facing. I have an XML file which can potentially grow up to thousands of records. I would expect this to slow down the transformation tremendously. Also, I would like to implement dynamic paging and sorting in this huge XML file...
  15. bluebytez

    XSLT Replace

    try reading this :- http://www.exslt.org/regexp/functions/replace/index.html :)
  16. bluebytez

    XSLT Replace

    how about using regular expressions ? i think xslt supports that.
  17. bluebytez

    dynamic sorting in xml/xsl

    Hi, How can I implement dynamic sorting in xml/xsl ? ( ie. click on the column header and the table will be sorted according to the table ? )
  18. bluebytez

    XSLT Replace

    if i am not mistaken, in xsl, there is something along the line of xsl:substring. might be worth u checking it out. :)
  19. bluebytez

    Dynamic XSL

    Hi, what about if I do not want to use VBScript to do the transform ? ie I declare in the xml file which xsl stylesheet to use <?xml-stylesheet type=&quot;text/xsl&quot; href=&quot;template.xsl&quot; ?> How do I pass in parameters in this case ?
  20. bluebytez

    Develop an MMC Filter function

    Hi, I need some help developing a MMC Snap-in Application. Right now I am stuck trying to develop a filter function for the result listitems. Let's say my results are a list of machines, and I only want to view Pentium machines, how do I develop the mechanism for doing that ? Please help ! Thanks !

Part and Inventory Search

Back
Top