Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

Dan Morris

@Dan Morris
About
Posts
21
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Good place to buy books...
    D Dan Morris

    I'll second that. They are typically several dollars cheaper than other online stores. If you want to comparison shop Best Book Buys[^] will comparison shop for you. Dan Morris

    The Lounge java help

  • Getting HTML from Control.Render
    D Dan Morris

    That worked. Thanks! Dan Morris

    ASP.NET html tutorial question

  • Getting HTML from Control.Render
    D Dan Morris

    Thanks. I'll give it a try. Dan Morris

    ASP.NET html tutorial question

  • Getting HTML from Control.Render
    D Dan Morris

    I can get a Control to Render its HTML output to an HtmlTextWriter, but I am unable to get the HtemlTextWriter to give me the HTML string that it contains. Nor can I figure out from the documentation how to access the output stream object the writer references so that I can get the HTML from the original control. Any ideas? Thanks in advance. Dan Morris

    ASP.NET html tutorial question

  • populate drop down list with dataset
    D Dan Morris

    No. DataAdapter.Fill returns an int. If you want to return the Dataset you need to call Fill and return Dataset separately. da.Fill(ds) return ds Dan Morris

    ASP.NET tutorial

  • Getting rid of Spyware
    D Dan Morris

    Paul Selormey wrote: Tools Menu-->Internet Options...->(Privacy Tab) Pop-up Blocker -> Settings... That's only for Win XP SP 2 though, right? Explorer for previous versions of Windows was not updated, I don't believe. Dan Morris

    The Lounge linux beta-testing help

  • Is it possible to hide your LAN from your ISP?
    D Dan Morris

    Cristoff wrote: I don't know if he has the right to spy on any information how many PC do I have connected but anyway I don't want that he checks how I use my PCs without asking me or warning me. Why do you think that he can or cares to do so? If you've set up your router to deny unwanted incoming traffic as a firewall this should keep the ISP out as well as everyone else. Am I wrong? Dan Morris

    The Lounge question

  • VB6...
    D Dan Morris

    If that was done using an activeX control in the designer for the control you won't find any code for it. (One of the (many) annoying aspects of VB6) Your best bet on that is find a copy of VB6 whether on the client's machines or what have you, and get the info out of the project using the IDE. Dan Morris

    The Lounge csharp discussion announcement

  • VB6...
    D Dan Morris

    There's supposed to be a wizard that will help migrate VB6 code to VB.NET. I'm not sure if it's inherently part of VS.NET or not. I'm not aware of whether you can open a .vbp in VS.NET as I've never tried. Any chance you could get a look at the code from the client's network that would have VB6? Dan Morris

    The Lounge csharp discussion announcement

  • ADO.NET and VB
    D Dan Morris

    Try this if you want a data reader: Dim cnn as SqlConnection = New Connection(connectionString) Dim cmd as SqlCommand = New SqlCommand("SELECT * FROM Customer", cnn) Dim rdr as SqlDataReader = cmd.ExecuteReader() 'Now iterate through the reader While rdr.Read() Console.WriteLine(rdr("CustomerName")) End While ... Dan Morris

    Visual Basic database csharp sales help tutorial

  • Whideby
    D Dan Morris

    I've read that it will be 2.0 as well. And it supposed to be released later this year. Whereas Longhorn is a couple years out. Dan Morris

    The Lounge csharp dotnet question

  • Basic differences
    D Dan Morris

    It doesn't hurt to know both. Knowing both makes you more marketable. You will find that the language of choice for any given company is usually set by someone else. So in knowing both... if you apply for a position doing .NET development it doesn't matter whether they use C# or VB. Just my two cents... :) Dan Morris

    Visual Basic csharp c++ question

  • Little VB .NET Syntax Problem!!
    D Dan Morris

    The following should work: Public Property Notes(ByVal index As Integer) As String   Get     Return m_Notes(index)   End Get   Set(ByVal Value As String)     m_Notes(index) = Value   End Set End Property The when you're using the property: myClass.Notes(2) = "Some message!" Hope this helps. Dan Morris

    Visual Basic csharp help tutorial

  • Recommendations
    D Dan Morris

    So Vault has support for remote access? I saw this product listed in my search for source code control products and it looks good, I just need a sound argument for purchasing it over VSS which we currently own. Have you had any issues with it other than the admin UI? Dan Morris

    The Lounge collaboration question announcement

  • Recommendations
    D Dan Morris

    I'm looking for recommendations on version control software, either for or against a particular application. My company is finally looking into source code control. :omg::doh: We have MS Visual Source Safe 6.0, though we haven't used it. Should we stick with that or is there something better out there? We are a small shop of about 5 developers, one of which is off-site. We're finding that keeping track of versioning and backups is requiring way too much of our time. Any advice would be appreciated. Thanks. Dan Morris

    The Lounge collaboration question announcement

  • 155 vs. millions
    D Dan Morris

    Just goes to show what a few billion dollars placed in the right hands can do... The tobacco industry isn't afraid of lining a few pockets to ensure it's survival. Dan Morris

    The Back Room csharp html visual-studio com question

  • CP ranking
    D Dan Morris

    1-4 articles posted = Bronze. 5-14 articles = Silver. 15-24 articles = Gold. 25+ articles = Platinum. Each 500 messages posted adds one level, and if a user has posted a message then each year of membership adds 1 level. Bonus levels not valid for Gold members. Bronze is awarded at the beginning of the first 500 messages posted instead of the end. Dan Morris

    The Lounge css question

  • Real or Fake?
    D Dan Morris

    Look's like Machu Pichu or something... Dan Morris

    The Lounge question

  • Book Recommendations
    D Dan Morris

    I was wondering if anyone had any good recommendations for beginning C++ books. I've some experience programming (Java and VB) but I'm looking to take the leap to C++, and need a few good books. Any ideas? Dan Morris _____________________________________ "An eye for an eye makes the whole world blind." - Ghandi

    The Lounge c++ java question learning

  • Indenting: spaces or tabs?
    D Dan Morris

    Luca Leonardo Scorcia wrote: If only notepad had the Tab Size option... I use a cool little tool "TextPad" (I'm sure there are others like it) that is a suped-up version of Notepad. You can set tabs to whatever you'd like. I use it to quickly view files without having to open any IDE's. And it has support for syntax coloring for various languages etc. Check it out: http://www.textpad.com [^] Dan Morris _____________________________________ "An eye for an eye makes the whole world blind." - Ghandi

    The Lounge visual-studio com question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups