Get Paid for Working on Projects Matching Your Expertise at Go4Expert's Jobs Board
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: 18,342 View Announcement Announcement: Rules for Duplicate Article Submission
10-08-2008 shabbir (Go4Expert Founder)
  Rating Article / Author Last Post Reverse Sort Order Replies Views
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...
Yesterday 01:36 PM
by edytharceo Go to last post
25 200,802
 
ManzZup
I have searched long enough to release that there's no other SIMPLER way to archive the task of dragging out a virtual file ( a file that alreagy does not exist) Out of a VB.net program. This method is not 100% perfect but of course may be easier than calling the harsh shells. Background I...
08-31-2010 09:15 PM
by ManzZup Go to last post
0 89
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...
08-31-2010 12:35 PM
by MartinJose Go to last post
6 7,168
Lightbulb
shabbir
A Simple Windows Like Calculator in Visual Basic 6. See the Screenshot. http://imgs.g4estatic.com/calculator/calc.png Keyboard Shortcuts Ascii code of '0' is '48' and is a short cut key to '0' Ascii code of '1' is '49' and is a short cut key to '1' Ascii code of '2' is '50' and is a...
08-30-2010 10:14 PM
by helloword Go to last post
5 261
 
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....
08-13-2010 09:38 AM
by harrypeter86 Go to last post
3 1,418
 
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 34,069
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,297
 
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,854
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 105,508
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,533
 
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,942
 
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,389
 
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 4,017
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,299
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,779
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,973
 
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 32,143
 
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 5,132
 
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,891
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 50 5 (0 members & 5 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 04:45 AM.