Sponsored White Papers, Webcasts, and Downloads
- TechRepublic Author Biography
I have been involved in technology since 1996. Throughout my career, I developed many client/server and web applications mainly for financial services companies. I have a an MBA from Pace University and work as a Project Manager at Citigroup.
- more about Irina Medvinskaya »
TechRepublic Resources
- sort by:
- Relevance
- Date
- Popularity
- Explore an overloading method in VB.NET
- Developers often need to define a method with the same name that may perform different functionalities. In order to do that, you should use the Overloads keyword in .NET. In this quick tip, I look at an example function that performs different sets of functionalities with the same name. ...
- Blog posts 2007-11-08
- Remember a form's position between uses in VB.NET
- There are times when it's handy for developers to be able to remember where a form was located the last time the application was used. In this quick VB.NET tip, I'll show you a way of using Application Settings to store and use the last location of the form. ...
- Blog posts 2007-11-01
- Create shortcut menus for forms in VB.NET using ContextMenuStrip
- In order to implement shortcut menus for a form, you can add the VB.NET ContextMenuStrip control to your form. In the design mode, the control will appear on the bottom of the form. When you click the control, you can add menu items to it. There are...
- Blog posts 2007-10-25
- Sharing the event logic between controls in VB.NET
- Whenever you write the code logic that may be used for more than one control, it makes sense to try to save time by creating only one procedure that will handle the event and perform that logic. In this tip, I show you a way to share the event logic...
- Blog posts 2007-10-19
- See how simple it is to create a fading form in VB.NET
- While core functionality and usability of the application is always one of the most important aspects, various visual effects may improve the way users feel about a particular application. Even though you may be able to implement purely cosmetic features in an application, it's important to keep the functionality in...
- Blog posts 2007-10-12
- Creating a Web service with VB.NET
- Web services technology is based on HTTP, Simple Object Access Protocol SOAP, and XML. Since Web services use open standards, calling Web services is fairly simple. VB.NET allows you to use Web services as if they were entirely local objects since most of the marshaling between the...
- Blog posts 2007-10-04
- Adding a Setup Wizard to VB.NET applications
- Visual Studio .NET simplifies the process of installing your applications by providing an easy way to add a Setup Wizard to your applications. In this tip, I will create a simple VB.NET Windows application and add a Setup Wizard to it in order to allow the Windows application to install....
- Blog posts 2007-09-27
- Using the PrintDocument component in VB.NET applications
- If you want to allow users to print form components in run-time, the PrintDocument component lets you offer users this functionality. The PrintDocument component is an object that allows users to send an output to a printer from Windows Forms applications. In this tip, I show you how to use...
- Blog posts 2007-09-13
- Split data onscreen logically with VB.NET's Tab Control
- VB.NET developers are often tasked with having to display a lot of necessary information on the screen with limited space. If you can split the data on the screen logically into different sections, you should consider using the Tab Control. In this tip, I will show you how to use the...
- Blog posts 2007-09-06
- Let users pick a file to open via OpenFileDialog in VB.NET
- Whenever you need to allow a user to open a particular file without forcing the user to type the full path and file name, you can use the OpenFileDialog class. OpenFileDialog has a number of properties and methods that make it a flexible way to get users to pick a...
- Blog posts 2007-08-30
- Keep an eye on file system changes with VB.NET's FileSystemWatcher
- FileSystemWatcher is a component in Visual Studio .NET that allows you to respond to file system changes. It's very handy whenever you need to perform a certain action in response to a file being updated and in numerous other situations.Using FileSystemWatcher in your appIn order to add FileSystemWatcher to your...
- Blog posts 2007-08-23
- Display hierarchical data in VB.NET with the TreeView control
- If you need to show hierarchical data in a tree-like format in VB.NET, you should use the TreeView control. This flexible control allows you to change numerous properties in order to fit your needs. The TreeView control also lets you add nodes and sub-nodes; you have the option of adding...
- Blog posts 2007-08-23
- Control Windows services with VB.NET's ServiceController component
- Whenever you need to start, stop, pause, or pass parameters to a Windows service, Visual Studio .NET's ServiceController component makes it easy.In order to use ServiceController, you first need to add the component to your Windows application, expand the Toolbox, and choose ServiceController. Once you add it to your form,...
- Blog posts 2007-08-02
- Learn how to use the DateTimePicker control in VB.NET
- Visual Studio .NET's DateTimePicker control offers a convenient way to allow users to make a date/time selection. The control allows you to select dates and times and to skip the date format validity of the data since the control lets you limit the input. DateTimePicker is similar to the MonthView...
- Blog posts 2007-07-26
- Putting VB.NET's MonthCalendar control to use
- Visual Studio .NET provides the MonthCalendar control, which allows you to select dates or a range of dates. The control is a convenient way to allow users to make a date selection. It is similar to the DateTimePicker control, which only allows you to select a particular date, while the...
- Blog posts 2007-07-12
- Convert a byte array to a string with VB.NET
- I recently covered ways to convert a string into a byte array with VB.NET. When you need to convert a byte array into a string, you can use either BitConverter.ToString or Convert.ToBase64String methods. I provide examples that show you how to make the conversion using both methods.Byte array usageIf you...
- Blog posts 2007-06-28
- Convert a string into a byte array in VB.NET
- If you need to convert a string into a byte array in VB.NET, you can use the GetBytes method or one of the encoding objects available in the System.Text namespace. This tip shows various encoding types and looks at ways to convert a string into a byte array.Encoding typesThere are...
- Blog posts 2007-06-14
- Validate an ISBN value with VB.NET
- The International Standard Book Number ISBN is a unique commercial book identifier barcode. If you work with VB.NET applications that deal with books, you're all-too-familiar with the task of confirming that a given ISBN value is valid.Prior to 2007, ISBN consisted of 10-digit values; beginning this year, 13 digit ISBN...
- Blog posts 2007-06-07
- Replace all occurrences of a pattern in a string with VB.NET
- The Regex.Replace method allows you to replace a pattern in a string with a fixed string literal. This VB.NET tip describes how developers can use this method. When you need to find a certain pattern of a string and modify the text to hide the contents, you can...
- Technical articles 2007-05-31
- Padding a string for fixed width display in VB.NET
- Here's a simple way to pad strings for a fixed width display in VB.NET utilizing the PadLeft and PadRight methods of a String object. Whenever you need to display data in a console or get it ready to be printed, you may need to align columns for a...
- Technical articles 2007-05-24
- << Previous
- page 1 of 5
- Next >>
Content Types
Refining Tags
- Microsoft Visual Basic.Net (65 results)
- Microsoft development tools (53 results)
- Programming languages (51 results)
- Development Tools (50 results)
- Software Development (50 results)
- Software/Web Development (50 results)
- .NET (48 results)
- Visual Basic Tips Newsletter (46 results)
- Microsoft Visual Basic (16 results)
- TechRepublic Inc. (15 results)
- String (11 results)
- C# (7 results)
- Microsoft Visual Basic 6.0 (6 results)
- Microsoft Visual Studio.Net (6 results)
- Value (5 results)
- Class (5 results)
- Vb.net (5 results)
- programming (5 results)
- Object (4 results)
- Software engineering/development (4 results)
- Software (4 results)
- Method (3 results)
- data access (3 results)
- namespace (3 results)
- grid (3 results)
- file system (3 results)
- Enterprise Software (3 results)
- Directory (3 results)
- menu item (3 results)
- Microsoft Windows (3 results)
- ListBox1 (3 results)
- TextBox (3 results)
- Form (3 results)
- Microsoft Outlook (3 results)
- Control (3 results)