_ A String manipulation example in VB.NET, EQUIVALENTS: Len, Mid, Replace, InStr, UCase, Split etc _ by tHe_cLeanER Language: .Net
A string manipulation example in VB.NET.
Are ALL covered in the tutorial, using PURE VB.NET STRING MANIPULATION TEQNIQUES
Commands and equivilents
Len = .Length,
Mid = .SubString,
Replace = .Replace,
InStr = .IndexOf,
UCase = .ToUpper,
LCase = .ToLower,
Split = .Split,
Join = .Join,
Enjoy! tHe_cLeanER
|
Learn VB .NET fast! -updated again- by Sahand Language: .Net
What's new in VB .NET? How can I use Classes in VB .NET? What does a shared method do?What's the usage of inheritance? How can i override a sub?
How can i add events to my classes?
Find your answers here! Sample files now ready
|
MultiLingual Web Site in .Net - A Tutorial by The VB Guru (Anup Jishnu) Language: .Net
This is a Web Solution designed to teach all newcomers into the .Net field on how to incorporate Multi-language support into your Web Applications.
The accompaining ZIP file contains the sample WebSolution with the DB design and a Word Document explaining in detals the steps for a Multilingual Web Site.
|
Programming graphics in visual basic.net by matt squire Language: .Net
This article explains how to use the new GDI+ system with vb.net, this is the replacement for the old graphic drawing functions with loads more features.
|
Net Remoting in Simple English (Really, it's that simple) by Daniel Ang C. M. Language: .Net
This article is meant to be a step by step guide to give its reader a gist of .Net Remoting. I've tried to search good tutorials, but it was rather hard to find one that could work on my PC! So here's my first shot at a .Net Remoting tutorial in VB.net. It shouldn't be hard to get it running, if you'd follow this few steps.
|
|
Minesweeper, Behind the scenes by arikp Language: .Net
This article demonstrates directly reading another processes memory in C# using P/Invoke and Win32 Api's. Using the developed class I read Minesweeper memory.
|
How Do I do it in ASP.NET? by sherif rofael Language: .Net
This Tutorial Will Show You How TO implement the Following Using ASP. net: (7 in 1)
Send E-mail With Attachment.
UPLOAD A file to a Remote Server.
Create a Graphical Counter.
Create a Log File for the users of your page and add their info ( ip address, country, time, data, service provider, browser, OS, ...............) to an html file.
Morse Code Encoder Machine ( Text + Sound ) into your Page.
Get The Country and service provider of your page visitors.
Determine The Locatio ... (see entry for full description)
|
Tutorial on How To Disguise URLs of your Website by dotNETJunkie Language: .Net
The purpose of this article is to show you how to disguise the url of your webpage. This is great for masking your webpage extension to not give away your server and development platform to potential hackers. You can also mask any parameters passed through the query string. Please Vote!
|
Default Button by Janus Kamp Hansen Language: .Net
This is a sample made for Microsoft ASP.Net to show, how easy it is to 'force' a default button for a textbox. So far you have needed to install various DLL's or controls to control what button must be clicked, when a user is submitting some data from an textbox by pressing [ENTER] key.
|
undocumented varptr in vb7 by Izek_S Language: .Net
VB6 has 3 undocumented functions. VarPtr, StrPtr, and ObjPtr.StrPtr returns object of a string, VarPtr returns address of any other variable and ObjPtr returns address of an object. In VB.Net these 3 functions are abosolete but their functionality is still avaliable.
|
NetServerEnum by Eugene Zhukovsky Language: .Net
Enumerate all servers in the domain, or specific server types, like SQL Servers, Workstations etc with API.
Using netapi32.dll
|
Iteration Performance by Trevor Misfeldt Language: .Net
Compares various iteration methods in .NET with an eye on the best possible performance over large data collections.
|
|
Free Threading in VB.NET by Jeroen Schouten Language: .Net
An explanation of threading in VB.NET. This new exciting feature lets you FINALY execute code in an async fashion.
|
HTMLContentParser ASP.NET Project using VB.NET by SoftwareMaker Language: .Net
This project is a HTML Content Parser. It gets a stream of HTML Content from a specified URL Web Page. Then it sets to go through whole stream extracted and picks out the HTML HyperLinks and Images and displays them in an HTML Table in a hyperlink format for users to click on directly to get there. This will be particularly useful for uses who are interested in some images on websites and finds it tedious to look through the view source of the pages to extract out the image sources ... (see entry for full description)
|
WNetEnumResource by Eugene Zhukovsky Language: .Net
This API function can enumerate all network resources, including servers, workstations, printers, shares, remote directories etc. Unlike NetServerEnum function, this will enumerate DOS, Win3.1, Windows 95 and above, as well as NT 3.51 and higher, Win2k amd XP workstations.
The function is recursive, it works from top down. You can use this code in any way you like, hust keep the credit.
Tested on XP and NT 4.
|
Object Driven Interface Part 4 of 4 by Paul Stevens Language: .Net
Part 4 of Creating an Object Driven Interface using Custom Attributes, reflection Custom Web Controls and much more.
in this part we finally get to use our interface generator
The Attached Zip file contains the complete code for all four parts of this article, which i had to split up due to size limits
|
Asp Reflection by Garth Olivier Language: .Net
After having problems with Asp Application deployed to several sites. I needed a way to see what was different.
Thus needed refection.
This will provide version numbers and more
Paste the code below into a Aspx Page named Version.aspx and then browse it.
If you include in a project it will then reflect for the whole assembly
Cheers
Garth
|
Quick Fill Data Grid by Manas Mukherjee Language: .Net
Here I am showing how to connect, query a table in sql server 2000 and fill a datagrid.
|
|