Browsing Visual Basic 6
Professional look
This code will give a great effect to any control making the user interface much more professionalOriginal Author: Faisal ArifCodeOption ExplicitPrivate Sub Command1_Click()'Create a shadow to the right and below of Text1 (TextBox)Shadow Me, Text1End SubPrivate Sub Shadow(fIn As Form, ctrlIn As Control)Const SHADOW_COLOR = &H40C0& 'Shadow ColorConst SHADOW_WIDTH = 3 'Shadow Border WidthDim iOldWidth As IntegerDim iOldScale As Integer'Save the current DrawWidth and ScaleModeiOldWidth = fIn.
Calculator-2
This is a carbon copy of the Microsoft Calculator really, it functions just like it.
CoolMenu with animation, more font,colour...
Menu with colours, animation (open), font etc.
convert access database to cooma or tab delimited text file
this will convert an access mdb database table to either a comma delimited text file (csv) or a tab delimited text file (txt).
Code Formatting - the variable naming part
hers is the second part of my article on code formatting.
ByRef Or ByVal
With this code I try to show you the different between ByVal and ByRef , I pass x variable by reference and see how it change and pass it by Value and get it with no change.