|
2 |
Visual Basic Notebook Visual Basic 6 Function Library (VB6)
|
70 |
|
3 |
AndreaVB AndreaVB provides free Visual Basic and VB.NET source code, tips and tricks, printing and programming techniques, discussion board and downloads
|
77 |
|
4 |
Excel Smart Documents - VSTO 2005 Smart Documents allow you to build document-based solutions that significantly extend the functionality of Microsoft Word and Excel 2007.
|
74 |
|
6 |
Create Controls Dynamically - VB6 option Explicit
'
Dim withevents Cmd1 as CommandButton
'
private Sub Form_Load()
set Cmd1 = Controls.Add("vb.commandbutton", "Cmd1")
Cmd1.Width = 2000
Cmd1.Top = me.Height / 2 - Cmd1.Height / 2 - 100
Cmd1.Left = me.Width / 2 - Cmd1.Width / 2 - 100
Cmd1.Caption = "Dynamic Button"
Cmd1.Visible = true
End Sub
'
private Sub Cmd1_click()
MsgBox "I have been Created Dynamically at Run-time", _
, "Dynamic Controls"
End Sub
|
99 |
|
9 |
Using the For…Each Statement to 'loop' through the elements of an Array Using the For…Each Statement to 'loop' through the elements of an Array
|
79 |
|
12 |
SQL commando's en operatoren Een overzicht van de belangrijkste SQL-commando's met wat voorbeelden van queries.
CREATE DATABASE
CREATE TABLE
DROP DATABASE
DROP TABLE
SELECT
UPDATE
INSERT
DELETE
JOIN
GRANT
|
72 |
|
13 |
VB & VBA Booklet (tip) Booklet TOC
Implementing Custom Events p66-68 Chapter 4
Automation Examples p85-89 Chapter 5
Silent Reporting p106-107 Chapter 6
#Const Directive p113-117 Chapter 7
AddressOf Operator p121-123 Chapter 7
CallByName Function p142-146 Chapter 7
Declare Statement p214-218 Chapter 7
DoEvents Function p241-242 Chapter 7
Err.LastDLLError Property p259-261 Chapter 7
Filter Function p308-310 Chapter 7
GetObject p358-363 Chapter 7
WithEvents Keyword p576-577 Chapter 7
|
82 |
|
14 |
WebExplorer WebExplorer is a Windows Explorer style file manager through your webbrowser, but don't let the "Windows part" of it scare you away! Just upload the file to your designated "admin" directory on your PHP enabled website, edit the variable $basedir to reflect your website, and off you go!!
This application lets you edit, browse, CHMOD, view, move, rename, copy, and create files/directories in any forms/tables enabled browser. You even have the option to create html skeleton-files.
|
1320 |