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. kisslogicgoodbye

    combobox dropdownlist can't retrieve text

    I have a combobox with about 2000 company names in it. I want to be able to type in the box and have it jump to a record beginning with that letter. I want to pass the Value (which is the vendor number) and the Text (which is the vendor name) to a window that is called by this box. From what...
  2. kisslogicgoodbye

    how do I open a child based on info from the parent

    I have a parent form with a combo box with Company Name and ID. When a button is clicked, I want a child form to open that contains a datagrid populated from SQL2000. I want to pull only those records for the company that is choesen in the parent combobox. I'm missing some fundamental concept...
  3. kisslogicgoodbye

    binding combobox gives "can't create a child list for field Company"

    Well, I don't get the error, but my drop box is still empty. How would I print out a error from a dataset if it is filled during initialization?
  4. kisslogicgoodbye

    binding combobox gives "can't create a child list for field Company"

    I am trying to populate a combobox from a database. The table name is Company and the fields are CompanyName and Company_ID. this.comboBoxMMVendorContract.DataSource = dataSet1VendorContractList1; this.comboBoxMMVendorContract.DisplayMember = "Company.CompanyName&quot...
  5. kisslogicgoodbye

    doesn't exist in class or namespace error when creating a dataset

    That did it!!! I'm coming from Java where everything is explicit so it didn't even occur to me to try that!! Thanks, Jill
  6. kisslogicgoodbye

    doesn't exist in class or namespace error when creating a dataset

    I'm new at C# and .net - I'm not liking the gui interface for everything - I prefer just to type my own code, but anyway... I originally had: private System.Data.Dataset dataset1; error received: C:\VISION\DataEntry\DataEntry.cs(47): The type or namespace name 'Dataset' does not exist in the...
  7. kisslogicgoodbye

    doesn't exist in class or namespace error when creating a dataset

    private Dataset dataset1; doesn't work either. The type or namespace name 'Dataset1' does not exist in the class or namespace 'DataEntry.DataEntry' (are you missing an assembly reference?) Do you know anything else I could try? Thanks, Jill
  8. kisslogicgoodbye

    doesn't exist in class or namespace error when creating a dataset

    I created a dataadapter and connection. The .net interface says create dataset, I follow the wizard. I look at my code and all seems fine. I save and compile and I get the error: C:\VISION\DataEntry\DataEntry.cs(48): The type or namespace name 'Dataset1' does not exist in the class or...
  9. kisslogicgoodbye

    doesn't exist in class or namespace error when I create a dataset-.net

    I created a dataadapter and connection. The .net interface says create dataset, I follow the wizard. I look at my code and all seems fine. I save and compile and I get the error: C:\VISION\DataEntry\DataEntry.cs(48): The type or namespace name 'Dataset1' does not exist in the class or...
  10. kisslogicgoodbye

    why is my code and the browser view source code different

    Why is my code and the &quot;view Source&quot; Browser code different? Where did that javascript stuff come from? Here is my code: Language=&quot;vb&quot; AutoEventWireup=&quot;false&quot; Codebehind=&quot;restaurants.aspx.vb&quot; Inherits=&quot;restaurants.restaurants1&quot;%> <!DOCTYPE...
  11. kisslogicgoodbye

    datagrid columns aren't sorting

    THANK YOU THANK YOU THANK YOU!!!!!!!!!!!!
  12. kisslogicgoodbye

    datagrid columns aren't sorting

    All of the asp code... <form id=&quot;Form1&quot; method=&quot;post&quot; runat=&quot;server&quot;> <asp:datagrid id=DataGrid1 style=&quot;Z-INDEX: 101; LEFT: 21px; POSITION: absolute; TOP: 24px&quot; runat=&quot;server&quot; ForeColor=&quot;Black&quot; BorderColor=&quot;#999999&quot...
  13. kisslogicgoodbye

    datagrid columns aren't sorting

    I have a datagrid. &quot;AllowSorting&quot; is true. My column headings are normal underlined links. When they are clicked the page flickers as if data is being refreshed. The column sort doesn't change. Can any one help? VB Code Protected Sub DataGrid1_SortCommand(ByVal source As...
  14. kisslogicgoodbye

    my datagrid won't sort

    I have a datagrid. Allow Sorting is checked. My Column headings are links. WHen I click them, the page flickers as if it is refreshing data but the data sort does not change. Can anyone help? This is the code: Protected Sub DataGrid1_SortCommand(ByVal source As Object, _ ByVal e As...
  15. kisslogicgoodbye

    TextField text slides to the left and out of view

    I am using TextFields in Panels in order to get data to imput into a database. When someone fills in all of the info in the text fields, they submit and then the form refreshes itself from the database and includes info that the database assigns the record. Any field that was typed into...
  16. kisslogicgoodbye

    ASP error connecting to MS SQL database

    Thanks - silly error on my part
  17. kisslogicgoodbye

    error connecting to MS SQL database using Javascript and ASP

    I am getting the error: Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. here is my code (names and passwords changed to protect the innocent): var SQLConn = Server.CreateObject(&quot;ADODB.Connection&quot;); SQLConn.Open(&quot;DSN=acme&quot...
  18. kisslogicgoodbye

    ASP error connecting to MS SQL database

    I am getting the error: Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. here is my code (names and passwords changed to protect the innocent): var SQLConn = Server.CreateObject(&quot;ADODB.Connection&quot;); SQLConn.Open(&quot;DSN=acme&quot...

Part and Inventory Search

Back
Top