Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- Manipulate the Windows registry with .NET
- The Windows registry can be used to store application data for any custom applications you may develop. Learn more about interacting with the registry via .NET in Tony Patton's column. The registry is an integral part of every Windows installation. It contains a wealth of information regarding operating...
- Tags: Microsoft .NET, Microsoft Windows, Tony Patton, .NET, Middleware, registry, Windows Registry, .NET Newsletter, Microsoft .NET Framework, User, Registry Key, Registry Class, RegistryKey Class, RegistryKeyrootKey, ToString, MessageBox.Show, Operating Systems, Software
- Technical articles 2006-09-12
- File Upload using C#
- Hi I have to upload a file to a webserver from my desktop. My client side application should be a windows application developed in C#.Please give me solution how to do it?string fileName = "";FileInfo fi = new FileInfofileName;try{ Uri serUri = new Uri(txtServer.Text + fi.Name); HttpWebRequest wr...
- Tags: C#, File Upload, fileName, filesize, FileInfo, MessageBox.Show, myStream, HttpWebRequest, medasatheesh@..., programming
- Q&A 2004-12-20
Additional Resources
- Messagebox fonts in VB .NET
- I'm new to VB.NET and I've tried searching the WEB so either this is very basic or very rare.What do I code to change the font for text in a specific messagebox without altering any default font settings. Example:messagebox.show("AAA:")
- Tags: font, Messagebox font, Microsoft Visual Basic, programming, rwint@...
- Q&A 2005-11-23
- Messagebox causes Windows to lose focus on the application
- I have just started using VS 2006 and the 2.0 framework. Formerly, I used msgbox and usually only specified the message string. Now I'm using messagebox.show and the full set of parameters (message, caption, yesnomaybe, etc). When the user dismisses the messagebox, whether by mouse or by...
- Tags: Mice, dschoeff@..., Microsoft Windows
- Discussion threads 2007-07-01
- How do I... Get user input using the MessageBox object in C#?
- Nearly all .NET developers have experience with the MessageBox object for displaying simple messages to users. Zach Smith shows you how to use the MessageBox as a user input component by using the DialogResult object. Using the MessageBox in this way helps your application blend into the Windows look and...
- Tags: Object, C#, .Net, Microsoft Windows, Programming Languages, Blogging, Application Servers, Middleware, Software Development, Software/Web Development, Operating Systems, Software, Internet, Enterprise Software
- Download resources 2007-10-23
- vb.net coding
- can anyone please convert the following code into vb.net code??private void textBox1_Validating(object sender, System.EventArgs e) { if (textBox1.Text.Length==0) { MessageBox.Show("Enter Your Name Please"); textBox1.Focus; } else { bool iscorrect = true; for(int i=0;i
- Tags: pritika
- Discussion threads 2007-05-24
- How do I... Get user input using the MessageBox object in C#?
- For .NET developers, the MessageBox can be a very handy way to display a short message to users, but it's also a great way to gather user input. Using the MessageBox in this way helps your application blend into the Windows look and feel and ensures that your application will...
- Tags: Dialog, MessageBox, DialogResult, MessageBoxButtons, C#, .Net, Programming Languages, Software Development, Software/Web Development, Zach Smith
- Blog posts 2007-10-23
- Check for leap years in your VB.NET code with IsLeapYear
- Whenever you need to determine if a year is a leap year in VB.NET, you can use the IsLeapYear function. This tip shows how you can use this function in your development work. When dealing with dates in VB.NET, it's a good idea not to perform manual checks...
- Tags: Microsoft Visual Basic.Net, Irina Medvinskaya, Microsoft development tools, Programming languages, .NET, bLeapYear AsBoolean, leap year, IsLeapYear, Visual Basic Tips Newsletter, TechRepublic Inc., Development Tools, Software Development, Software/Web Development
- Technical articles 2007-05-10
- MessageBox Wizard (zip)
- MessageBox Wizard is a program that allows the user to create, manipulate, and save message boxes. These message boxes can have any caption and text. Additionally various icons and button configurations can be selected from. Message boxes can be generated instantly or saved as message box files (.msgbox) and run...
- Tags: MessageBox Wizard, Message Box
- Software downloads 2007-03-02
- Hello
- Hi I am in College for VisualBasics.Net 2003 and I am haveing problems!!! I am instucted to creat a BlackJack Solution and I can't figure out how to word my MessageBox.show Method Code correctly to allow the player to enter their name and place it in
- Tags: programming, Tammy_topham@..., InputBox
- Discussion threads 2006-11-22
- Get an overview of C# control statements
- In order for developers to utilize any language to thefullest extent, they need to have a complete and thorough understanding of thecode flow structures. In this article, I provide an overview of the C# controlstatements and discuss the appropriate way to use each of them.Selection statementsIfand switch are considered selectionstatements...
- Tags: C#, Irina Medvinskaya, Software engineering/development
- Technical articles 2006-12-20
- Bundle related elements in VB.NET with enumeration
- In general, enumerations assist in bundling together related elements in Visual Basic .NET. Here's a tip that shows how enumeration makes code easier to develop and read. You'll find that using enumeration in your VB.NET code comes in handy whenever you need to establish a set of related...
- Tags: Microsoft Visual Basic.Net, Irina Medvinskaya, Microsoft development tools, Programming languages, enumeration, Visual Basic Tips Newsletter, TechRepublic Inc., Microsoft Visual Basic, Value, .Net, Development Tools, Software Development, Software/Web Development
- Technical articles 2007-01-25
- Bundle related elements in VB.NET with enumeration
- Enum TypeWhy not to use "Dim iEnvironment As Environment" ? Isn't better?*Much* betterStrongly typed is always much better. Declaring iEnvironment as an integer only makes for breakable code if the Environment variable type is changed later.Doesn't this example go against best practicesIn this example, the enumeration is named Environment, which...
- Tags: enumeration, Microsoft Visual Basic.Net, programming, Ramazan.Koyuncu@...
- Discussion threads 2007-01-26
- Performing mathematical functions in VB.NET
- Irina Medvinskaya shows you a simple way of working with math-related functions in VB.NET. Visual Studio .NET provides an easy way of performing mathematical functions, such as addition, subtraction, multiplication, division, exponentiation, integer division, and finding a remainder. For all other tasks, you can utilize the...
- Tags: Microsoft Visual Studio.Net, Microsoft Visual Basic.Net, Irina Medvinskaya, Microsoft development tools, Programming languages, .NET, System.Math, System.Math class, Visual Basic Tips Newsletter, Function, Development Tools, Software Development, Software/Web Development
- Technical articles 2006-07-14
- 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. ...
- Tags: Procedure, Microsoft Visual Basic.Net, .Net, Microsoft Development Tools, Programming Languages, Middleware, Software Development, Software/Web Development, Development Tools, Enterprise Software, Software, Irina Medvinskaya
- Blog posts 2007-11-08
- show message box in asp & javascript after database validation
- hi all,i'm a newbie in web pogramming.Right now i'm in a project using vb 6.0, asp and javascript. Lately i'm stuck in showing a message box to user after a user inserting data that already exist in the database. so to do this, i'm trying to do the checking with...
- Tags: Scripting languages, mickeygirl_id@..., JavaScript, message box, database
- Discussion threads 2007-09-23
- 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...
- Tags: Vb.net
- Blog posts 2007-06-07
- Converting numbers into formatted strings in VB.NET
- Irina Medvinskaya presents a simple way to convert the numbers into formatted strings in VB.NET. She also explains the difference between the two types of numeric format strings: standard and custom. Working with numeric values often requires the ability to convert these values into String values in a...
- Tags: Microsoft Visual Basic.Net, Irina Medvinskaya, Programming languages, Microsoft development tools, numeric format specifier, format specifier, Dim numInfo, format string, Visual Basic Tips Newsletter, String, numInfo, C/C++, .Net, Development Tools, Software Development, Software/Web Development
- Technical articles 2006-08-10
- 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...
- Tags: Node, Microsoft Visual Basic.Net, Irina Medvinskaya
- Blog posts 2007-08-23
- Comparing strings with and without case sensitivity in VB.NET
- Irina Medvinskaya offers an example that shows how VB.NET's String.Compare method can come in handy when you need to compare two string variables. Working with strings is a very important functionality in most applications. Your ability to effectively use the existing .NET functionality is vital for building...
- Tags: Microsoft Visual Basic.Net, Irina Medvinskaya, String.Compare, Microsoft development tools, Programming languages, .NET, String.Compare method, Visual Basic Tips Newsletter, String, Development Tools, Software Development, Software/Web Development
- Technical articles 2007-02-14
- << Previous
- page 1 of 1
- Next >>