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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JerryLan

  1. JerryLan

    Centering datagrid cell contents

    Sorry, I should have given you more. If it is a windows application you will want to have dataGridTableStyles defined. Somewhere in there you will define each column and have some code such as: this.dataGridTextBoxColumn1.Alignment = System.Windows.Forms.HorizontalAlignment.Center; You can...
  2. JerryLan

    Centering datagrid cell contents

    DataGridColumnStyle.Alignment.Center Regards
  3. JerryLan

    USB_BUGCODE

    Thanks for the reply bcastner. Unfortunately it did not uncover the problem as the bandwidth is only 12ma. It is very curious. I still am not ready to condem my ECS motherboard, although I understand that they are easy to condem. I am suspecting the scanner.
  4. JerryLan

    DataTables question

    One way is to use the DataView object. My C# code is off the top of my head. Syntax may not be 100% right. int colValue; DataView dv2 = new DataView(Table2); DataView dv1 = new DataView(Table1); dv2.RowFilter = "ColZ = 1"; colValue = dv2(0)("ColA").ToInt32(); //syntax? dv1.RowFilter = "ColA =...
  5. JerryLan

    USB_BUGCODE

    I am getting a Blue Screen failure which states that a USB_BUGCODE has occured. I have several USB devices attached via a powered hub which I have replaced. Also I tried a new card on the PCI bus. I also upgraded the power supply to 420 watts. None of this stopped the problem except when I...
  6. JerryLan

    convert listboxvalue to double???? VB.NEt

    gt, You will have an easier time if you pay particular attention to what type of value each of these methods returns. lbxWkid.SelectedItem will return a value of type ListItem. You might try using SelectedItem.Text If this doesn't work then you have to assume that your control is not...
  7. JerryLan

    DIFF two Access Databases

    No one has any ideas? This really seems needed as Access Design View requires you to click on each field name to see it's size, type and properties. This makes it hard to compare two similar tables/databases side-by-side.
  8. JerryLan

    DIFF two Access Databases

    I need to programatically print differences between two Accesss database schemas. I don't care about the data, just the schema.
  9. JerryLan

    DATABASE OPENS AS A READ ONLY FILE

    If you transfer files by CD or DVD from one place to another, sometimes files will take on the read-only attribute as files on a CD are obviously read-only. When this happens you simply right click on the filename, select properties and uncheck "read-only".
  10. JerryLan

    Schema - Access Databases

    I need to DIFF two Access databases for schema changes using C#. I have read that the GetOleDbSchemaTable method can give schema information that can be used for this purpose, but the command below yields a large structure with no usable data that I can find. Maybe I have the restrictions on the...
  11. JerryLan

    ListBox Javascript

    Does anyone have Javascript for limiting the number of selected items (lets say to 5) in a multi-select ListBox using ASP.NET?
  12. JerryLan

    CSS Tables and ASP.NET

    I refreshed the browser and it started working. Go figure. I didn't see a function for recalling posts. [sleeping2]
  13. JerryLan

    CSS Tables and ASP.NET

    Thanks Vragabond As I am implementing your suggested ideas I have run into a mystery. My style sheet applies to the page and correctly styles the text font and size. It also correctly styles the width of the label (I want the text to wrap). The problem is If I say: <label>Customer Name</label>...
  14. JerryLan

    CSS Tables and ASP.NET

    I see alot of talk these days about people bragging that through the use of CSS they have created complicated Web Forms which do not use any <table></table> tags. Does anyone have a link to a tutorial on how to accomplish this? I need to create user input forms which look similar to this: User...
  15. JerryLan

    Reinstall Failing

    It appears as though a malicious worker who was being fired uninstalled Norton Antivirus on the frontdesk computer and deposited viruses before leaving. I removed the hard drive and cleaned the viruses as a slave, but Norton would not allow a reinstall of the software due to its registry based...

Part and Inventory Search

Back
Top