Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for mstangeh

hi, I need to create or replace a permanent query in access (like a view in oracle, postgres...), but from vb6 using ADODB. i know that i can create and alter tables using a ADODB connection object with something like this dim obj as new adodb.connection ... ... obj.execute "create …

Member Avatar for vb5prgrmr
0
2K
Member Avatar for Suriv

declare this in your bas: Public Declare Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long and to execute a programas use this: Call ShellExecute(0&, vbNullString, …

Member Avatar for wen_dell8
0
152
Member Avatar for bang2711

I dont know if this would help you, but... Here is an example code for creating any object y execution time 'first create a new object dim chkbox as CheckBox Set chkbox = Controls.Add("VB.CheckBox", "chhboxname", "the container") 'the container could be a picturebox, frame.... 'now you can set all the …

Member Avatar for bang2711
0
477

The End.