in Search
     

Browse Site by Tags

Showing related tags and posts accross the entire site.
All Tags » VB.NET (RSS)
  • How To: Capitalize the first letter of every word in a string

    Ever thought of how to capitalize the first letter of every word in a string? Here's how: [C#] using System; using System.Globalization; namespace KeithRull.CapitalizingLetters { internal class Program { static void Main( string [] args) { string textToTransform = "keith, you need to post more...
    Posted to Weblog by keithrull on 08-19-2008
  • C# or VB.Net

    im curious of what are the preferences of developers . i can recall some friends sharing their experiences on interviews answering questions like " why C# not VB ?" or vice versa . im a c# guy and i love the language . but i dont know what language do you prefer . i know they make use of the...
    Posted to Weblog by trashVin on 04-16-2008
  • .NET Team Leader urgently needed will be assigned in USA - please hjelp!!!

    Hi everyone, We currently in need of a .NET Team Leader/ System Analyst to be assigned for a month in the USA . He should be: Male, w/ experienced in migration project (VB.NET) Willing to work in the US Has assumed team leader post and has done system analysis of the project. Interested applicant may...
    Posted to Forum by ruthie_osi on 03-30-2008
  • Urgently needed VB.NET Programmer

    Optimum Source,Inc. is a business process outsourcing company located in Ortigas Center,Pasig City. We have a new project and currently in need of the following positions: Lead Programmer Programmer Tester and Documentation Project: COBOL project migration to VB.NET Qualifications: For Lead Programmer...
    Posted to Forum by ruthie_osi on 02-27-2008
  • The New DataRepeater control in VB.NET

    The new DataRepeater control included in this version of the Visual Basic Power Packs allows you use standard Windows Forms controls to display rows of your data in a scrollable container giving you more flexibility and customization than standard grid controls. The following illustration shows two forms...
    Posted to Weblog by Anonymous on 02-23-2008
  • Are you a VB.NET Fanboy? Then come to ILoveVB.NET!

    I'm still a big fan of VB.NET even if I haven't touched a single VB.NET code in a year and one the biggest VB.NET fanboy I know has just started a website all about the good things you can do with VB.NET. Chris Williams (VB.NET MVP) has just started a website called ILoveVB.NET . The idea is...
    Posted to Weblog by keithrull on 11-28-2007
  • Generating random strings in C# and VB.NET revisited

    Somebody sent me an email today asking me about an article I wrote a few years ago detailing how to generate random strings and numbers in C# and VB.NET . He asked me if I could add function to the code that creates a random character set to be used as a base for the allowed characters in the random...
    Posted to Weblog by keithrull on 11-28-2007
  • Short-circuit evaluation in C# and VB.NET

    In my early years of college as a CS student I learned about short-circuit evaluation . Short-circuit evaluation denotes that the second argument is only evaluated if the first argument does not suffice the value of the expression. I found out that short-circuit evaluation in C# is different from VB...
    Posted to Weblog by n.ocampo on 09-27-2007
  • Use Membership API in Winforms

    I usually code my own authentication module in my Windows Application but since i have been playing with Web Applications lately, I thought, maybe there's a way to use the Membership API inside System.Web on my Windows Applications. So after playing and Googling around i have made it worked. Below...
    Posted to Weblog by Comgen on 08-14-2007
  • Hashtable, ListDictionary and HybridDictionary

    In the most basic case, the Hashtable class is used to do mapping of key/value pairs of objects. For example, assume that you have User ID mapped to User's Fullname: Hashtable users = new Hashtable(); users["001"] = "Marasigan, Raimund"; users["002"] = "Marasigan...
    Posted to Weblog by leonidas on 08-13-2007
Page 1 of 2 (15 items) 1 2 Next >