Recent content by Mycroft999

  1. M

    ASP.NET and ACCESS problems

    I had similar problems myself when trying to use Access with ASP.NET several months ago. I never could get it to work so I switched to MySQL. I would rather have gone with SQL Server, but the web site I was working on has two stipulations: 1. Must use Microft ASP technology instead of PHP and 2...
  2. M

    Relational Database Design Book Recommendations

    I always have this book near at hand. Its an excellent source of ideas on how to model data, quite readable and reasonably compact. Just be aware that you will not always need to be nearly as detailed in your implementations as the models in the book...
  3. M

    Not realy art but its a funny screen grab

    I'm kind of guessing its that one driver update that's in there.
  4. M

    return rows 'x' through 'x' in db2

    Are we talking tables with multi-value/multi-subvalue field structures?
  5. M

    Web Calendar/Schedule

    ASP.NET actually comes with a calendar web control comes as part of the base .NET class structure. Also in the book Eric Meyer on CSS he devotes a while chapter to creating and populating a calendar devised from a table and styled using CSS. It isn't a huge leap to adapt this to a data driven...
  6. M

    In what font do you program?

    Ditto I use the basic shape of the code blocks to quickly get a sense of the flow. This is why it nearly drove me insane when I had to look at some code several other people had written that inluded If...Then statements written in just about every possible format known to man. And some...
  7. M

    Executing 1,000's of SQL Updates

    If this is a one time thing, why can't you have the DBA run this file directly on the server as a scheduled job late at night?
  8. M

    Why does this look like crap.....

    Looks fine in my copy of IE 6 and Firefox.
  9. M

    Newbie at designing sites

    Before you dive into how to execute the code for structure and style, do some basic and rough outlining. 1. Pick a color scheme for the site. Usually just a few colors that go togather. 2. Decide on navigation. Will it be on top or one the side? Will it be flyout/dropdown menus...
  10. M

    combo boxes in .net? [easy question, i'm slow :(]

    The answer to your questions, and a few more questions you haven't asked yet can be found on 4 Guys From Rolla Specifically this article will help you out: Creating A Data Bound Droplist Very good stuff there. Espcially if you have no access to VS.NET and don't like Web Matrix and have...
  11. M

    Doom III: Project Mars City (Comments Thread)

    I was just thinking along the same lines as you drakken. The case could probobly still have some infernal red type lighting and some UV going at the same time. The paint would still flouresce, but I don't know about the color. Can you get a decent red flouescent paint that glows but doesn't look...
  12. M

    ASP.net datagrid help

    I use template columns almost exclusively for the degree of control they give you over the contents. Here is a quick example of code I use to get a value in a column. Sub PolicyList_OnUpdateCommand (sender as Object, e as DataListCommandEventArgs) Dim PolicyMasterID as String =...
Back
Top