Learn how to Make Money Online doing freelancing, Affiliate Marketing, Blogging and many more ...
Go4Expert
Go4Expert RSS Feed

Go Back   Programming and SEO Forum >  Go4Expert > Articles / Source Code > Programming

Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More
Tutorials and Source Code in : Visual Basic [VB] Bookmarks Forum Tools Search this Forum
Announcement
Views: 17,887 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
 
Sanskruti
Introduction A variable is temporary storage space for numbers, text, and objects. Variables are constantly being created and destroyed and will not hold any values after your program has ended. If you want to save the values of variables or other data. Before allocating storage space for a...
07-22-2010 08:45 AM
by edwin Go to last post
6 32,146
Wink
pradeep
Sometimes you might require to get a list of all the files in a folder, I was thinking how it can be implemented, the solution is to used the WSH interface and write a script in VBScript. Below is a sample script which will get the list of files on a directory, say c:\windows and save it to the...
07-19-2010 08:04 PM
by Jeff Greener Go to last post
23 190,835
Red face
Sanskruti
The controls you select for your application's form are important because the controls (also called tools) provide the application interface for your users. Users interact with your application by clicking the controls and entering text in the controls. Placing and sizing controls are perhaps the...
05-20-2010 09:57 AM
by viquas momin Go to last post
2 5,143
 
Thread Rating: 1 votes, 5.00 average. kush_2207
'################################################################' '# #' '# VB_Packets Yahoo Mod 2 Fully Tested! 91 Working Packets! #' '# #' '# ...
05-10-2010 02:23 PM
by cocadew Go to last post
11 7,602
Lightbulb
pradeep
The ability to work with arrays is important in any programming language. VB.NET offers a simple way of grouping data into the array structures similarly to other languages. In this article, I will look at array declaration and usage. Purpose of the arrays Arrays are generally used for...
05-04-2010 11:21 PM
by naqiali Go to last post
4 99,739
Talking
Thread Rating: 2 votes, 5.00 average. pradeep
Temp files are generally used for temporary storage and data manipulation. This is often necessary for storing user data, user preferences, session information, application cache, and many other types of information. In order to get the name of the file that you can use as a temp file in...
03-19-2010 06:09 PM
by rozordermit Go to last post
2 12,021
 
pradeep
As more and more of your applications become distributed across the Internet, you'll no doubt want to build in a way to determine if the current user is actually connected to the Web. Fortunately, the Windows API offers a quick and easy way to do so with the InternetGetConnectedState() function. ...
02-21-2010 12:47 AM
by aliciablock Go to last post
15 17,108
 
sameer_havakajoka
Introduction This solution is to prevent the conversion of large numeric values in scientific notation while exporting to excel. Background This solution deals with the situation when there is a large numeric value, and while exporting to excel it gets converted to scientific notation....
02-18-2010 09:55 AM
by shabbir Go to last post
2 1,247
 
Thread Rating: 2 votes, 5.00 average. naimish
Introduction This code once used, it will directly print the data of Text Box to any default selected printers. Adv. - If Printer are on any other server and properly selected, this code will work properly fine. Dis. Adv.
08-20-2009 03:54 PM
by naimish Go to last post
4 3,201
 
Aether
Here is a good code for you all. Toss it in a black form, and make all text lime green. K? It Is A Big Code. Here Are Your Objects: 8 labels(label1-label8) 3 Timers(timer1-timer3) and two textboxes(text1 is disabled on formload, please.. :) text2 enabled always....) ...
07-21-2009 11:59 AM
by Saket Go to last post
6 3,936
Cool
Andrew
Substrings Left, Right and Mid are three Visual Basic functions to locate sections of a string. All of the following examples use the string "strExample" with the following value. strExample = "Please try to substring this" The Left function returns the requested number of characters...
04-21-2009 03:58 PM
by articlechamp Go to last post
2 6,143
Wink
pradeep
Visual Basic 6.0 offers plenty of tools for displaying regular text, but what if you want special effects? This article shows you how to display 3-D text in your program. The Windows API's TextOut function displays text on the screen. The declaration is as follows (place this in a module in...
01-28-2009 01:19 PM
by skp819 Go to last post
2 5,561
Lightbulb
vishal sharma
Useful Binary Conversion. This program convert Binary to text and text to binary. This program has one Form1 (Main.frm), textbox (Text1.Text), two button, (cmdConvtoBin and cmdConvtoText) and a module1 (Binary.bas) - Form Command Private Sub cmdConvtoBin_Click() MainText = Text1.Text...
12-09-2008 01:06 PM
by xpi0t0s Go to last post
10 18,376
 
Thread Rating: 1 votes, 5.00 average. Sanskruti
Introduction A subroutine is a container that holds a series of VBScript statements. Suppose you'd like to create a block of code that accomplishes some specific task. Maybe you need to accomplish that task in various places throughout your code. All you need to do is create, or declare, the...
09-25-2008 06:22 PM
by MLuddyJr Go to last post
2 30,333
 
XXxxImmortalxxXX
- - -
Cool
pradeep
If you want to properly utilize VB.NET, it is very important to understand option statements. The following is a quick overview of the three option statements that are supported in VB.NET: Option Explicit: By default, Option Explicit is on for VB.NET projects. It's a good programming...
06-24-2008 07:16 PM
by shabbir Go to last post
2 4,942
Talking
Darkness1337
Introduction Been away for long time so just decided to make a little tutorial about file handling, i'll make it a clear as possible however if it's not clear then just pm me :) Background Little tutorial about file handling :) this is something that i did for my course work... In this...
06-13-2008 05:43 PM
by Dak914 Go to last post
5 6,774
 
Thread Rating: 1 votes, 5.00 average. Sanskruti
Introduction All comparison operators produce true or false results. In other words, the comparison is either true or the comparison is false. The mathematical operators produce numeric values, whereas the comparison operators produce only true or false values. The rest of the program can use...
06-06-2008 12:14 PM
by faizulhaque Go to last post
6 4,686
Cool
pradeep
When a List Box control has the focus, it will automatically scroll to the first item that begins with the letter you type. It will not, however, automatically select items based on more than the first letter. For example, if you type go, you may want the control to select the first item that...
06-04-2008 09:38 AM
by shabbir Go to last post
6 13,302
 
Sanskruti
Introduction You can also create functions in Visual Basic . They are just like Sub procedures except that they can return a value. You declare a function in much the same way as a Sub procedure, except that you use the Function keyword instead of Sub. Function Syntax Here's the formal...
05-01-2008 03:03 AM
by Steel9561 Go to last post
1 33,247
Post New Thread  Submit New Article  Copy HTML to Clipboard  Copy BBCode to Clipboard  | More

Display Options Currently Active Users
Showing articles 1 to 20 of 48 8 (0 members & 8 guests)
 
Forum Tools Search this Forum
Search this Forum :

Advanced Search
Bookmarks

New comments New comments More than 15 replies or 150 views Hot articles with new comments
No new comments No new comments More than 15 replies or 150 views Hot article with no new comments
Closed Thread Article is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
 

All times are GMT +5.5. The time now is 05:27 AM.