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 strongm 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. johnny2bad

    ComboBox DataBinding not altering dataset

    Nells, Do you have a web server that you could post the control on (in zip format perhaps)? JohnD "What we need is a list of specific unknown problems we will encounter.
  2. johnny2bad

    ComboBox DataBinding not altering dataset

    Nells, I'd love to see it. Anything to make my life a little easier. JohnD "What we need is a list of specific unknown problems we will encounter.
  3. johnny2bad

    ComboBox DataBinding not altering dataset

    Nells, The only thing I came up with was to use the validated event of the combobox to set the appropriate field in the "Header" table to equal the combobox's selected value. dsDRF.Tables("Header").Rows(0)("Terms") = cmbWhseTerms.SelectedValue I hope this helps. Please let me know if you...
  4. johnny2bad

    Convert Dataview back to Datatable

    I tried it using .RowFilter and .RowStateFilter, but it dumps the whole dataview into the datatable. JohnD "What we need is a list of specific unknown problems we will encounter.
  5. johnny2bad

    Convert Dataview back to Datatable

    When you update a DataView, the DataTable that it is referencing is changed. So it's been my experience that you should be able to pass your DataTable to the Backend process and all your changes will be there. JohnD "What we need is a list of specific unknown problems we will encounter.
  6. johnny2bad

    Computer Inventory

    I'm not sure on all of the items that you asked about, but recently I needed to determine the OS of a system that one of my apps was to be installed on and I found this: http://support.microsoft.com/default.aspx?scid=kb;en-us;304289 Hope it helps. JohnD "What we need is a list of specific...
  7. johnny2bad

    ComboBox DataBinding not altering dataset

    I have a VB.NET form that contains a ComboBox named "cmbWhseTerms". And a dataset (dsDRF) that contains 2 tables: "Header" - Contains header info. "Terms" - Contains a list of possible shipping terms. I created a relation between the two tables of the dataset using the "Terms" field in the...
  8. johnny2bad

    New Database Field Causing Problems in Formulas

    Thanks k, your statment worked perfectly! CR is so retarded! Why would a null cause it to fail? JohnD:Does 'Y' = Null? CR:No. JohnD:Well, then move on. CR:No. JohnD:Please. CR:No. JohnD:Pretty Please. CR:H#!! NO! GO AWAY!!! Thanks again k! JohnD (a.k.a Crystal Reports Hater)
  9. johnny2bad

    New Database Field Causing Problems in Formulas

    I have a report that was written in CR 8.5 that I am trying to modify. I added several new fields to one of the database tables then verified the Database successfully. I can use one of the new fields in a formula and it reacts correctly if the condition is met. But if the condition is not...
  10. johnny2bad

    Windows XP & lcase/ucase/mid etc

    I too had this problem and discovered that my reference to 'Microsoft CDO for NTS 1.2' was Missing. I looked at another box running XP Pro and found that the cdonts.dll was missing from my box entirely. I copied the dll over and set my reference to point to it and as avatarUY put it...voila.
  11. johnny2bad

    Detecting IIS Security Settings with ASP

    I have created a series of intranet reports showing info about production information. Many of the reports are available to all users, but some of these reports have information, which is considered to be sensitive and should not be seen by anyone except the production managers. I have placed...
  12. johnny2bad

    MS-Excel will not close.

    I am exporting a VSFlexGrid to a temp.xls file, then opening it in VB6, formating the workbook as needed. Then I am doing a saveas to save the excel file in the user's desired location. Everything works fine, until i run the process again. It seems that an instance of EXCEL.EXE is still...
  13. johnny2bad

    Method 'Open' of object '_Connection' failed

    Sorry about that. I meant to do so... 'General Module------------------------------ 'AS400 Connection Junk Public AS400Conn As New ADODB.Connection Public rs720 As New ADODB.Recordset Public cmd720 As New ADODB.Command 'SQL Connection Stuff Public conServer As New...
  14. johnny2bad

    Method 'Open' of object '_Connection' failed

    I just rebuilt my OS and reintalled all of my programs. A VB project that I have been working on for sometime now (on the old build) is now giving me the error: Run-time error '-2147220999(800401f9)': Method 'Open' of object '_Connection' failed I've looked up the error on the MS...
  15. johnny2bad

    Freezing Coloumn Headers

    That sounds more like what i had in mind. I'll have to look into that. Thanks John
  16. johnny2bad

    Freezing Coloumn Headers

    Yeah, i believe that i stumbled across that method a while back. But the more that I think about it, i think i am going to split the info up into different pages. To many things break as is without throwing somthing else in there that won't work in defferent browsers. I appreciate all your...
  17. johnny2bad

    Freezing Coloumn Headers

    I thought of that but some of the reports would extend beyond the sides of the screen, this would prove difficult to keep aligned when scrolling from side to side. john
  18. johnny2bad

    Freezing Coloumn Headers

    Is there a way using HTML, DHTML or Javascript to Freeze the Coloumn Header Row like in MS Excel? I'm writing a series of web based reports and I'm trying to keep from breaking the information up into different pages, but the users have requested that the coloumn headers stay visible even when...

Part and Inventory Search

Back
Top