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: bluebytez
  • Content: Threads
  • 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

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

    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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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 ? )
  13. 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 !
  14. bluebytez

    iis cant enumerate web sites because object already exists

    i reinstalled my windows 2000 server recently because of some problems, and after reinstalling, my iis is not working anymore ! everytime i open iis and try to manage my websites, it will not list my websites and gave me an error message = &quot;Can't enumerate web sites because of the following...
  15. bluebytez

    can't enumerate web sites because object already exists

    i reinstalled my windows 2000 server recently because of some problems, and after reinstalling, my iis is not working anymore ! everytime i open iis and try to manage my websites, it will not list my websites and gave me an error message = &quot;Can't enumerate web sites because of the following...
  16. bluebytez

    forcing landscape print

    Hi, Is there a way to force the browser to print in landscape mode ?
  17. bluebytez

    Print frame

    I would like to use window.print() to print the contents of a page but I do not want to print the &quot;Print&quot; button on the same page. Is there any way I can get around this ? Thanks !
  18. bluebytez

    Text Stream

    How do I add text into the middle of a text file ? I was trying to do it via textstream, but OpenAsTextStream would only allow ForReading only, ForWriting only, or ForAppending only. I need to look for certain occurences in the text file and replace it with other text. For that I would need to...
  19. bluebytez

    updating columns

    hi, i am trying to update 30 columns in a table but it's a hassle typing all the 30 column names in the update statement, is there a way to loop thru the column names ? the column names are col001 ... col030 thanks for the effort !
  20. bluebytez

    Printing on a client machine

    Hi, I have a problem developing a print function with webclasses. What I use is common VB print functions like Printer.Print and Printer.EndDoc etc. It all works well when tested, but after deployment, whenever users try to print, the output will be printed on the server's ( where the dll is )...

Part and Inventory Search

Back
Top