Click here to Skip to main content
16,018,460 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: i need to manage exceptions how can i ? Pin
Rupesh Kumar Swami7-May-07 5:03
Rupesh Kumar Swami7-May-07 5:03 
GeneralRe: i need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 5:11
Hasan Jaffal7-May-07 5:11 
AnswerRe: i need to manage exceptions how can i ? Pin
Christian Graus7-May-07 13:07
protectorChristian Graus7-May-07 13:07 
GeneralRe: i need to manage exceptions how can i ? Pin
Hasan Jaffal7-May-07 13:15
Hasan Jaffal7-May-07 13:15 
QuestionGetObject function question Pin
ganeshpulsars7-May-07 3:42
ganeshpulsars7-May-07 3:42 
AnswerRe: GetObject function question Pin
Dave Kreskowiak7-May-07 7:07
mveDave Kreskowiak7-May-07 7:07 
GeneralRe: GetObject function question Pin
ganeshpulsars7-May-07 17:57
ganeshpulsars7-May-07 17:57 
AnswerRe: GetObject function question Pin
nlarson117-May-07 7:10
nlarson117-May-07 7:10 
is this vb6? if so and assuming your asking for this within the same project, the only way to associate a string to an object is go through the collections.

first start with the forms collection then go through the control collection

dim oFrm as Form,oCtrl as control

For each oFrm in Forms
If oFrm.Name = "mnuMain" Then
For each oCtrl In oFrm.controls
If oCtrl.Name = "mnuExit" Then
oCtrl.enabled=true
oCtrl.visible = true
Exit For
End If
Next
Exit For
End if
Next


GeneralRe: GetObject function question Pin
ganeshpulsars7-May-07 18:09
ganeshpulsars7-May-07 18:09 
GeneralRe: GetObject function question Pin
Dave Kreskowiak8-May-07 2:02
mveDave Kreskowiak8-May-07 2:02 
GeneralRe: GetObject function question Pin
ganeshpulsars8-May-07 20:06
ganeshpulsars8-May-07 20:06 
QuestionWebbrowser Control in VB6 Pin
Kumaran21cen7-May-07 0:34
Kumaran21cen7-May-07 0:34 
AnswerRe: Webbrowser Control in VB6 Pin
nlarson117-May-07 7:25
nlarson117-May-07 7:25 
QuestionSQL Server Error Pin
Vimalsoft(Pty) Ltd7-May-07 0:07
professionalVimalsoft(Pty) Ltd7-May-07 0:07 
AnswerRe: SQL Server Error Pin
Dave Kreskowiak7-May-07 7:05
mveDave Kreskowiak7-May-07 7:05 
QuestionSubscript out of range Pin
Vimalsoft(Pty) Ltd6-May-07 22:48
professionalVimalsoft(Pty) Ltd6-May-07 22:48 
AnswerRe: Subscript out of range Pin
Guffa6-May-07 23:54
Guffa6-May-07 23:54 
AnswerRe: Subscript out of range Pin
P P Vilsad7-May-07 3:18
P P Vilsad7-May-07 3:18 
GeneralRe: Subscript out of range Pin
Guffa7-May-07 6:01
Guffa7-May-07 6:01 
QuestionCopy string from 1st text file and replace thos string Pin
pankajs3k6-May-07 21:58
pankajs3k6-May-07 21:58 
AnswerRe: Copy string from 1st text file and replace thos string Pin
Christian Graus7-May-07 1:17
protectorChristian Graus7-May-07 1:17 
QuestionHow do i convert this code to vb.net Pin
Vimalsoft(Pty) Ltd6-May-07 21:44
professionalVimalsoft(Pty) Ltd6-May-07 21:44 
AnswerRe: How do i convert this code to vb.net Pin
Guffa6-May-07 23:15
Guffa6-May-07 23:15 
GeneralRe: How do i convert this code to vb.net Pin
Vimalsoft(Pty) Ltd6-May-07 23:56
professionalVimalsoft(Pty) Ltd6-May-07 23:56 
GeneralRe: How do i convert this code to vb.net Pin
Christian Graus7-May-07 1:21
protectorChristian Graus7-May-07 1:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.