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
Dan Morris
Posts
-
Good place to buy books... -
Getting HTML from Control.RenderThat worked. Thanks! Dan Morris
-
Getting HTML from Control.RenderThanks. I'll give it a try. Dan Morris
-
Getting HTML from Control.RenderI 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
-
populate drop down list with datasetNo. 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
-
Getting rid of SpywarePaul 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
-
Is it possible to hide your LAN from your ISP?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
-
VB6...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
-
VB6...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
-
ADO.NET and VBTry 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 -
WhidebyI'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
-
Basic differencesIt 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
-
Little VB .NET Syntax Problem!!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 -
RecommendationsSo 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
-
RecommendationsI'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
-
155 vs. millionsJust 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
-
CP ranking1-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
-
Real or Fake?Look's like Machu Pichu or something... Dan Morris
-
Book RecommendationsI 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
-
Indenting: spaces or tabs?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