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

  • Users: JerryLan
  • Order by date
  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...
  16. JerryLan

    Welcome screen woes

    I have a few computers with XP Pro which I have configured for a preschool so that the kids simply click on their icon and their desktop comes up. They used to have three choices Administrator (built-in), Teacher and Student. Administrator and Teacher have passwords. In order to install a few...
  17. JerryLan

    Chart Tricks

    I have a pie chart based on summary data with detail in the text. I want to gather all the catagories which do not make up more than 2 percent of the total and call them "All Others" on the pie chart, but leave the detail as it is, thus avoiding that mess of labels which bunches up into a black...
  18. JerryLan

    cannot log into windows 2003

    At this point then I would suggest calling in a local expert on restoring your environment. Someone probably has some hot way to fix it, but if this were me, I would take out the hard drive and see if I can back up the data by attaching it as a slave to another system. This would need to be a...
  19. JerryLan

    cannot log into windows 2003

    You probably deleted your own account. The fact that it allowed you to do this indicates that there is another administrative account with a password available for use. Hopefully you know the password. If not you can try to change it. Once you are sure you can login as the remaining...
  20. JerryLan

    How to create a backup domain controller?

    Log in to your 2003 Server and call up the Help and support center. Enter the words "Backup Controller" with no quotes. You will see all kinds of great info. Half way down the choices is "Creating additional domain controllers". That's really all you need. You will be replicating your disk...

Part and Inventory Search

Back
Top