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 Mike Lewis 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. Jagger

    How to connect a Crystal Report Control with SQL 7

    Hi... I need to connect dinamically a Crystal Report control to a SQL server witouh using ODBC. I want to use Ado (a string connection) but I don't know how to do it... I'm trying to do this: crpControl.Connect = "Provider=sqloledb;..." but it doesn't work because I read the connect...
  2. Jagger

    How to bind DataGrid Control to data brought with a SP..

    I think your solution can run, I will try with it... but, fortunatelly I have already found the solution and I want to comunicate that to you... You have to write the same lines that I wrote at the beginning of this thread, but you set the rs.CursorLocation = adUseClient before you execute the...
  3. Jagger

    How to bind DataGrid Control to data brought with a SP..

    Thank you Subhavs... I was trying to do that, but I cannot set the store procedure parameters to the ADODC... How can I specify those parameters in an ADODC control? Thanks again.
  4. Jagger

    How to bind DataGrid Control to data brought with a SP..

    Hi... I have some data that I bring from DB with a Store Procedure, and I want to put them in a OLE DataGrid control. I was trying to do it using a Ado data control but I think ADODC doesn't support sp with parameters. Now, I 'm trying to do it using an ADO command and a recordset, like this...
  5. Jagger

    Show a IE Window that doesn't have default buttons and menu

    Hi: I am developing a web site and I want to show an IE window that doesn't have default buttons and menu. I only want to see the document in that window without anymore. I want to know how to do that... If somebody can help me, I would thank you.
  6. Jagger

    Create Objects dinamically and access them in VB 6.0

    Nick: Here some of my code. Thanks. Private Function Button1_onclick() As Boolean Dim TotalControls As Long Dim Counter As Long Dim str As String Call LoadMask(Text1.text) Counter=LBound(maControls) TotalControls= UBound(maControls) str = &quot;<TABLE Border=0><TR>&quot; While Counter <=...
  7. Jagger

    Create Objects dinamically and access them in VB 6.0

    Hi: I am developing a DHTML based solution in VB 6.0. I have created objects dinamically using the OuterHTML command for adding HTML code to my page. My problem is that I cannot access those objects (their values and events) from my application after they were created. I used a JavaScript...

Part and Inventory Search

Back
Top