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: *

  1. cariaco99

    Problems with ManagedConnection - Leaking Memory

    Thanks for your help, sedj. I don't feel offended at all! I'm totally new at JAVA and I bascially translated code from ASP. 3 things: 1) You say is bad (and I know it!!!) but please, can you tell me why and how can I make it better? 2) Other than the catch, I don't see any difference. What...
  2. cariaco99

    Problems with ManagedConnection - Leaking Memory

    Hello there. I'm an ASP developer fairly new to Java, and I'm having a problem with the application I'm writing. Every time I run the app, it seems that I'm not closing something or I'm using the resources out of synch, and after 10 or 15 refreshes, I get a dreaded: No ManagedConnections...
  3. cariaco99

    DataGrid and textboxes not in Synch after RowFilter

    Hello there. I have a Form in a VB.NET Windows App that contains a DataGrid and Bound textboxes (so when the user clicks a row or cell in the gird, the Textboxes also display the selected record). When I apply a RowFilter to the DefaultView of the DataSet, the Textboxes dont get bound! I have...
  4. cariaco99

    Wild Search in DataGrid /DefaultView

    HI there. I have a DataGrid bound to a SQL table in a VB.NET Windows Application. How can I perform a search on all fields of the DataGrid/DefaultView? When I review the Find Method, it enforces to Grid to be sorted by a field, but I want to search a string in ALL fields. For instance, if I...
  5. cariaco99

    Accessing fields in another browser window

    Hi there, Let's say I have a pop-up window named commPilot, and inside this window there is a text field called DialedNumber and a Button named Dial. How can I access/reference this form from another browser window (not the caller/opener), so I can pass values and events to it? Thanks. Rafael
  6. cariaco99

    Exposing Treeview Activex Events in Custom OCX

    Thanks! I worked just like you wrote it. Rafael
  7. cariaco99

    Exposing Treeview Activex Events in Custom OCX

    Hi tehre, I'm developing an activex that contains treeview OCX inside. I'm placing the Activex Control in an ASP page and I would like to access the NodeClick Event from my Page. My CustomOCX is called HControl.ocx and inside there is a Treeview called myTreeView I tried: <script...
  8. cariaco99

    Can I make SQL read XML directories automatically?

    I need some help with XML & SQL. How can I set up MS SQL so it reads a 'virtual directory' where another cmpany wibb be dropping xml files with transactions. I need SQL to read the directory, and when it finds new dropped XML files, read them and trigger a stored procedure that will process the...
  9. cariaco99

    Reading Client Outlook Contacts

    I need to read the contacts for the client's outlook and put it in a SQL DB. I just don't know where to start. Can anybody guide me here? Thanks.
  10. cariaco99

    Help to Create a simple XML Document in COLDFUSION

    I'm fairly new at this and simply, I can't translate the samples I read in forums or books into what I need, which is below. Can anybody help? <?xml version=""1.0"" encoding=""ISO-8859-1""?> <BroadsoftDocument protocol=""OSSP"" version=""10.0""> <command commandType=""modifyUserService"">...
  11. cariaco99

    ColdFusion Studio 4.5 does not show files

    Hi there. I installed Colsfusion Studio 4.5 on my WindowsXP home computer and when I created the ftp account trying to connect from my house into the company's server The Site View shows the directories, but it does not show the files. Also, The RDS is created but when I try to open it...
  12. cariaco99

    Convert block of Rows to columns in SQL

    IT WORKED!!!!!!!!!! I added some extra filters to your query, but it worked at the third try and it's fast! Thanks!
  13. cariaco99

    Convert block of Rows to columns in SQL

    dnoeth: another member (nigelrivett) sent me this code, which returns the correct columns, but now it returns the ENTIRE table times the number of correct rows!: This is confusing (and I still haven't put inside the neccesary 'WHERE' to filter the answers, because the query should return in the...
  14. cariaco99

    Convert block of Rows to columns in SQL

    Thanks for the help, dnoeth, but your solution doesn't bring back the rows with 5 (or any number) columns, but it returns 1 concatenated column with all the results inside. Any thougts? Your help is much appreciated....
  15. cariaco99

    Converting Rows into Columns

    Thanks, Nigel. I almost got it!, but I don't know what I did wrong when translating your code into my real situation. I modified (just added a 'where' filter) select ResponseID , (select top 1 Answer from (select top 1 id, Answer from tbl t2 where t2.ResponseID = t1.ResponseID and...
  16. cariaco99

    Converting Rows into Columns

    Hi there. I have a table with the following record structure: ID TheGroup TheValue TheSubGroup 430093 47 MARQUEZ 1 430094 47 RAFAEL 1 430095 47 MONTREAL 1 430096 47 CANADA 1 430097 47 AMERICA 1 430113 47 MOORE 2 430114 47 ROBERT...
  17. cariaco99

    Convert block of Rows to columns in SQL

    Hi there. I have a table with the following record structure: ID TheGroup TheValue TheSubGroup 430093 47 MARQUEZ 1 430094 47 RAFAEL 1 430095 47 MIAMI 1 430096 47 FL 1 430097 47 33172 1 430113 47 MOORE 2 430114 47...

Part and Inventory Search

Back
Top