Click here to Skip to main content
15,892,643 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Graphics Question Pin
Dave Kreskowiak19-Nov-07 10:07
mveDave Kreskowiak19-Nov-07 10:07 
GeneralRe: Graphics Question Pin
Quecumber25619-Nov-07 10:51
Quecumber25619-Nov-07 10:51 
QuestionComponent to generate pdf or tiff from templates Pin
Nitin198119-Nov-07 1:27
Nitin198119-Nov-07 1:27 
AnswerRe: Component to generate pdf or tiff from templates Pin
DigiOz Multimedia19-Nov-07 8:52
DigiOz Multimedia19-Nov-07 8:52 
GeneralRe: Component to generate pdf or tiff from templates Pin
Nitin198119-Nov-07 19:26
Nitin198119-Nov-07 19:26 
GeneralRe: Component to generate pdf or tiff from templates Pin
DigiOz Multimedia27-Nov-07 6:07
DigiOz Multimedia27-Nov-07 6:07 
QuestionAddint items to a combobox Pin
Dave McCool19-Nov-07 0:36
Dave McCool19-Nov-07 0:36 
AnswerRe: Addint items to a combobox Pin
AliAmjad19-Nov-07 2:49
AliAmjad19-Nov-07 2:49 
At Last found the solution to this problem previously I was also facing somewhat similar problem here is the solution which worked for me.

In your form2 declare a Class level variable of form type e.g.

Dim oForm as Form


now in the Load event of form2 just make this equal to the 'ActiveForm' property of frmFinance e.g.

oForm = frmFinance.ActiveForm


Now just enter the following code in the Button Click event handler or in whatever event you want to use in order to add items to the Combobox e.g.

Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

    CType(oForm, frmFinance).cboMake.Items.Add(Me.txtMake.Text)

End Sub


As it helped me I hope it help you too... Good Luck !


AliAmjad(MCP)

First make it Run THEN make it Run Fast!

GeneralRe: Addint items to a combobox Pin
Luc Pattyn19-Nov-07 10:12
sitebuilderLuc Pattyn19-Nov-07 10:12 
GeneralRe: Addint items to a combobox Pin
Dave McCool20-Nov-07 23:02
Dave McCool20-Nov-07 23:02 
Questionhow 2 send pic with mail plz help! Pin
King of Kingz19-Nov-07 0:13
King of Kingz19-Nov-07 0:13 
AnswerRe: how 2 send pic with mail plz help! Pin
_mubashir19-Nov-07 2:00
_mubashir19-Nov-07 2:00 
AnswerRe: how 2 send pic with mail plz help! Pin
AliAmjad19-Nov-07 3:02
AliAmjad19-Nov-07 3:02 
QuestionIndexOutOfRange..please help Pin
kc_renji18-Nov-07 22:48
kc_renji18-Nov-07 22:48 
AnswerRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 22:58
Colin Angus Mackay18-Nov-07 22:58 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:02
kc_renji18-Nov-07 23:02 
AnswerRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:00
Colin Angus Mackay18-Nov-07 23:00 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:05
kc_renji18-Nov-07 23:05 
GeneralRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:47
Colin Angus Mackay18-Nov-07 23:47 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:07
kc_renji18-Nov-07 23:07 
GeneralRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:50
Colin Angus Mackay18-Nov-07 23:50 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji27-Nov-07 5:43
kc_renji27-Nov-07 5:43 
Questionvb2005 Pin
vb.net818-Nov-07 22:05
vb.net818-Nov-07 22:05 
AnswerRe: vb2005 Pin
DigiOz Multimedia19-Nov-07 8:55
DigiOz Multimedia19-Nov-07 8:55 
AnswerRe: vb2005 Pin
nishkarsh_k19-Nov-07 16:38
nishkarsh_k19-Nov-07 16:38 

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.