Click here to Skip to main content
15,891,184 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to read files fast? Pin
SilentBob10114-Jan-07 22:44
SilentBob10114-Jan-07 22:44 
GeneralRe: how to read files fast? Pin
Colin Angus Mackay14-Jan-07 23:19
Colin Angus Mackay14-Jan-07 23:19 
GeneralRe: how to read files fast? Pin
SilentBob10114-Jan-07 23:32
SilentBob10114-Jan-07 23:32 
GeneralRe: how to read files fast? Pin
Colin Angus Mackay15-Jan-07 1:26
Colin Angus Mackay15-Jan-07 1:26 
GeneralRe: how to read files fast? Pin
roo42615-Jan-07 1:26
roo42615-Jan-07 1:26 
GeneralRe: how to read files fast? Pin
Colin Angus Mackay15-Jan-07 1:55
Colin Angus Mackay15-Jan-07 1:55 
Questionpassing value from one form to another Pin
Pradip Kishore14-Jan-07 20:22
Pradip Kishore14-Jan-07 20:22 
AnswerRe: passing value from one form to another Pin
Alex@UEA14-Jan-07 21:55
Alex@UEA14-Jan-07 21:55 
form_month needs to know about form_main

In form_month:-
<br />
Public Class form_month<br />
<br />
    Private m_FormMain As form_main<br />
<br />
<br />
    Public Sub New(ByRef formMain As form_main)<br />
        MyBase.New()<br />
        m_FormMain = formMain 'setting a ref to the orig form form_main<br />
<br />
        ' This call is required by the Windows Form Designer.<br />
        InitializeComponent()<br />
<br />
        ' Add any initialization after the InitializeComponent() call.<br />
<br />
    End Sub



In form_main:-

Public Class form_main<br />
    Dim m_form_month As New form_month(Me)



in the code for the submit button to open form_month:-

m_form_month.Show()

in the code for the load event for form_month read the value of tbid:-

    Private Sub form_month_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load<br />
<br />
        Dim contentsOftbid As String<br />
        contentsOftbid = m_FormMain.tbid.Text



hope this helps

Alex
GeneralRe: passing value from one form to another Pin
Christian Graus15-Jan-07 0:07
protectorChristian Graus15-Jan-07 0:07 
GeneralRe: passing value from one form to another Pin
Pradip Kishore15-Jan-07 0:45
Pradip Kishore15-Jan-07 0:45 
AnswerRe: passing value from one form to another Pin
Colin Angus Mackay14-Jan-07 22:28
Colin Angus Mackay14-Jan-07 22:28 
QuestionHow can i upload an entire folder Pin
fmlove14-Jan-07 20:20
fmlove14-Jan-07 20:20 
AnswerRe: How can i upload an entire folder Pin
StianSandberg14-Jan-07 21:49
StianSandberg14-Jan-07 21:49 
Questiondatagridview in vb.net [modified] Pin
amaneet14-Jan-07 20:09
amaneet14-Jan-07 20:09 
AnswerRe: datagridview in vb.net Pin
priya_p23314-Jan-07 23:09
priya_p23314-Jan-07 23:09 
GeneralRe: datagridview in vb.net Pin
amaneet14-Jan-07 23:48
amaneet14-Jan-07 23:48 
GeneralRe: datagridview in vb.net Pin
priya_p23315-Jan-07 0:50
priya_p23315-Jan-07 0:50 
AnswerRe: datagridview in vb.net Pin
priya_p23315-Jan-07 0:53
priya_p23315-Jan-07 0:53 
GeneralRe: datagridview in vb.net Pin
priya_p23315-Jan-07 0:54
priya_p23315-Jan-07 0:54 
QuestionRe: datagridview in vb.net Pin
priya_p23315-Jan-07 1:04
priya_p23315-Jan-07 1:04 
AnswerRe: datagridview in vb.net [modified] Pin
amaneet15-Jan-07 1:10
amaneet15-Jan-07 1:10 
QuestionRe: datagridview in vb.net Pin
priya_p23315-Jan-07 1:35
priya_p23315-Jan-07 1:35 
AnswerRe: datagridview in vb.net Pin
amaneet15-Jan-07 17:41
amaneet15-Jan-07 17:41 
GeneralRe: datagridview in vb.net Pin
priya_p23315-Jan-07 18:45
priya_p23315-Jan-07 18:45 
Questionquestion on Statusbar ToolStripStatusLabel Animation Pin
priya_p23314-Jan-07 20:05
priya_p23314-Jan-07 20:05 

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.