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

  • Users: codegirl
  • Content: Threads
  • Order by date
  1. codegirl

    emacsrc and key mappings

    Hi, does anyone have a "standard" .emacsrc file I can look at? The .emacsrc I have was customized by another user and has a bunch of special key mappings set up that I don't like, but I don't know enough about shell scripting to fix it myself. Even just a list of symbols used for special keys...
  2. codegirl

    Inheritance and Arrays

    I have an abstract base class, call it ABC. It has two derived classes, say Derived1 and Derived2. In another class, I need an array of objects of either Derived1 or Derived2. The problem is I don't know if the array elements should be of type Derived1 or Derived2 until run time. (I have a...
  3. codegirl

    MSFlexGrid scrollbar problems

    I have a funny feeling there will be a simple answer to this, but... I have a MSFlexGrid with the Enabled property set to False, because I only want the user to see the data, not to edit it. There are several columns that are not visible, and the horizontal scrollbar does appear, but when you...
  4. codegirl

    Display totals for each week

    To simplify my question, say I have a table called Invoices and the only two fields are Invoice_Date and Total. I want to display a list which lists the week ending date and the sum of the invoice totals for the week. The list needs to contain every week, not just the current week. Is there a...
  5. codegirl

    Errors with Update SQL Statement

    I already tried to add this thread but I don't believe it saved it, so I hope this isn't a double post! Anyway I am having problems updating my database. I'm using VB, and I'm pretty sure the error is in the query itself because I'm using the same connection code that I've used in several...
  6. codegirl

    My code works fine when I use ADO c

    My code works fine when I use ADO controls to search through the database. However, I get an error when I try to update the database. I haven't been using ADO controls for updating, adding, or deleting, rather I use this code: Dim conResult As New ADODB.Connection Dim cmdResult As New...
  7. codegirl

    Updating DataGrid (Willing to try other controls if necessary!)

    I have a datagrid tied to an ADODC that only displays some of the columns in my table. I want to update the other columns in code because the user does not know their values. Whenever the user tries to update the datagrid, it saves the changes automatically, then gives me an error because the...
  8. codegirl

    DataCombo box not displaying correct values

    I have a form that allows a user to search by any field in the database table. The PK is an ID number, and I have a DataCombo that lists all ID numbers in table so the user can easily select one. It's bound to an ADODC. Textboxes are used to allow the user to search by other field (such as...

Part and Inventory Search

Back
Top