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 gkittelson 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. sylvanst

    Datagrid Data Results Returned

    jebenson. Thanks for the reply. Yes, in fact I do assign to the dataset as follows: Dim da As OleDbDataAdapter = New OleDbDataAdapter(sSQL, myConnection) ' create a new dataset Dim ds As DataSet = New DataSet ' fill dataset...
  2. sylvanst

    Datagrid Data Results Returned

    I have a datagrid that returns a tree like view when data is returned. It appears with a (+) and DataResults link. When you click the link it displays all the data just fine. How do I get rid of this first view so that the data in rows is displayed immediately? I've been looking for a...
  3. sylvanst

    problems displaying a .aspx page

    I have a .aspx page that runs fine when launching from design mode from localhost. I do have the .NETSetup installed properly on my machine. However, after I move my entire project to a different server and put all the files under a directory in Intepub I then try to load the .aspx page in a...
  4. sylvanst

    Cannot Close an ADO Recordset

    Hello All, I'm getting a run-time error 3704 that states "Operation is not allowed when the object os closed." when I attempt to close a recordset using ADO (2.5 Library). Here is my sample code: ********************************************************* Dim cn As ADODB.Connection...
  5. sylvanst

    Memo field truncating in report

    Hello, I have built an Access Query that includes a memo field. When I try to display the results of that query memo field in either an Access report or Crystal report the data truncates and doesn't display the full data result. The data in the memo field can get quite large and I want all...
  6. sylvanst

    Passing Prompt Variable from Query to Report

    Hello all, I have an Access Report that I want to prompt the user a specific date range to enter in the query. When the user types the beginning and ending dates in. How to I pass that variable data so it displays in the report? What syntax is used in the report to show this? I have the...
  7. sylvanst

    Writing and Retrieving Carriage Return Line Feeds - vbCRLF

    I'm having trouble inserting a vbCRLF within variable text into a SQL server database field. I'm trying to do something like: sText = sLogon & chr(13) & chr(10) objForm.ADORecordset("fieldname") = sText Or sText = sLogon & vbCRLF objForm.ADORecordset("fieldname") = sText...
  8. sylvanst

    Bug Error: "Row cannot be located for updating" using ADO

    Using ADO, I'm getting a run-time error number -2147217864 that states: "Row cannot be located for updating. Some values may have changed since it was last read." Article 300586 states that this is a known bug in VB6.0 enterprise and professional using the ActiveX Data Objects data...

Part and Inventory Search

Back
Top